pub enum ClockStatus {
Unsynchronized,
Synchronizing,
Synchronized,
}Expand description
Status of clock synchronization.
Variants§
Unsynchronized
Not synchronized to any source.
Synchronizing
Synchronizing (converging).
Synchronized
Synchronized and stable.
Trait Implementations§
Source§impl Clone for ClockStatus
impl Clone for ClockStatus
Source§fn clone(&self) -> ClockStatus
fn clone(&self) -> ClockStatus
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 moreimpl Copy for ClockStatus
Source§impl Debug for ClockStatus
impl Debug for ClockStatus
impl Eq for ClockStatus
Source§impl PartialEq for ClockStatus
impl PartialEq for ClockStatus
Source§fn eq(&self, other: &ClockStatus) -> bool
fn eq(&self, other: &ClockStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ClockStatus
Auto Trait Implementations§
impl Freeze for ClockStatus
impl RefUnwindSafe for ClockStatus
impl Send for ClockStatus
impl Sync for ClockStatus
impl Unpin for ClockStatus
impl UnsafeUnpin for ClockStatus
impl UnwindSafe for ClockStatus
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