pub struct DependabotAlertSecurityAdvisoryCvss {
pub score: f64,
pub vector_string: Option<String>,
}Expand description
DependabotAlertSecurityAdvisoryCvss : Details for the advisory pertaining to the Common Vulnerability Scoring System.
Fields§
§score: f64The overall CVSS score of the advisory.
vector_string: Option<String>The full CVSS vector string for the advisory.
Implementations§
Trait Implementations§
Source§impl Clone for DependabotAlertSecurityAdvisoryCvss
impl Clone for DependabotAlertSecurityAdvisoryCvss
Source§fn clone(&self) -> DependabotAlertSecurityAdvisoryCvss
fn clone(&self) -> DependabotAlertSecurityAdvisoryCvss
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for DependabotAlertSecurityAdvisoryCvss
impl Default for DependabotAlertSecurityAdvisoryCvss
Source§fn default() -> DependabotAlertSecurityAdvisoryCvss
fn default() -> DependabotAlertSecurityAdvisoryCvss
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DependabotAlertSecurityAdvisoryCvss
impl<'de> Deserialize<'de> for DependabotAlertSecurityAdvisoryCvss
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 PartialEq for DependabotAlertSecurityAdvisoryCvss
impl PartialEq for DependabotAlertSecurityAdvisoryCvss
Source§fn eq(&self, other: &DependabotAlertSecurityAdvisoryCvss) -> bool
fn eq(&self, other: &DependabotAlertSecurityAdvisoryCvss) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DependabotAlertSecurityAdvisoryCvss
Auto Trait Implementations§
impl Freeze for DependabotAlertSecurityAdvisoryCvss
impl RefUnwindSafe for DependabotAlertSecurityAdvisoryCvss
impl Send for DependabotAlertSecurityAdvisoryCvss
impl Sync for DependabotAlertSecurityAdvisoryCvss
impl Unpin for DependabotAlertSecurityAdvisoryCvss
impl UnwindSafe for DependabotAlertSecurityAdvisoryCvss
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