pub struct DeploymentReviewRequestedEvent<'a> {
pub workflow_run: Option<WorkflowRun<'a>>,
pub since: &'a str,
pub workflow_job_run: DeploymentReviewRequestedEventWorkflowJobRun<'a>,
pub environment: &'a str,
pub reviewers: Vec<DeploymentReviewRequestedEventReviewersDistinctUnion<'a>>,
pub requestor: User<'a>,
pub repository: Repository<'a>,
pub organization: Organization<'a>,
pub sender: User<'a>,
pub installation: Option<InstallationLite<'a>>,
}
Fields§
§workflow_run: Option<WorkflowRun<'a>>
§since: &'a str
§workflow_job_run: DeploymentReviewRequestedEventWorkflowJobRun<'a>
§environment: &'a str
§reviewers: Vec<DeploymentReviewRequestedEventReviewersDistinctUnion<'a>>
§requestor: User<'a>
§repository: Repository<'a>
§organization: Organization<'a>
§sender: User<'a>
§installation: Option<InstallationLite<'a>>
Trait Implementations§
source§impl<'a> Debug for DeploymentReviewRequestedEvent<'a>
impl<'a> Debug for DeploymentReviewRequestedEvent<'a>
source§impl<'de: 'a, 'a> Deserialize<'de> for DeploymentReviewRequestedEvent<'a>
impl<'de: 'a, 'a> Deserialize<'de> for DeploymentReviewRequestedEvent<'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 DeploymentReviewRequestedEvent<'a>
impl<'a> Send for DeploymentReviewRequestedEvent<'a>
impl<'a> Sync for DeploymentReviewRequestedEvent<'a>
impl<'a> Unpin for DeploymentReviewRequestedEvent<'a>
impl<'a> UnwindSafe for DeploymentReviewRequestedEvent<'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