pub struct LastPrune {
pub at: DateTime<Utc>,
pub dirs: Vec<PrunedDir>,
}Expand description
What the most recent prune pass deleted, for devp restore --last-run.
Only passes that actually deleted something are recorded. A later run that frees nothing — everything was active, everything was already clean — leaves this alone, because “put back what you just took” should still mean the pass that took something.
Fields§
§at: DateTime<Utc>When the pass ran.
dirs: Vec<PrunedDir>Every directory it removed.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for LastPrune
impl<'de> Deserialize<'de> for LastPrune
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for LastPrune
impl StructuralPartialEq for LastPrune
Auto Trait Implementations§
impl Freeze for LastPrune
impl RefUnwindSafe for LastPrune
impl Send for LastPrune
impl Sync for LastPrune
impl Unpin for LastPrune
impl UnsafeUnpin for LastPrune
impl UnwindSafe for LastPrune
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more