pub enum AllocOrInitError<E> {
Alloc(AllocErr),
Init(E),
}Expand description
An error returned from Bump::try_alloc_try_with.
Variants§
Alloc(AllocErr)
Indicates that the initial allocation failed.
Init(E)
Indicates that the initializer failed with the contained error after allocation.
It is possible but not guaranteed that the allocated memory has been released back to the allocator at this point.
Trait Implementations§
Source§impl<E> Clone for AllocOrInitError<E>where
E: Clone,
impl<E> Clone for AllocOrInitError<E>where
E: Clone,
Source§fn clone(&self) -> AllocOrInitError<E>
fn clone(&self) -> AllocOrInitError<E>
Returns a duplicate 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<E> Debug for AllocOrInitError<E>where
E: Debug,
impl<E> Debug for AllocOrInitError<E>where
E: Debug,
Source§impl<E> Display for AllocOrInitError<E>where
E: Display,
impl<E> Display for AllocOrInitError<E>where
E: Display,
Source§impl<E> From<AllocErr> for AllocOrInitError<E>
impl<E> From<AllocErr> for AllocOrInitError<E>
Source§fn from(e: AllocErr) -> AllocOrInitError<E>
fn from(e: AllocErr) -> AllocOrInitError<E>
Converts to this type from the input type.
Source§impl<E> PartialEq for AllocOrInitError<E>where
E: PartialEq,
impl<E> PartialEq for AllocOrInitError<E>where
E: PartialEq,
impl<E> Eq for AllocOrInitError<E>where
E: Eq,
impl<E> StructuralPartialEq for AllocOrInitError<E>
Auto Trait Implementations§
impl<E> Freeze for AllocOrInitError<E>where
E: Freeze,
impl<E> RefUnwindSafe for AllocOrInitError<E>where
E: RefUnwindSafe,
impl<E> Send for AllocOrInitError<E>where
E: Send,
impl<E> Sync for AllocOrInitError<E>where
E: Sync,
impl<E> Unpin for AllocOrInitError<E>where
E: Unpin,
impl<E> UnwindSafe for AllocOrInitError<E>where
E: UnwindSafe,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T, R> CollectAndApply<T, R> for T
impl<T, R> CollectAndApply<T, R> for T
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
fn equivalent(&self, key: &K) -> bool
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more