pub enum IosAssetAnomaly {
DeletionTimeMissing {
evidence: String,
},
ExpiredResidue {
evidence: String,
},
}Expand description
An iOS Photos trashed-asset anomaly, with the offending asset reference.
Variants§
DeletionTimeMissing
The asset is flagged trashed but carries no ZTRASHEDDATE — the deletion
time is unknown (broken/old-schema/tampered).
ExpiredResidue
The asset is still in Recently Deleted past its retention window — it outlived the nominal 30-day purge and remains recoverable.
Trait Implementations§
Source§impl Clone for IosAssetAnomaly
impl Clone for IosAssetAnomaly
Source§fn clone(&self) -> IosAssetAnomaly
fn clone(&self) -> IosAssetAnomaly
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 moreSource§impl Debug for IosAssetAnomaly
impl Debug for IosAssetAnomaly
impl Eq for IosAssetAnomaly
Source§impl PartialEq for IosAssetAnomaly
impl PartialEq for IosAssetAnomaly
Source§fn eq(&self, other: &IosAssetAnomaly) -> bool
fn eq(&self, other: &IosAssetAnomaly) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for IosAssetAnomaly
Auto Trait Implementations§
impl Freeze for IosAssetAnomaly
impl RefUnwindSafe for IosAssetAnomaly
impl Send for IosAssetAnomaly
impl Sync for IosAssetAnomaly
impl Unpin for IosAssetAnomaly
impl UnsafeUnpin for IosAssetAnomaly
impl UnwindSafe for IosAssetAnomaly
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