pub enum CleanupOutcome {
NotRun,
Succeeded,
Failed,
Unknown,
}Variants§
Trait Implementations§
Source§impl Clone for CleanupOutcome
impl Clone for CleanupOutcome
Source§fn clone(&self) -> CleanupOutcome
fn clone(&self) -> CleanupOutcome
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 CleanupOutcome
Auto Trait Implementations§
impl Freeze for CleanupOutcome
impl RefUnwindSafe for CleanupOutcome
impl Send for CleanupOutcome
impl Sync for CleanupOutcome
impl Unpin for CleanupOutcome
impl UnsafeUnpin for CleanupOutcome
impl UnwindSafe for CleanupOutcome
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