pub enum RiskStatus {
Open,
Accepted,
Mitigated,
Transferred,
Avoided,
Closed,
}Expand description
Risk status labels.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for RiskStatus
impl Clone for RiskStatus
Source§fn clone(&self) -> RiskStatus
fn clone(&self) -> RiskStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RiskStatus
impl Debug for RiskStatus
Source§impl Display for RiskStatus
impl Display for RiskStatus
Source§impl FromStr for RiskStatus
impl FromStr for RiskStatus
Source§impl Hash for RiskStatus
impl Hash for RiskStatus
Source§impl Ord for RiskStatus
impl Ord for RiskStatus
Source§fn cmp(&self, other: &RiskStatus) -> Ordering
fn cmp(&self, other: &RiskStatus) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for RiskStatus
impl PartialEq for RiskStatus
Source§fn eq(&self, other: &RiskStatus) -> bool
fn eq(&self, other: &RiskStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for RiskStatus
impl PartialOrd for RiskStatus
impl Copy for RiskStatus
impl Eq for RiskStatus
impl StructuralPartialEq for RiskStatus
Auto Trait Implementations§
impl Freeze for RiskStatus
impl RefUnwindSafe for RiskStatus
impl Send for RiskStatus
impl Sync for RiskStatus
impl Unpin for RiskStatus
impl UnsafeUnpin for RiskStatus
impl UnwindSafe for RiskStatus
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