Struct wasmtime::GcHeapOutOfMemory
source · pub struct GcHeapOutOfMemory<T> { /* private fields */ }
Expand description
An error returned when attempting to allocate a GC-managed object, but the GC heap is out of memory.
This error wraps an inner T
value – which is the host value, if any, that
was passed to ExternRef::new
– and you can
recover this value via the
into_inner
method. This lets you
try to allocate the externref
again, after performing a GC to hopefully
free up space in the heap, or otherwise do whatever you want with the inner
value.
For errors that occur when attempting to allocate non-externref
objects
when the GC heap is at capacity, the T
type parameter is just the unit
type ()
.
Implementations§
source§impl<T> GcHeapOutOfMemory<T>
impl<T> GcHeapOutOfMemory<T>
sourcepub fn into_inner(self) -> T
pub fn into_inner(self) -> T
Recover this error’s inner host value.
Trait Implementations§
source§impl<T> Debug for GcHeapOutOfMemory<T>
impl<T> Debug for GcHeapOutOfMemory<T>
source§impl<T> Display for GcHeapOutOfMemory<T>
impl<T> Display for GcHeapOutOfMemory<T>
source§impl<T> Error for GcHeapOutOfMemory<T>
impl<T> Error for GcHeapOutOfMemory<T>
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl<T> Freeze for GcHeapOutOfMemory<T>where
T: Freeze,
impl<T> RefUnwindSafe for GcHeapOutOfMemory<T>where
T: RefUnwindSafe,
impl<T> Send for GcHeapOutOfMemory<T>where
T: Send,
impl<T> Sync for GcHeapOutOfMemory<T>where
T: Sync,
impl<T> Unpin for GcHeapOutOfMemory<T>where
T: Unpin,
impl<T> UnwindSafe for GcHeapOutOfMemory<T>where
T: 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> IntoAnyhow for T
impl<T> IntoAnyhow for T
source§fn into_anyhow(self) -> Error
fn into_anyhow(self) -> Error
Converts
self
into an anyhow::Error
.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