pub struct CleanupReport {
pub outcome: CleanupOutcome,
pub wipe: WipeEvidence,
pub physical_protection: PhysicalProtection,
pub accounting: AccountingPosture,
pub lifecycle: LifecyclePosture,
}Expand description
Redacted successful close report.
Fields§
§outcome: CleanupOutcomeFinal cleanup outcome.
wipe: WipeEvidenceWipe evidence established before close.
physical_protection: PhysicalProtectionFinal physical protection posture.
accounting: AccountingPostureFinal accounting posture.
lifecycle: LifecyclePostureFinal lifecycle posture.
Implementations§
Source§impl CleanupReport
impl CleanupReport
Sourcepub const fn snapshot(self) -> CleanupSnapshot
pub const fn snapshot(self) -> CleanupSnapshot
Returns a stable snapshot without retaining allocation identity.
Trait Implementations§
Source§impl Clone for CleanupReport
impl Clone for CleanupReport
Source§fn clone(&self) -> CleanupReport
fn clone(&self) -> CleanupReport
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 CleanupReport
Source§impl Debug for CleanupReport
impl Debug for CleanupReport
impl Eq for CleanupReport
Source§impl Hash for CleanupReport
impl Hash for CleanupReport
Source§impl PartialEq for CleanupReport
impl PartialEq for CleanupReport
impl StructuralPartialEq for CleanupReport
Auto Trait Implementations§
impl Freeze for CleanupReport
impl RefUnwindSafe for CleanupReport
impl Send for CleanupReport
impl Sync for CleanupReport
impl Unpin for CleanupReport
impl UnsafeUnpin for CleanupReport
impl UnwindSafe for CleanupReport
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