pub enum ReallocateError {
InsufficientSpace {
required_additional: NonZero<u32>,
available: u32,
},
Invalid,
}
Variants§
Trait Implementations§
Source§impl Clone for ReallocateError
impl Clone for ReallocateError
Source§fn clone(&self) -> ReallocateError
fn clone(&self) -> ReallocateError
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ReallocateError
impl Debug for ReallocateError
Source§impl Display for ReallocateError
impl Display for ReallocateError
Source§impl Error for ReallocateError
impl Error for ReallocateError
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()
impl Copy for ReallocateError
Auto Trait Implementations§
impl Freeze for ReallocateError
impl RefUnwindSafe for ReallocateError
impl Send for ReallocateError
impl Sync for ReallocateError
impl Unpin for ReallocateError
impl UnwindSafe for ReallocateError
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