pub struct PathUpdate {
pub path: String,
pub versions: Vec<Entry>,
pub seen: VersionVector,
}Expand description
A path’s replicated state: its sibling versions and everything merged so far.
Fields§
§path: String§versions: Vec<Entry>§seen: VersionVectorTrait Implementations§
Source§impl Clone for PathUpdate
impl Clone for PathUpdate
Source§fn clone(&self) -> PathUpdate
fn clone(&self) -> PathUpdate
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 PathUpdate
impl Debug for PathUpdate
Source§impl<'de> Deserialize<'de> for PathUpdate
impl<'de> Deserialize<'de> for PathUpdate
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 PathUpdate
Source§impl PartialEq for PathUpdate
impl PartialEq for PathUpdate
Source§impl Serialize for PathUpdate
impl Serialize for PathUpdate
impl StructuralPartialEq for PathUpdate
Auto Trait Implementations§
impl Freeze for PathUpdate
impl RefUnwindSafe for PathUpdate
impl Send for PathUpdate
impl Sync for PathUpdate
impl Unpin for PathUpdate
impl UnsafeUnpin for PathUpdate
impl UnwindSafe for PathUpdate
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