pub struct CodeScanningAlertFixed {
pub action: CodeScanningAlertFixedAction,
pub alert: CodeScanningAlertFixedAlert,
pub commit_oid: String,
pub installation: Option<InstallationLite>,
pub organization: Option<Organization>,
pub ref_: String,
pub repository: Repository,
pub sender: GithubOrg,
}Fields§
§action: CodeScanningAlertFixedAction§alert: CodeScanningAlertFixedAlert§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 CodeScanningAlertFixed
impl Clone for CodeScanningAlertFixed
Source§fn clone(&self) -> CodeScanningAlertFixed
fn clone(&self) -> CodeScanningAlertFixed
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 CodeScanningAlertFixed
impl Debug for CodeScanningAlertFixed
Source§impl<'de> Deserialize<'de> for CodeScanningAlertFixed
impl<'de> Deserialize<'de> for CodeScanningAlertFixed
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<&CodeScanningAlertFixed> for CodeScanningAlertFixed
impl From<&CodeScanningAlertFixed> for CodeScanningAlertFixed
Source§fn from(value: &CodeScanningAlertFixed) -> Self
fn from(value: &CodeScanningAlertFixed) -> Self
Converts to this type from the input type.
Source§impl From<CodeScanningAlertFixed> for CodeScanningAlertEvent
impl From<CodeScanningAlertFixed> for CodeScanningAlertEvent
Source§fn from(value: CodeScanningAlertFixed) -> Self
fn from(value: CodeScanningAlertFixed) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CodeScanningAlertFixed
impl RefUnwindSafe for CodeScanningAlertFixed
impl Send for CodeScanningAlertFixed
impl Sync for CodeScanningAlertFixed
impl Unpin for CodeScanningAlertFixed
impl UnsafeUnpin for CodeScanningAlertFixed
impl UnwindSafe for CodeScanningAlertFixed
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