pub enum ExecOutcome {
Aborted,
ErrorConflict,
ErrorCorruption,
ErrorIncompatiblePersistedFormat,
ErrorInternal,
ErrorInvariantViolation,
ErrorNotFound,
ErrorUnsupported,
Success,
}Expand description
ExecOutcome
Variants§
Aborted
ErrorConflict
ErrorCorruption
ErrorIncompatiblePersistedFormat
ErrorInternal
ErrorInvariantViolation
ErrorNotFound
ErrorUnsupported
Success
Trait Implementations§
Source§impl Clone for ExecOutcome
impl Clone for ExecOutcome
Source§fn clone(&self) -> ExecOutcome
fn clone(&self) -> ExecOutcome
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ExecOutcome
Auto Trait Implementations§
impl Freeze for ExecOutcome
impl RefUnwindSafe for ExecOutcome
impl Send for ExecOutcome
impl Sync for ExecOutcome
impl Unpin for ExecOutcome
impl UnsafeUnpin for ExecOutcome
impl UnwindSafe for ExecOutcome
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