pub struct FixableTotalByDigest {
pub fixable_count: Option<i64>,
pub resource_uri: Option<String>,
pub severity: Option<String>,
pub total_count: Option<i64>,
}Expand description
Per resource and severity counts of fixable and total vulnerabilities.
This type is not used in any activity, and only used as part of another schema.
Fields§
§fixable_count: Option<i64>The number of fixable vulnerabilities associated with this resource.
resource_uri: Option<String>The affected resource.
severity: Option<String>The severity for this count. SEVERITY_UNSPECIFIED indicates total across all severities.
total_count: Option<i64>The total number of vulnerabilities associated with this resource.
Trait Implementations§
source§impl Clone for FixableTotalByDigest
impl Clone for FixableTotalByDigest
source§fn clone(&self) -> FixableTotalByDigest
fn clone(&self) -> FixableTotalByDigest
Returns a copy 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 FixableTotalByDigest
impl Debug for FixableTotalByDigest
source§impl Default for FixableTotalByDigest
impl Default for FixableTotalByDigest
source§fn default() -> FixableTotalByDigest
fn default() -> FixableTotalByDigest
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for FixableTotalByDigest
impl<'de> Deserialize<'de> for FixableTotalByDigest
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