pub enum ChronyClockStatus {
Unknown = 0,
Synchronized = 1,
FreeRunning = 2,
}
Expand description
The status of the system clock reported by chronyd
Variants§
Unknown = 0
The status of the clock is unknown.
Synchronized = 1
The clock is kept accurate by the synchronization daemon.
FreeRunning = 2
The clock is free running and not updated by the synchronization daemon.
Trait Implementations§
Source§impl Clone for ChronyClockStatus
impl Clone for ChronyClockStatus
Source§fn clone(&self) -> ChronyClockStatus
fn clone(&self) -> ChronyClockStatus
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 ChronyClockStatus
impl Debug for ChronyClockStatus
Source§impl From<u16> for ChronyClockStatus
impl From<u16> for ChronyClockStatus
Source§impl PartialEq for ChronyClockStatus
impl PartialEq for ChronyClockStatus
impl Copy for ChronyClockStatus
impl StructuralPartialEq for ChronyClockStatus
Auto Trait Implementations§
impl Freeze for ChronyClockStatus
impl RefUnwindSafe for ChronyClockStatus
impl Send for ChronyClockStatus
impl Sync for ChronyClockStatus
impl Unpin for ChronyClockStatus
impl UnwindSafe for ChronyClockStatus
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