pub enum TimestampsError {
Disabled,
Unavailable,
Unknown(String),
}
Expand description
Error that can occurred when collecting timestamps from a device.
Variants§
Disabled
Collecting timestamps is disabled, make sure to enable it.
Collecting timestamps isn’t available.
Unknown(String)
An unknown error occurred while collecting timestamps.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TimestampsError
impl RefUnwindSafe for TimestampsError
impl Send for TimestampsError
impl Sync for TimestampsError
impl Unpin for TimestampsError
impl UnwindSafe for TimestampsError
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