pub struct CleanupSnapshot {
pub wipe: &'static str,
pub physical_protection: &'static str,
pub accounting: &'static str,
pub lifecycle: &'static str,
pub allocation: &'static str,
pub pending_stage: Option<&'static str>,
pub pending_substage: Option<&'static str>,
pub provider_health: Option<&'static str>,
pub retry_attempt: Option<usize>,
}Expand description
Stable redacted teardown snapshot.
Fields§
§wipe: &'static strStable wipe evidence identifier.
physical_protection: &'static strStable physical protection identifier.
accounting: &'static strStable accounting identifier.
lifecycle: &'static strStable lifecycle identifier.
allocation: &'static strAddress-free allocation-presence identifier.
pending_stage: Option<&'static str>Earliest pending teardown stage, if any.
pending_substage: Option<&'static str>Redacted provider substage, if any.
provider_health: Option<&'static str>Provider health after failure, if applicable.
retry_attempt: Option<usize>Retry attempt, if applicable.
Trait Implementations§
Source§impl Clone for CleanupSnapshot
impl Clone for CleanupSnapshot
Source§fn clone(&self) -> CleanupSnapshot
fn clone(&self) -> CleanupSnapshot
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 CleanupSnapshot
Source§impl Debug for CleanupSnapshot
impl Debug for CleanupSnapshot
impl Eq for CleanupSnapshot
Source§impl PartialEq for CleanupSnapshot
impl PartialEq for CleanupSnapshot
impl StructuralPartialEq for CleanupSnapshot
Auto Trait Implementations§
impl Freeze for CleanupSnapshot
impl RefUnwindSafe for CleanupSnapshot
impl Send for CleanupSnapshot
impl Sync for CleanupSnapshot
impl Unpin for CleanupSnapshot
impl UnsafeUnpin for CleanupSnapshot
impl UnwindSafe for CleanupSnapshot
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