Enum sgx_tstd::collections::CollectionAllocErr [−][src]
pub enum CollectionAllocErr { CapacityOverflow, AllocErr, }
🔬 This is a nightly-only experimental API. (try_reserve
)
new API
Augments AllocErr
with a CapacityOverflow variant.
Variants
CapacityOverflow
🔬 This is a nightly-only experimental API. (try_reserve
)
new API
Error due to the computed capacity exceeding the collection's maximum
(usually isize::MAX
bytes).
AllocErr
🔬 This is a nightly-only experimental API. (try_reserve
)
new API
Error due to the allocator (see the AllocErr
type's docs).
Trait Implementations
impl Debug for CollectionAllocErr
[src]
impl Debug for CollectionAllocErr
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter. Read more
impl Clone for CollectionAllocErr
[src]
impl Clone for CollectionAllocErr
fn clone(&self) -> CollectionAllocErr
[src]
fn clone(&self) -> CollectionAllocErr
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0
[src]Performs copy-assignment from source
. Read more
impl From<LayoutErr> for CollectionAllocErr
[src]
impl From<LayoutErr> for CollectionAllocErr
fn from(LayoutErr) -> CollectionAllocErr
[src]
fn from(LayoutErr) -> CollectionAllocErr
Performs the conversion.
impl From<AllocErr> for CollectionAllocErr
[src]
impl From<AllocErr> for CollectionAllocErr
fn from(AllocErr) -> CollectionAllocErr
[src]
fn from(AllocErr) -> CollectionAllocErr
Performs the conversion.
impl PartialEq<CollectionAllocErr> for CollectionAllocErr
[src]
impl PartialEq<CollectionAllocErr> for CollectionAllocErr
fn eq(&self, other: &CollectionAllocErr) -> bool
[src]
fn eq(&self, other: &CollectionAllocErr) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]This method tests for !=
.
impl Eq for CollectionAllocErr
[src]
impl Eq for CollectionAllocErr
Auto Trait Implementations
impl Send for CollectionAllocErr
impl Send for CollectionAllocErr
impl Sync for CollectionAllocErr
impl Sync for CollectionAllocErr