SequenceOp

Type Alias SequenceOp 

Source
pub type SequenceOp<T> = CrdtOperation<String, T>;
Expand description

Data mutation operation to apply to Sequence.

Aliased Type§

pub struct SequenceOp<T> {
    pub address: Address,
    pub crdt_op: Op<T, String>,
    pub source: PublicKey,
    pub signature: Option<Signature>,
}

Fields§

§address: Address

Address of a Sequence object on the network.

§crdt_op: Op<T, String>

The data operation to apply.

§source: PublicKey

The PublicKey of the entity that generated the operation

§signature: Option<Signature>

The signature of source on the crdt_top, required to apply the op