pub struct DeploymentStatusCreatedEvent<'a> {
pub deployment_status: DeploymentStatusCreatedEventDeploymentStatus<'a>,
pub deployment: Deployment<'a>,
pub check_run: Option<DeploymentStatusCreatedEventCheckRun<'a>>,
pub workflow_run: Option<DeploymentWorkflowRun<'a>>,
pub workflow: Option<Workflow<'a>>,
pub repository: Repository<'a>,
pub sender: User<'a>,
pub installation: Option<InstallationLite<'a>>,
pub organization: Option<Organization<'a>>,
}
Fields§
§deployment_status: DeploymentStatusCreatedEventDeploymentStatus<'a>
The deployment status.
deployment: Deployment<'a>
§check_run: Option<DeploymentStatusCreatedEventCheckRun<'a>>
§workflow_run: Option<DeploymentWorkflowRun<'a>>
§workflow: Option<Workflow<'a>>
§repository: Repository<'a>
§sender: User<'a>
§installation: Option<InstallationLite<'a>>
§organization: Option<Organization<'a>>
Trait Implementations§
source§impl<'a> Debug for DeploymentStatusCreatedEvent<'a>
impl<'a> Debug for DeploymentStatusCreatedEvent<'a>
source§impl<'de: 'a, 'a> Deserialize<'de> for DeploymentStatusCreatedEvent<'a>
impl<'de: 'a, 'a> Deserialize<'de> for DeploymentStatusCreatedEvent<'a>
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl<'a> RefUnwindSafe for DeploymentStatusCreatedEvent<'a>
impl<'a> Send for DeploymentStatusCreatedEvent<'a>
impl<'a> Sync for DeploymentStatusCreatedEvent<'a>
impl<'a> Unpin for DeploymentStatusCreatedEvent<'a>
impl<'a> UnwindSafe for DeploymentStatusCreatedEvent<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more