#[repr(u64)]pub enum ClockOffsetValid {
Invalid = 0,
Valid = 1,
}Variants§
Trait Implementations§
Source§impl Clone for ClockOffsetValid
impl Clone for ClockOffsetValid
Source§fn clone(&self) -> ClockOffsetValid
fn clone(&self) -> ClockOffsetValid
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 ClockOffsetValid
impl Debug for ClockOffsetValid
Source§impl From<&ClockOffsetValid> for u8
impl From<&ClockOffsetValid> for u8
Source§fn from(value: &ClockOffsetValid) -> Self
fn from(value: &ClockOffsetValid) -> Self
Converts to this type from the input type.
Source§impl From<ClockOffsetValid> for i16
impl From<ClockOffsetValid> for i16
Source§fn from(value: ClockOffsetValid) -> Self
fn from(value: ClockOffsetValid) -> Self
Converts to this type from the input type.
Source§impl From<ClockOffsetValid> for i32
impl From<ClockOffsetValid> for i32
Source§fn from(value: ClockOffsetValid) -> Self
fn from(value: ClockOffsetValid) -> Self
Converts to this type from the input type.
Source§impl From<ClockOffsetValid> for i64
impl From<ClockOffsetValid> for i64
Source§fn from(value: ClockOffsetValid) -> Self
fn from(value: ClockOffsetValid) -> Self
Converts to this type from the input type.
Source§impl From<ClockOffsetValid> for i8
impl From<ClockOffsetValid> for i8
Source§fn from(value: ClockOffsetValid) -> Self
fn from(value: ClockOffsetValid) -> Self
Converts to this type from the input type.
Source§impl From<ClockOffsetValid> for u16
impl From<ClockOffsetValid> for u16
Source§fn from(value: ClockOffsetValid) -> Self
fn from(value: ClockOffsetValid) -> Self
Converts to this type from the input type.
Source§impl From<ClockOffsetValid> for u32
impl From<ClockOffsetValid> for u32
Source§fn from(value: ClockOffsetValid) -> Self
fn from(value: ClockOffsetValid) -> Self
Converts to this type from the input type.
Source§impl From<ClockOffsetValid> for u64
impl From<ClockOffsetValid> for u64
Source§fn from(value: ClockOffsetValid) -> Self
fn from(value: ClockOffsetValid) -> Self
Converts to this type from the input type.
Source§impl From<ClockOffsetValid> for u8
impl From<ClockOffsetValid> for u8
Source§fn from(value: ClockOffsetValid) -> Self
fn from(value: ClockOffsetValid) -> Self
Converts to this type from the input type.
Source§impl Hash for ClockOffsetValid
impl Hash for ClockOffsetValid
Source§impl PartialEq for ClockOffsetValid
impl PartialEq for ClockOffsetValid
Source§impl TryFrom<u8> for ClockOffsetValid
impl TryFrom<u8> for ClockOffsetValid
impl Copy for ClockOffsetValid
impl Eq for ClockOffsetValid
impl StructuralPartialEq for ClockOffsetValid
Auto Trait Implementations§
impl Freeze for ClockOffsetValid
impl RefUnwindSafe for ClockOffsetValid
impl Send for ClockOffsetValid
impl Sync for ClockOffsetValid
impl Unpin for ClockOffsetValid
impl UnwindSafe for ClockOffsetValid
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more