pub struct CodeScanningAlertReopenedAlert {
pub created_at: DateTime<Utc>,
pub dismissed_at: (),
pub dismissed_by: (),
pub dismissed_reason: (),
pub html_url: String,
pub instances: Vec<AlertInstance>,
pub most_recent_instance: Option<AlertInstance>,
pub number: i64,
pub rule: CodeScanningAlertReopenedAlertRule,
pub state: CodeScanningAlertReopenedAlertState,
pub tool: CodeScanningAlertReopenedAlertTool,
pub url: String,
}Expand description
The code scanning alert involved in the event.
Fields§
§created_at: DateTime<Utc>The time that the alert was created in ISO 8601 format:
YYYY-MM-DDTHH:MM:SSZ.
dismissed_at: ()The time that the alert was dismissed in ISO 8601 format:
YYYY-MM-DDTHH:MM:SSZ.
dismissed_by: ()§dismissed_reason: ()The reason for dismissing or closing the alert. Can be one of: false positive, won't fix, and used in tests.
html_url: StringThe GitHub URL of the alert resource.
instances: Vec<AlertInstance>§most_recent_instance: Option<AlertInstance>§number: i64The code scanning alert number.
rule: CodeScanningAlertReopenedAlertRule§state: CodeScanningAlertReopenedAlertStateState of a code scanning alert.
tool: CodeScanningAlertReopenedAlertTool§url: StringThe REST API URL of the alert resource.
Trait Implementations§
Source§impl Clone for CodeScanningAlertReopenedAlert
impl Clone for CodeScanningAlertReopenedAlert
Source§fn clone(&self) -> CodeScanningAlertReopenedAlert
fn clone(&self) -> CodeScanningAlertReopenedAlert
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<'de> Deserialize<'de> for CodeScanningAlertReopenedAlert
impl<'de> Deserialize<'de> for CodeScanningAlertReopenedAlert
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<&CodeScanningAlertReopenedAlert> for CodeScanningAlertReopenedAlert
impl From<&CodeScanningAlertReopenedAlert> for CodeScanningAlertReopenedAlert
Source§fn from(value: &CodeScanningAlertReopenedAlert) -> Self
fn from(value: &CodeScanningAlertReopenedAlert) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CodeScanningAlertReopenedAlert
impl RefUnwindSafe for CodeScanningAlertReopenedAlert
impl Send for CodeScanningAlertReopenedAlert
impl Sync for CodeScanningAlertReopenedAlert
impl Unpin for CodeScanningAlertReopenedAlert
impl UnsafeUnpin for CodeScanningAlertReopenedAlert
impl UnwindSafe for CodeScanningAlertReopenedAlert
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