pub enum RunFallibleError {
UndefinedTerminationReason(UndefinedTerminationReason),
FallibleExt(ExtError),
}
Expand description
Error returned from closure argument in Runtime::run_fallible
.
Variants§
UndefinedTerminationReason(UndefinedTerminationReason)
FallibleExt(ExtError)
Trait Implementations§
Source§impl Clone for RunFallibleError
impl Clone for RunFallibleError
Source§fn clone(&self) -> RunFallibleError
fn clone(&self) -> RunFallibleError
Returns a duplicate 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 Freeze for RunFallibleError
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