[][src]Struct crdts::gset::GSet

pub struct GSet<T: Ord> { /* fields omitted */ }

A GSet is a grow-only set.

Methods

impl<T: Ord> GSet<T>[src]

pub fn new() -> Self[src]

Instantiates an empty GSet.

pub fn insert(&mut self, element: T)[src]

Inserts an element into this GSet.

Examples

use crdts::GSet;
let mut a = GSet::new();
a.insert(1);
assert!(a.contains(&1));

pub fn contains(&self, element: &T) -> bool[src]

Returns true if the GSet contains the element.

Examples

use crdts::GSet;
let mut a = GSet::new();
a.insert(1);
assert!(a.contains(&1));

Trait Implementations

impl<T: Ord + Clone> CvRDT for GSet<T>[src]

fn merge(&mut self, other: Self)[src]

Merges another GSet into this one.

Examples

use crdts::{GSet, CvRDT, CmRDT};
let (mut a, mut b) = (GSet::new(), GSet::new());
a.insert(1);
b.insert(2);
a.merge(b);
assert!(a.contains(&1));
assert!(a.contains(&2));

impl<T: Ord + Debug> CmRDT for GSet<T>[src]

type Op = T

Op defines a mutation to the CRDT. As long as Op's from one actor are replayed in exactly the same order they were generated by that actor, the CRDT will converge. In other words, we must have a total ordering on each actors operations, while requiring only a partial order over all ops. E.g. Read more

impl<T: Clone + Ord> Clone for GSet<T>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<T: Eq + Ord> Eq for GSet<T>[src]

impl<T: Ord> Default for GSet<T>[src]

impl<T: PartialEq + Ord> PartialEq<GSet<T>> for GSet<T>[src]

impl<T: Hash + Ord> Hash for GSet<T>[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl<T: Debug + Ord> Debug for GSet<T>[src]

impl<T: Ord> Serialize for GSet<T> where
    T: Serialize
[src]

impl<'de, T: Ord> Deserialize<'de> for GSet<T> where
    T: Deserialize<'de>, 
[src]

Auto Trait Implementations

impl<T> Sync for GSet<T> where
    T: Sync

impl<T> Unpin for GSet<T> where
    T: Unpin

impl<T> Send for GSet<T> where
    T: Send

impl<T> UnwindSafe for GSet<T> where
    T: RefUnwindSafe + UnwindSafe

impl<T> RefUnwindSafe for GSet<T> where
    T: RefUnwindSafe

Blanket Implementations

impl<T> Val for T where
    T: PartialEq<T> + Clone + Debug
[src]

impl<T> Val for T where
    T: Clone + Debug
[src]

impl<T> Member for T where
    T: Eq + Clone + Hash + Debug
[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]