pub struct SystemicFinding {
pub finding_type: String,
pub industry: String,
pub affected_entities: Vec<String>,
}Expand description
A finding that appears systemically across an industry.
Fields§
§finding_type: StringClassification of the finding.
industry: StringIndustry in which the finding was observed.
affected_entities: Vec<String>Entities affected.
Trait Implementations§
Source§impl Clone for SystemicFinding
impl Clone for SystemicFinding
Source§fn clone(&self) -> SystemicFinding
fn clone(&self) -> SystemicFinding
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 SystemicFinding
impl Debug for SystemicFinding
Auto Trait Implementations§
impl Freeze for SystemicFinding
impl RefUnwindSafe for SystemicFinding
impl Send for SystemicFinding
impl Sync for SystemicFinding
impl Unpin for SystemicFinding
impl UnsafeUnpin for SystemicFinding
impl UnwindSafe for SystemicFinding
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