pub struct PathNodeAssociatedFinding {
pub canonical_finding: Option<String>,
pub finding_category: Option<String>,
pub name: Option<String>,
}Expand description
A finding that is associated with this node in the attack path.
This type is not used in any activity, and only used as part of another schema.
Fields§
§canonical_finding: Option<String>Canonical name of the associated findings. Example: organizations/123/sources/456/findings/789
finding_category: Option<String>The additional taxonomy group within findings from a given source.
name: Option<String>Full resource name of the finding.
Trait Implementations§
Source§impl Clone for PathNodeAssociatedFinding
impl Clone for PathNodeAssociatedFinding
Source§fn clone(&self) -> PathNodeAssociatedFinding
fn clone(&self) -> PathNodeAssociatedFinding
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 PathNodeAssociatedFinding
impl Debug for PathNodeAssociatedFinding
Source§impl Default for PathNodeAssociatedFinding
impl Default for PathNodeAssociatedFinding
Source§fn default() -> PathNodeAssociatedFinding
fn default() -> PathNodeAssociatedFinding
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PathNodeAssociatedFinding
impl<'de> Deserialize<'de> for PathNodeAssociatedFinding
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 Part for PathNodeAssociatedFinding
Auto Trait Implementations§
impl Freeze for PathNodeAssociatedFinding
impl RefUnwindSafe for PathNodeAssociatedFinding
impl Send for PathNodeAssociatedFinding
impl Sync for PathNodeAssociatedFinding
impl Unpin for PathNodeAssociatedFinding
impl UnwindSafe for PathNodeAssociatedFinding
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