pub struct CannotReallocInPlace;
Expand description
The CannotReallocInPlace
error is used when grow_in_place
or
shrink_in_place
were unable to reuse the given memory block for
a requested layout.
Implementations§
Source§impl CannotReallocInPlace
impl CannotReallocInPlace
pub fn description(&self) -> &str
Trait Implementations§
Source§impl Clone for CannotReallocInPlace
impl Clone for CannotReallocInPlace
Source§fn clone(&self) -> CannotReallocInPlace
fn clone(&self) -> CannotReallocInPlace
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CannotReallocInPlace
impl Debug for CannotReallocInPlace
Source§impl Display for CannotReallocInPlace
impl Display for CannotReallocInPlace
Source§impl PartialEq for CannotReallocInPlace
impl PartialEq for CannotReallocInPlace
impl Eq for CannotReallocInPlace
impl StructuralPartialEq for CannotReallocInPlace
Auto Trait Implementations§
impl Freeze for CannotReallocInPlace
impl RefUnwindSafe for CannotReallocInPlace
impl Send for CannotReallocInPlace
impl Sync for CannotReallocInPlace
impl Unpin for CannotReallocInPlace
impl UnwindSafe for CannotReallocInPlace
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