pub struct Insertion { /* private fields */ }Expand description
An insertion in CRDT coordinates.
This struct is created by the inserted method on the
Replica owned by the peer that performed the insertion, and can be
integrated by another Replica via the
integrate_insertion method.
See the documentation of those methods for more information.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Insertion
impl<'de> Deserialize<'de> for Insertion
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 StructuralPartialEq for Insertion
Auto Trait Implementations§
impl Freeze for Insertion
impl RefUnwindSafe for Insertion
impl Send for Insertion
impl Sync for Insertion
impl Unpin for Insertion
impl UnwindSafe for Insertion
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