pub struct SnapshotDiff {
pub from_id: String,
pub to_id: String,
pub summary: DiffSummary,
pub changes: Vec<Change>,
}Expand description
A diff between two snapshots
Fields§
§from_id: String§to_id: String§summary: DiffSummary§changes: Vec<Change>Implementations§
Trait Implementations§
Source§impl Debug for SnapshotDiff
impl Debug for SnapshotDiff
Source§impl<'de> Deserialize<'de> for SnapshotDiff
impl<'de> Deserialize<'de> for SnapshotDiff
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 SnapshotDiff
impl RefUnwindSafe for SnapshotDiff
impl Send for SnapshotDiff
impl Sync for SnapshotDiff
impl Unpin for SnapshotDiff
impl UnwindSafe for SnapshotDiff
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