#[repr(C)]pub enum clockbound_clock_status {
CLOCKBOUND_STA_UNKNOWN = 0,
CLOCKBOUND_STA_SYNCHRONIZED = 1,
CLOCKBOUND_STA_FREE_RUNNING = 2,
CLOCKBOUND_STA_DISRUPTED = 3,
}
Expand description
Clock status exposed over the FFI. .
Variants§
CLOCKBOUND_STA_UNKNOWN = 0
CLOCKBOUND_STA_SYNCHRONIZED = 1
CLOCKBOUND_STA_FREE_RUNNING = 2
CLOCKBOUND_STA_DISRUPTED = 3
Trait Implementations§
Source§impl Debug for clockbound_clock_status
impl Debug for clockbound_clock_status
Source§impl From<ClockStatus> for clockbound_clock_status
impl From<ClockStatus> for clockbound_clock_status
Source§fn from(value: ClockStatus) -> Self
fn from(value: ClockStatus) -> Self
Converts to this type from the input type.
Source§impl PartialEq for clockbound_clock_status
impl PartialEq for clockbound_clock_status
impl StructuralPartialEq for clockbound_clock_status
Auto Trait Implementations§
impl Freeze for clockbound_clock_status
impl RefUnwindSafe for clockbound_clock_status
impl Send for clockbound_clock_status
impl Sync for clockbound_clock_status
impl Unpin for clockbound_clock_status
impl UnwindSafe for clockbound_clock_status
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