Struct labview_interop::errors::MgErr
source · #[repr(transparent)]pub struct MgErr(_);
Expand description
MgErr is a simple wrapper around the error code that is returned by the memory manager functions.
Implementations§
Trait Implementations§
source§impl Error for MgErr
impl Error for MgErr
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<LVInteropError> for MgErr
impl From<LVInteropError> for MgErr
source§fn from(value: LVInteropError) -> Self
fn from(value: LVInteropError) -> Self
Converts to this type from the input type.
source§impl From<MgErr> for LVInteropError
impl From<MgErr> for LVInteropError
source§impl PartialEq<MgErr> for MgErr
impl PartialEq<MgErr> for MgErr
impl Copy for MgErr
impl Eq for MgErr
impl StructuralEq for MgErr
impl StructuralPartialEq for MgErr
Auto Trait Implementations§
impl RefUnwindSafe for MgErr
impl Send for MgErr
impl Sync for MgErr
impl Unpin for MgErr
impl UnwindSafe for MgErr
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