Enum MapMemoryError
pub enum MapMemoryError {
InvalidLength(usize),
OutOfMemory,
MappingMemoryError,
}
Variants§
Trait Implementations§
§impl Clone for MapMemoryError
impl Clone for MapMemoryError
§fn clone(&self) -> MapMemoryError
fn clone(&self) -> MapMemoryError
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 more§impl Debug for MapMemoryError
impl Debug for MapMemoryError
Source§impl From<MapMemoryError> for MemoryAllocationError
impl From<MapMemoryError> for MemoryAllocationError
Source§fn from(value: MapMemoryError) -> Self
fn from(value: MapMemoryError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MapMemoryError
impl RefUnwindSafe for MapMemoryError
impl Send for MapMemoryError
impl Sync for MapMemoryError
impl Unpin for MapMemoryError
impl UnwindSafe for MapMemoryError
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