pub struct SecurityAdvisoryCwes<'a> {
pub cwe_id: &'a str,
pub name: &'a str,
}
Expand description
A CWE weakness assigned to the advisory.
Fields§
§cwe_id: &'a str
The unique CWE ID.
name: &'a str
The short, plain text name of the CWE.
Trait Implementations§
source§impl<'a> Debug for SecurityAdvisoryCwes<'a>
impl<'a> Debug for SecurityAdvisoryCwes<'a>
source§impl<'de: 'a, 'a> Deserialize<'de> for SecurityAdvisoryCwes<'a>
impl<'de: 'a, 'a> Deserialize<'de> for SecurityAdvisoryCwes<'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 SecurityAdvisoryCwes<'a>
impl<'a> Send for SecurityAdvisoryCwes<'a>
impl<'a> Sync for SecurityAdvisoryCwes<'a>
impl<'a> Unpin for SecurityAdvisoryCwes<'a>
impl<'a> UnwindSafe for SecurityAdvisoryCwes<'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