pub struct CleanupError {
pub pending_stage: PendingStage,
pub wipe: WipeEvidence,
pub physical_protection: PhysicalProtection,
pub accounting: AccountingPosture,
pub lifecycle: LifecyclePosture,
pub pending_substage: JournalDisposition,
pub retry_attempt: usize,
pub provider_health: ProviderHealth,
}Expand description
Redacted cleanup failure after ownership transferred to the provider.
Fields§
§pending_stage: PendingStageEarliest stage that remains incomplete.
wipe: WipeEvidenceStrongest wipe evidence actually established.
physical_protection: PhysicalProtectionLast honest physical protection posture.
accounting: AccountingPostureConservative accounting posture.
lifecycle: LifecyclePostureProvider-owned terminal lifecycle.
pending_substage: JournalDispositionRedacted provider journal disposition at the pending stage.
retry_attempt: usizeRetry attempt charged by the transfer.
provider_health: ProviderHealthProvider health after the failure.
Implementations§
Source§impl CleanupError
impl CleanupError
Sourcepub const fn snapshot(self) -> CleanupSnapshot
pub const fn snapshot(self) -> CleanupSnapshot
Returns a stable redacted snapshot without an allocation address.
Trait Implementations§
Source§impl Clone for CleanupError
impl Clone for CleanupError
Source§fn clone(&self) -> CleanupError
fn clone(&self) -> CleanupError
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 CleanupError
Source§impl Debug for CleanupError
impl Debug for CleanupError
Source§impl Display for CleanupError
impl Display for CleanupError
impl Eq for CleanupError
Source§impl Error for CleanupError
Available on crate feature std only.
impl Error for CleanupError
Available on crate feature
std only.1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl Hash for CleanupError
impl Hash for CleanupError
Source§impl PartialEq for CleanupError
impl PartialEq for CleanupError
impl StructuralPartialEq for CleanupError
Auto Trait Implementations§
impl Freeze for CleanupError
impl RefUnwindSafe for CleanupError
impl Send for CleanupError
impl Sync for CleanupError
impl Unpin for CleanupError
impl UnsafeUnpin for CleanupError
impl UnwindSafe for CleanupError
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