pub struct VulnerabilityVendor {
pub name: String,
pub url: Option<String>,
pub vendor_created_at: Option<String>,
pub vendor_severity: Option<String>,
pub vendor_updated_at: Option<String>,
}Expand description
A vendor that generates a vulnerability report.
Fields§
§name: StringThe name of the vendor.
url: Option<String>The URL of the vulnerability advisory.
vendor_created_at: Option<String>Indicates when the vulnerability advisory was created.
Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
vendor_severity: Option<String>The severity that the vendor assigned to the vulnerability.
vendor_updated_at: Option<String>Indicates when the vulnerability advisory was last updated.
Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
Trait Implementations§
Source§impl Clone for VulnerabilityVendor
impl Clone for VulnerabilityVendor
Source§fn clone(&self) -> VulnerabilityVendor
fn clone(&self) -> VulnerabilityVendor
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 VulnerabilityVendor
impl Debug for VulnerabilityVendor
Source§impl Default for VulnerabilityVendor
impl Default for VulnerabilityVendor
Source§fn default() -> VulnerabilityVendor
fn default() -> VulnerabilityVendor
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VulnerabilityVendor
impl<'de> Deserialize<'de> for VulnerabilityVendor
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 VulnerabilityVendor
impl PartialEq for VulnerabilityVendor
Source§impl Serialize for VulnerabilityVendor
impl Serialize for VulnerabilityVendor
impl StructuralPartialEq for VulnerabilityVendor
Auto Trait Implementations§
impl Freeze for VulnerabilityVendor
impl RefUnwindSafe for VulnerabilityVendor
impl Send for VulnerabilityVendor
impl Sync for VulnerabilityVendor
impl Unpin for VulnerabilityVendor
impl UnwindSafe for VulnerabilityVendor
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