pub enum TryReserveErrorKind {
CapacityOverflow,
AllocError {
layout: Layout,
/* private fields */
},
}
🔬 This is a nightly-only experimental API. (
try_reserve_kind
#48043)
Expand description
Details of the allocation that caused a TryReserveError
🔬 This is a nightly-only experimental API. (
try_reserve_kind
#48043)
Error due to the computed capacity exceeding the collection’s maximum
(usually isize::MAX
bytes).
Fields
🔬 This is a nightly-only experimental API. (
try_reserve_kind
#48043)
The layout of allocation request that failed
🔬 This is a nightly-only experimental API. (
try_reserve_kind
#48043)
The memory allocator returned an error
Performs copy-assignment from source
. Read more
Formats the value using the given formatter. Read more
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
impl<T> Any for T where
T: 'static + ?Sized,
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
impl<T, U> Into<U> for T where
U: From<T>,
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
🔬 This is a nightly-only experimental API. (
toowned_clone_into
#41263)
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
The type returned in the event of a conversion error.