#[repr(C)]pub struct NativeAbiError {
pub message: *mut c_char,
}Expand description
An error returned across the ABI as a heap-allocated C string holder.
Fields§
§message: *mut c_charNUL-terminated message owned by the allocating side.
Implementations§
Auto Trait Implementations§
impl !Send for NativeAbiError
impl !Sync for NativeAbiError
impl Freeze for NativeAbiError
impl RefUnwindSafe for NativeAbiError
impl Unpin for NativeAbiError
impl UnsafeUnpin for NativeAbiError
impl UnwindSafe for NativeAbiError
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