#[repr(C)]pub struct clockbound_err {
pub kind: clockbound_err_kind,
pub errno: i32,
pub detail: *const c_char,
}
Expand description
Error struct exposed over the FFI.
The definition has to match the C header definition.
Fields§
§kind: clockbound_err_kind
§errno: i32
§detail: *const c_char
Trait Implementations§
Source§impl Default for clockbound_err
impl Default for clockbound_err
Auto Trait Implementations§
impl Freeze for clockbound_err
impl RefUnwindSafe for clockbound_err
impl !Send for clockbound_err
impl !Sync for clockbound_err
impl Unpin for clockbound_err
impl UnwindSafe for clockbound_err
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