Enum smallvec::CollectionAllocErr
source · pub enum CollectionAllocErr {
CapacityOverflow,
AllocErr {
layout: Layout,
},
}
Expand description
Error type for APIs with fallible heap allocation
Variants§
CapacityOverflow
Overflow usize::MAX
or other error during size computation
AllocErr
The allocator return an error
Trait Implementations§
source§impl Debug for CollectionAllocErr
impl Debug for CollectionAllocErr
source§impl Display for CollectionAllocErr
impl Display for CollectionAllocErr
source§impl From<LayoutError> for CollectionAllocErr
impl From<LayoutError> for CollectionAllocErr
Auto Trait Implementations§
impl Freeze for CollectionAllocErr
impl RefUnwindSafe for CollectionAllocErr
impl Send for CollectionAllocErr
impl Sync for CollectionAllocErr
impl Unpin for CollectionAllocErr
impl UnwindSafe for CollectionAllocErr
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