pub struct CodeScanningAlertReopenedByUserEventAlert<'a> {
pub number: usize,
pub created_at: &'a str,
pub url: &'a str,
pub html_url: &'a str,
pub instances: Vec<CodeScanningAlertReopenedByUserEventAlertInstances<'a>>,
pub most_recent_instance: Option<AlertInstance<'a>>,
pub dismissed_by: (),
pub dismissed_at: (),
pub dismissed_reason: (),
pub rule: CodeScanningAlertReopenedByUserEventAlertRule<'a>,
pub tool: CodeScanningAlertReopenedByUserEventAlertTool<'a>,
}
Fields§
§number: usize
The code scanning alert number.
created_at: &'a str
The time that the alert was created in ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ.
url: &'a str
The REST API URL of the alert resource.
html_url: &'a str
The GitHub URL of the alert resource.
instances: Vec<CodeScanningAlertReopenedByUserEventAlertInstances<'a>>
§most_recent_instance: Option<AlertInstance<'a>>
§dismissed_by: ()
§dismissed_at: ()
The time that the alert was dismissed in ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ
.
dismissed_reason: ()
The reason for dismissing or closing the alert. Can be one of: false positive
, won't fix
, and used in tests
.
rule: CodeScanningAlertReopenedByUserEventAlertRule<'a>
§tool: CodeScanningAlertReopenedByUserEventAlertTool<'a>
Trait Implementations§
source§impl<'a> Debug for CodeScanningAlertReopenedByUserEventAlert<'a>
impl<'a> Debug for CodeScanningAlertReopenedByUserEventAlert<'a>
source§impl<'de: 'a, 'a> Deserialize<'de> for CodeScanningAlertReopenedByUserEventAlert<'a>
impl<'de: 'a, 'a> Deserialize<'de> for CodeScanningAlertReopenedByUserEventAlert<'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 CodeScanningAlertReopenedByUserEventAlert<'a>
impl<'a> Send for CodeScanningAlertReopenedByUserEventAlert<'a>
impl<'a> Sync for CodeScanningAlertReopenedByUserEventAlert<'a>
impl<'a> Unpin for CodeScanningAlertReopenedByUserEventAlert<'a>
impl<'a> UnwindSafe for CodeScanningAlertReopenedByUserEventAlert<'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