pub struct GSet<T: Ord> { /* private fields */ }Expand description
A grow-only set: merge = union.
This mirrors the upstream crdt-lean G-Set carrier (Finset α).
Implementations§
Trait Implementations§
Source§impl<T: Ord + Clone> Crdt for GSet<T>
impl<T: Ord + Clone> Crdt for GSet<T>
type Delta = T
fn apply_delta(&mut self, delta: Self::Delta)
Source§fn replica_count(&self) -> Option<usize>
fn replica_count(&self) -> Option<usize>
Fixed replica domain, or
None for CRDTs without a fixed arity.impl<T: Eq + Ord> Eq for GSet<T>
impl<T: PartialEq + Ord> StructuralPartialEq for GSet<T>
Source§impl WireDecode for GSet<u64>
impl WireDecode for GSet<u64>
fn decode_wire(cursor: &mut WireCursor<'_>) -> Result<Self, WireError>
fn from_wire_bytes(bytes: &[u8]) -> Result<Self, WireError>
Source§impl WireEncode for GSet<u64>
impl WireEncode for GSet<u64>
fn encode_wire(&self, out: &mut Vec<u8>) -> Result<(), WireError>
fn to_wire_bytes(&self) -> Result<Vec<u8>, WireError>
Source§impl WireSchema for GSet<u64>
impl WireSchema for GSet<u64>
const REQUIRES_ARITY: bool = false
fn wire_schema() -> Vec<u8> ⓘ
Auto Trait Implementations§
impl<T> Freeze for GSet<T>
impl<T> RefUnwindSafe for GSet<T>where
T: RefUnwindSafe,
impl<T> Send for GSet<T>where
T: Send,
impl<T> Sync for GSet<T>where
T: Sync,
impl<T> Unpin for GSet<T>
impl<T> UnsafeUnpin for GSet<T>
impl<T> UnwindSafe for GSet<T>where
T: RefUnwindSafe,
Blanket Implementations§
Source§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
Source§fn type_id(&self) -> TypeId
fn type_id(&self) -> TypeId
Gets the
TypeId of self. Read moreSource§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
Source§fn borrow(&self) -> &T
fn borrow(&self) -> &T
Immutably borrows from an owned value. Read more
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,
Source§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)Performs copy-assignment from
self to dest. Read moreSource§impl<T, U> Into<U> for Twhere
U: From<T>,
impl<T, U> Into<U> for Twhere
U: From<T>,
Source§fn into(self) -> U
fn into(self) -> U
Calls U::from(self).
That is, this conversion is whatever the implementation of
From<T> for U chooses to do.