#[repr(transparent)]pub struct Result(i32);
Expand description
An int
returned from a foreign function containing 1 if the function
was successful or 0 if an error occurred. This is the convention used by
C code in ring
.
Tuple Fields§
§0: i32
Trait Implementations§
impl Copy for Result
Auto Trait Implementations§
impl Freeze for Result
impl RefUnwindSafe for Result
impl Send for Result
impl Sync for Result
impl Unpin for Result
impl UnwindSafe for Result
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