pub enum RefclockError {
NotSynchronized,
OffsetTooLarge,
Implausible,
Stale,
}Variants§
NotSynchronized
The reference says it is not synchronized.
OffsetTooLarge
The offset is larger than any sane reference could imply.
Implausible
A timestamp was zero, negative or otherwise not a time.
Stale
This reading is not newer than the one before it.
Trait Implementations§
Source§impl Clone for RefclockError
impl Clone for RefclockError
Source§fn clone(&self) -> RefclockError
fn clone(&self) -> RefclockError
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 RefclockError
Source§impl Debug for RefclockError
impl Debug for RefclockError
Source§impl Display for RefclockError
impl Display for RefclockError
impl Eq for RefclockError
Source§impl PartialEq for RefclockError
impl PartialEq for RefclockError
impl StructuralPartialEq for RefclockError
Auto Trait Implementations§
impl Freeze for RefclockError
impl RefUnwindSafe for RefclockError
impl Send for RefclockError
impl Sync for RefclockError
impl Unpin for RefclockError
impl UnsafeUnpin for RefclockError
impl UnwindSafe for RefclockError
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