pub struct AvailableRisk {
pub risk_id: String,
pub engagement_id: Uuid,
pub account_or_process: String,
}Expand description
A risk assessment available for linkage during finding generation.
Fields§
§risk_id: StringRisk ID (external reference, e.g., “RISK-001”)
engagement_id: UuidEngagement ID this risk belongs to
account_or_process: StringAccount or process being assessed
Trait Implementations§
Source§impl Clone for AvailableRisk
impl Clone for AvailableRisk
Source§fn clone(&self) -> AvailableRisk
fn clone(&self) -> AvailableRisk
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 moreAuto Trait Implementations§
impl Freeze for AvailableRisk
impl RefUnwindSafe for AvailableRisk
impl Send for AvailableRisk
impl Sync for AvailableRisk
impl Unpin for AvailableRisk
impl UnsafeUnpin for AvailableRisk
impl UnwindSafe for AvailableRisk
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