#[repr(C)]pub struct FfiResult {
pub error_code: i32,
pub description: *const c_char,
}Expand description
FFI result wrapper.
Fields§
§error_code: i32Unique error code.
description: *const c_charError description.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FfiResult
impl RefUnwindSafe for FfiResult
impl !Send for FfiResult
impl !Sync for FfiResult
impl Unpin for FfiResult
impl UnsafeUnpin for FfiResult
impl UnwindSafe for FfiResult
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