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