pub struct Impact {
pub confidentiality: Confidentiality,
pub integrity: Integrity,
pub availability: Availability,
}Expand description
The Impact sub-vector as defined by the CVSS specification.
Fields§
§confidentiality: ConfidentialityThe Confidentiality field as defined by the CVSS specification.
integrity: IntegrityThe Integrity field as defined by the CVSS specification.
availability: AvailabilityThe Availability field as defined by the CVSS specification.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Impact
impl<'de> Deserialize<'de> for Impact
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
impl Copy for Impact
impl StructuralPartialEq for Impact
Auto Trait Implementations§
impl Freeze for Impact
impl RefUnwindSafe for Impact
impl Send for Impact
impl Sync for Impact
impl Unpin for Impact
impl UnsafeUnpin for Impact
impl UnwindSafe for Impact
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