pub enum AllocFrameError {
OutOfMemory,
}Variants§
OutOfMemory
Trait Implementations§
Source§impl Debug for AllocFrameError
impl Debug for AllocFrameError
Source§impl Display for AllocFrameError
impl Display for AllocFrameError
Source§impl Error for AllocFrameError
impl Error for AllocFrameError
1.30.0 · 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<AllocFrameError> for Error
impl From<AllocFrameError> for Error
Source§fn from(source: AllocFrameError) -> Self
fn from(source: AllocFrameError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AllocFrameError
impl RefUnwindSafe for AllocFrameError
impl Send for AllocFrameError
impl Sync for AllocFrameError
impl Unpin for AllocFrameError
impl UnwindSafe for AllocFrameError
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