#[non_exhaustive]pub enum CleanupOutcome {
Closed,
}Expand description
Redacted successful teardown outcome.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Closed
Every required stage completed.
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
Source§impl Debug for CleanupOutcome
impl Debug for CleanupOutcome
impl Eq for CleanupOutcome
Source§impl Hash for CleanupOutcome
impl Hash for CleanupOutcome
Source§impl PartialEq for CleanupOutcome
impl PartialEq for CleanupOutcome
impl StructuralPartialEq 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