pub struct CodeScanningAlertReopened {
pub action: CodeScanningAlertReopenedAction,
pub alert: CodeScanningAlertReopenedAlert,
pub commit_oid: String,
pub installation: Option<InstallationLite>,
pub organization: Option<Organization>,
pub ref_: String,
pub repository: Repository,
pub sender: GithubOrg,
}Fields§
§action: CodeScanningAlertReopenedAction§alert: CodeScanningAlertReopenedAlert§commit_oid: StringThe 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.
installation: Option<InstallationLite>§organization: Option<Organization>§ref_: StringThe 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.
repository: Repository§sender: GithubOrgTrait Implementations§
Source§impl Clone for CodeScanningAlertReopened
impl Clone for CodeScanningAlertReopened
Source§fn clone(&self) -> CodeScanningAlertReopened
fn clone(&self) -> CodeScanningAlertReopened
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CodeScanningAlertReopened
impl Debug for CodeScanningAlertReopened
Source§impl<'de> Deserialize<'de> for CodeScanningAlertReopened
impl<'de> Deserialize<'de> for CodeScanningAlertReopened
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
Source§impl From<&CodeScanningAlertReopened> for CodeScanningAlertReopened
impl From<&CodeScanningAlertReopened> for CodeScanningAlertReopened
Source§fn from(value: &CodeScanningAlertReopened) -> Self
fn from(value: &CodeScanningAlertReopened) -> Self
Converts to this type from the input type.
Source§impl From<CodeScanningAlertReopened> for CodeScanningAlertEvent
impl From<CodeScanningAlertReopened> for CodeScanningAlertEvent
Source§fn from(value: CodeScanningAlertReopened) -> Self
fn from(value: CodeScanningAlertReopened) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CodeScanningAlertReopened
impl RefUnwindSafe for CodeScanningAlertReopened
impl Send for CodeScanningAlertReopened
impl Sync for CodeScanningAlertReopened
impl Unpin for CodeScanningAlertReopened
impl UnsafeUnpin for CodeScanningAlertReopened
impl UnwindSafe for CodeScanningAlertReopened
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