pub enum AllocErr { Exhausted { request: Layout, }, Unsupported { details: &'static str, }, }
The AllocErr
error specifies whether an allocation failure is specifically due to resource exhaustion or if it is due to something wrong when combining the given input arguments with this allocator.
Exhausted
Error due to hitting some resource limit or otherwise running out of memory. This condition strongly implies that some series of deallocations would allow a subsequent reissuing of the original allocation request to succeed.
Exhausted
request:Â Layout |
🔬 This is a nightly-only experimental API. (allocator_api #32838)the precise API and guarantees it provides may be tweaked slightly, especially to possibly take into account the types being stored to make room for a future tracing garbage collector |
Unsupported
Error due to allocator being fundamentally incapable of satisfying the original request. This condition implies that such an allocation request will never succeed on the given allocator, regardless of environment, memory pressure, or other contextual conditions.
For example, an allocator that does not support requests for large memory blocks might return this error variant.
Unsupported
details:Â &'static str |
🔬 This is a nightly-only experimental API. (allocator_api #32838)the precise API and guarantees it provides may be tweaked slightly, especially to possibly take into account the types being stored to make room for a future tracing garbage collector |
impl AllocErr
[src]
fn invalid_input(details: &'static str) -> AllocErr
[src]
fn is_memory_exhausted(&self) -> bool
[src]
fn is_request_unsupported(&self) -> bool
[src]
fn description(&self) -> &str
[src]
impl PartialEq<AllocErr> for AllocErr
[src]
fn eq(&self, __arg_0: &AllocErr) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &AllocErr) -> bool
[src]
This method tests for !=
.
impl Debug for AllocErr
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>
[src]
Formats the value using the given formatter. Read more
impl Clone for AllocErr
[src]
fn clone(&self) -> AllocErr
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Eq for AllocErr
[src]
impl Display for AllocErr
[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
[src]
Formats the value using the given formatter. Read more
impl Error for AllocErr
[src]
fn description(&self) -> &str
[src]
A short description of the error. Read more
fn cause(&self) -> Option<&Error>
The lower-level cause of this error, if any. Read more
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/heap/enum.AllocErr.html