pub struct RepositoryVulnerabilityAlertAlert<'a> {Show 17 fields
    pub id: usize,
    pub number: usize,
    pub node_id: &'a str,
    pub state: RepositoryVulnerabilityAlertAlertState,
    pub affected_range: &'a str,
    pub affected_package_name: &'a str,
    pub dismisser: Option<User<'a>>,
    pub dismiss_reason: Option<&'a str>,
    pub dismissed_at: Option<&'a str>,
    pub severity: &'a str,
    pub ghsa_id: &'a str,
    pub external_reference: &'a str,
    pub external_identifier: &'a str,
    pub fixed_in: Option<&'a str>,
    pub fixed_at: Option<&'a str>,
    pub fix_reason: Option<&'a str>,
    pub created_at: &'a str,
}Expand description
The security alert of the vulnerable dependency.
Fields§
§id: usize§number: usize§node_id: &'a str§state: RepositoryVulnerabilityAlertAlertState§affected_range: &'a str§affected_package_name: &'a str§dismisser: Option<User<'a>>§dismiss_reason: Option<&'a str>§dismissed_at: Option<&'a str>§severity: &'a str§ghsa_id: &'a str§external_reference: &'a str§external_identifier: &'a str§fixed_in: Option<&'a str>§fixed_at: Option<&'a str>§fix_reason: Option<&'a str>§created_at: &'a strTrait Implementations§
source§impl<'a> Debug for RepositoryVulnerabilityAlertAlert<'a>
 
impl<'a> Debug for RepositoryVulnerabilityAlertAlert<'a>
source§impl<'de: 'a, 'a> Deserialize<'de> for RepositoryVulnerabilityAlertAlert<'a>
 
impl<'de: 'a, 'a> Deserialize<'de> for RepositoryVulnerabilityAlertAlert<'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 RepositoryVulnerabilityAlertAlert<'a>
impl<'a> Send for RepositoryVulnerabilityAlertAlert<'a>
impl<'a> Sync for RepositoryVulnerabilityAlertAlert<'a>
impl<'a> Unpin for RepositoryVulnerabilityAlertAlert<'a>
impl<'a> UnwindSafe for RepositoryVulnerabilityAlertAlert<'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