pub struct ToxicCombination {
pub attack_exposure_score: Option<f64>,
pub related_findings: Option<Vec<String>>,
}Expand description
Contains details about a group of security issues that, when the issues occur together, represent a greater risk than when the issues occur independently. A group of such issues is referred to as a toxic combination.
This type is not used in any activity, and only used as part of another schema.
Fields§
§attack_exposure_score: Option<f64>The Attack exposure score of this toxic combination. The score is a measure of how much this toxic combination exposes one or more high-value resources to potential attack.
List of resource names of findings associated with this toxic combination. For example, organizations/123/sources/456/findings/789.
Trait Implementations§
Source§impl Clone for ToxicCombination
impl Clone for ToxicCombination
Source§fn clone(&self) -> ToxicCombination
fn clone(&self) -> ToxicCombination
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 ToxicCombination
impl Debug for ToxicCombination
Source§impl Default for ToxicCombination
impl Default for ToxicCombination
Source§fn default() -> ToxicCombination
fn default() -> ToxicCombination
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ToxicCombination
impl<'de> Deserialize<'de> for ToxicCombination
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 Serialize for ToxicCombination
impl Serialize for ToxicCombination
impl Part for ToxicCombination
Auto Trait Implementations§
impl Freeze for ToxicCombination
impl RefUnwindSafe for ToxicCombination
impl Send for ToxicCombination
impl Sync for ToxicCombination
impl Unpin for ToxicCombination
impl UnwindSafe for ToxicCombination
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