pub struct RevisionHash(/* private fields */);
Expand description
RevisionHash is an integer summary of the contents of a data structure, based on hashing, intended to be used in distinguishing whether data structures have changed or not.
Implementations§
Source§impl RevisionHash
impl RevisionHash
Trait Implementations§
Source§impl Clone for RevisionHash
impl Clone for RevisionHash
Source§fn clone(&self) -> RevisionHash
fn clone(&self) -> RevisionHash
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 RevisionHash
impl Debug for RevisionHash
Source§impl Hash for RevisionHash
impl Hash for RevisionHash
Source§impl PartialEq for RevisionHash
impl PartialEq for RevisionHash
impl Copy for RevisionHash
impl Eq for RevisionHash
impl StructuralPartialEq for RevisionHash
Auto Trait Implementations§
impl Freeze for RevisionHash
impl RefUnwindSafe for RevisionHash
impl Send for RevisionHash
impl Sync for RevisionHash
impl Unpin for RevisionHash
impl UnwindSafe for RevisionHash
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