pub enum ClockDisruptionState {
Unknown,
Reliable,
Disrupted,
}
Expand description
Enum of possible Clock Disruption States exposed by the daemon.
Variants§
Trait Implementations§
Source§impl Clone for ClockDisruptionState
impl Clone for ClockDisruptionState
Source§fn clone(&self) -> ClockDisruptionState
fn clone(&self) -> ClockDisruptionState
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 ClockDisruptionState
impl Debug for ClockDisruptionState
Source§impl PartialEq for ClockDisruptionState
impl PartialEq for ClockDisruptionState
impl Copy for ClockDisruptionState
impl StructuralPartialEq for ClockDisruptionState
Auto Trait Implementations§
impl Freeze for ClockDisruptionState
impl RefUnwindSafe for ClockDisruptionState
impl Send for ClockDisruptionState
impl Sync for ClockDisruptionState
impl Unpin for ClockDisruptionState
impl UnwindSafe for ClockDisruptionState
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