pub enum AssetChange {
Added(PathBuf),
Changed(PathBuf),
Deleted(PathBuf),
Unchanged(PathBuf),
}Expand description
Content change for one asset between two snapshots.
Variants§
Added(PathBuf)
Asset exists only in the after snapshot.
Changed(PathBuf)
Asset exists in both snapshots but has a different content hash.
Deleted(PathBuf)
Asset exists only in the before snapshot.
Unchanged(PathBuf)
Asset exists in both snapshots with the same content hash.
Implementations§
Trait Implementations§
Source§impl Clone for AssetChange
impl Clone for AssetChange
Source§fn clone(&self) -> AssetChange
fn clone(&self) -> AssetChange
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 AssetChange
impl Debug for AssetChange
Source§impl<'de> Deserialize<'de> for AssetChange
impl<'de> Deserialize<'de> for AssetChange
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 AssetChange
Source§impl PartialEq for AssetChange
impl PartialEq for AssetChange
Source§fn eq(&self, other: &AssetChange) -> bool
fn eq(&self, other: &AssetChange) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AssetChange
impl Serialize for AssetChange
impl StructuralPartialEq for AssetChange
Auto Trait Implementations§
impl Freeze for AssetChange
impl RefUnwindSafe for AssetChange
impl Send for AssetChange
impl Sync for AssetChange
impl Unpin for AssetChange
impl UnsafeUnpin for AssetChange
impl UnwindSafe for AssetChange
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§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.