pub struct GlobalAdvisoryCvss {
pub vector_string: Option<String>,
pub score: Option<f64>,
}
Fields§
§vector_string: Option<String>
The CVSS vector.
score: Option<f64>
The CVSS score.
Implementations§
Trait Implementations§
Source§impl Clone for GlobalAdvisoryCvss
impl Clone for GlobalAdvisoryCvss
Source§fn clone(&self) -> GlobalAdvisoryCvss
fn clone(&self) -> GlobalAdvisoryCvss
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 Debug for GlobalAdvisoryCvss
impl Debug for GlobalAdvisoryCvss
Source§impl Default for GlobalAdvisoryCvss
impl Default for GlobalAdvisoryCvss
Source§fn default() -> GlobalAdvisoryCvss
fn default() -> GlobalAdvisoryCvss
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GlobalAdvisoryCvss
impl<'de> Deserialize<'de> for GlobalAdvisoryCvss
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 GlobalAdvisoryCvss
impl PartialEq for GlobalAdvisoryCvss
Source§impl Serialize for GlobalAdvisoryCvss
impl Serialize for GlobalAdvisoryCvss
impl StructuralPartialEq for GlobalAdvisoryCvss
Auto Trait Implementations§
impl Freeze for GlobalAdvisoryCvss
impl RefUnwindSafe for GlobalAdvisoryCvss
impl Send for GlobalAdvisoryCvss
impl Sync for GlobalAdvisoryCvss
impl Unpin for GlobalAdvisoryCvss
impl UnwindSafe for GlobalAdvisoryCvss
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