Trait crdts::Actor

source ·
pub trait Actor: Ord + Clone + Hash { }
Expand description

Common Actor type. Actors are unique identifier for every thing mutating a VClock. VClock based CRDT’s will need to expose this Actor type to the user.

Implementors§

source§

impl<A: Ord + Clone + Hash> Actor for A