pub struct CodeScanningAlertReopenedByUserEvent<'a> {
pub alert: CodeScanningAlertReopenedByUserEventAlert<'a>,
pub ref_: &'a str,
pub commit_oid: &'a str,
pub repository: Repository<'a>,
pub sender: User<'a>,
pub installation: Option<InstallationLite<'a>>,
pub organization: Option<Organization<'a>>,
}
Fields§
§alert: CodeScanningAlertReopenedByUserEventAlert<'a>
The code scanning alert involved in the event.
ref_: &'a str
The Git reference of the code scanning alert. When the action is reopened_by_user
or closed_by_user
, the event was triggered by the sender
and this value will be empty.
commit_oid: &'a str
The commit SHA of the code scanning alert. When the action is reopened_by_user
or closed_by_user
, the event was triggered by the sender
and this value will be empty.
repository: Repository<'a>
§sender: User<'a>
§installation: Option<InstallationLite<'a>>
§organization: Option<Organization<'a>>
Trait Implementations§
source§impl<'a> Debug for CodeScanningAlertReopenedByUserEvent<'a>
impl<'a> Debug for CodeScanningAlertReopenedByUserEvent<'a>
source§impl<'de: 'a, 'a> Deserialize<'de> for CodeScanningAlertReopenedByUserEvent<'a>
impl<'de: 'a, 'a> Deserialize<'de> for CodeScanningAlertReopenedByUserEvent<'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 CodeScanningAlertReopenedByUserEvent<'a>
impl<'a> Send for CodeScanningAlertReopenedByUserEvent<'a>
impl<'a> Sync for CodeScanningAlertReopenedByUserEvent<'a>
impl<'a> Unpin for CodeScanningAlertReopenedByUserEvent<'a>
impl<'a> UnwindSafe for CodeScanningAlertReopenedByUserEvent<'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