pub enum LockedBufError {
MapAnon(Error),
MemLock(Error),
}
Expand description
Error during LockedBuf
creation
Variants§
Trait Implementations§
Source§impl Debug for LockedBufError
impl Debug for LockedBufError
Source§impl Display for LockedBufError
impl Display for LockedBufError
Source§impl Error for LockedBufError
impl Error for LockedBufError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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<Error> for LockedBufError
impl From<Error> for LockedBufError
Auto Trait Implementations§
impl Freeze for LockedBufError
impl !RefUnwindSafe for LockedBufError
impl Send for LockedBufError
impl Sync for LockedBufError
impl Unpin for LockedBufError
impl !UnwindSafe for LockedBufError
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