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
Available on crate feature runtime only.
pub fn into_inner(self) -> T
runtime only.Recover this error’s inner host value.
Sourcepub fn take_inner(self) -> (T, GcHeapOutOfMemory<()>)
Available on crate feature runtime only.
pub fn take_inner(self) -> (T, GcHeapOutOfMemory<()>)
runtime only.Take this error’s inner host value, but also retain this
GcHeapOutOfMemory with T replaced with ().
This allows you to both extract the inner T if necessary, and also
pass the GcHeapOutOfMemory error to Store::gc
calls.
Trait Implementations§
Source§impl<T> Debug for GcHeapOutOfMemory<T>
Available on crate feature runtime only.
impl<T> Debug for GcHeapOutOfMemory<T>
runtime only.Source§impl<T> Display for GcHeapOutOfMemory<T>
Available on crate feature runtime only.
impl<T> Display for GcHeapOutOfMemory<T>
runtime only.Source§impl<T> Error for GcHeapOutOfMemory<T>
Available on crate feature runtime only.
impl<T> Error for GcHeapOutOfMemory<T>
runtime only.1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
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
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> ⓘ
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> ⓘ
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