pub struct RollbackEntry {
pub path: PathBuf,
pub timestamp: String,
pub file_count: usize,
pub description: String,
}Expand description
An entry in the rollback history.
Fields§
§path: PathBufPath to the rollback JSON file.
timestamp: StringISO-8601 timestamp of when the rollback was created.
file_count: usizeNumber of files affected.
description: StringHuman-readable description.
Trait Implementations§
Source§impl Clone for RollbackEntry
impl Clone for RollbackEntry
Source§fn clone(&self) -> RollbackEntry
fn clone(&self) -> RollbackEntry
Returns a duplicate of the value. Read more
1.0.0 · 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 RollbackEntry
impl Debug for RollbackEntry
Source§impl<'de> Deserialize<'de> for RollbackEntry
impl<'de> Deserialize<'de> for RollbackEntry
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
Auto Trait Implementations§
impl Freeze for RollbackEntry
impl RefUnwindSafe for RollbackEntry
impl Send for RollbackEntry
impl Sync for RollbackEntry
impl Unpin for RollbackEntry
impl UnsafeUnpin for RollbackEntry
impl UnwindSafe for RollbackEntry
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,
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