pub struct ID {
pub client: ClientID,
pub clock: u32,
}Expand description
Block identifier, which allows to uniquely identify any element insertion in a global scope (across different replicas of the same document). It consists of client ID (which is a unique document replica identifier) and monotonically incrementing clock value.
ID corresponds to a Lamport timestamp in terms of its properties and guarantees.
Fields§
§client: ClientIDUnique identifier of a client.
clock: u32Monotonically incrementing sequence number, which informs about order of inserted item
operation in a scope of a given client. This value doesn’t have to increase by 1, but
instead is increased by number of countable elements which make a content of an inserted
block.
Implementations§
Trait Implementations§
source§impl Ord for ID
impl Ord for ID
source§impl PartialOrd for ID
impl PartialOrd for ID
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Copy for ID
impl Eq for ID
impl StructuralEq for ID
impl StructuralPartialEq for ID
Auto Trait Implementations§
impl RefUnwindSafe for ID
impl Send for ID
impl Sync for ID
impl Unpin for ID
impl UnwindSafe for ID
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