pub enum FaultActivity {
Active,
PotentiallyActive,
Inactive,
Reactivated,
Unknown,
Custom(String),
}Variants§
Trait Implementations§
Source§impl Clone for FaultActivity
impl Clone for FaultActivity
Source§fn clone(&self) -> FaultActivity
fn clone(&self) -> FaultActivity
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 FaultActivity
impl Debug for FaultActivity
Source§impl Display for FaultActivity
impl Display for FaultActivity
Source§impl FromStr for FaultActivity
impl FromStr for FaultActivity
Source§impl Hash for FaultActivity
impl Hash for FaultActivity
Source§impl Ord for FaultActivity
impl Ord for FaultActivity
Source§fn cmp(&self, other: &FaultActivity) -> Ordering
fn cmp(&self, other: &FaultActivity) -> Ordering
1.21.0 · 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 FaultActivity
impl PartialEq for FaultActivity
Source§impl PartialOrd for FaultActivity
impl PartialOrd for FaultActivity
impl Eq for FaultActivity
impl StructuralPartialEq for FaultActivity
Auto Trait Implementations§
impl Freeze for FaultActivity
impl RefUnwindSafe for FaultActivity
impl Send for FaultActivity
impl Sync for FaultActivity
impl Unpin for FaultActivity
impl UnsafeUnpin for FaultActivity
impl UnwindSafe for FaultActivity
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