pub enum RunFallibleError {
TerminationReason(TerminationReason),
FallibleExt(FallibleExtError),
}
Expand description
Error returned from closure argument in Runtime::run_fallible
.
Variants§
TerminationReason(TerminationReason)
FallibleExt(FallibleExtError)
Trait Implementations§
source§impl Clone for RunFallibleError
impl Clone for RunFallibleError
source§fn clone(&self) -> RunFallibleError
fn clone(&self) -> RunFallibleError
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for RunFallibleError
impl Debug for RunFallibleError
source§impl<E> From<E> for RunFallibleErrorwhere
E: BackendSyscallError,
impl<E> From<E> for RunFallibleErrorwhere E: BackendSyscallError,
Auto Trait Implementations§
impl RefUnwindSafe for RunFallibleError
impl Send for RunFallibleError
impl Sync for RunFallibleError
impl Unpin for RunFallibleError
impl UnwindSafe for RunFallibleError
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