#[repr(C)]pub enum clockbound_err_kind {
CLOCKBOUND_ERR_NONE = 0,
CLOCKBOUND_ERR_SYSCALL = 1,
CLOCKBOUND_ERR_SEGMENT_NOT_INITIALIZED = 2,
CLOCKBOUND_ERR_SEGMENT_MALFORMED = 3,
CLOCKBOUND_ERR_CAUSALITY_BREACH = 4,
CLOCKBOUND_ERR_SEGMENT_VERSION_NOT_SUPPORTED = 5,
}
Expand description
Error kind exposed over the FFI.
These have to match the C header definition.
Variants§
CLOCKBOUND_ERR_NONE = 0
CLOCKBOUND_ERR_SYSCALL = 1
CLOCKBOUND_ERR_SEGMENT_NOT_INITIALIZED = 2
CLOCKBOUND_ERR_SEGMENT_MALFORMED = 3
CLOCKBOUND_ERR_CAUSALITY_BREACH = 4
CLOCKBOUND_ERR_SEGMENT_VERSION_NOT_SUPPORTED = 5
Auto Trait Implementations§
impl Freeze for clockbound_err_kind
impl RefUnwindSafe for clockbound_err_kind
impl Send for clockbound_err_kind
impl Sync for clockbound_err_kind
impl Unpin for clockbound_err_kind
impl UnwindSafe for clockbound_err_kind
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