[][src]Enum safe_nd::MapSeqEntryAction

pub enum MapSeqEntryAction {
    Ins(SeqValue),
    Update(SeqValue),
    Del(u64),
}

Action for a sequenced Entry.

Variants

Inserts a new sequenced entry.

Update(SeqValue)

Updates an entry with a new value and version.

Del(u64)

Deletes an entry.

Implementations

impl SeqEntryAction[src]

pub fn version(&self) -> u64[src]

Returns the version for this action.

pub fn set_version(&mut self, version: u64)[src]

Sets the version for this action.

Trait Implementations

impl Clone for SeqEntryAction[src]

impl Debug for SeqEntryAction[src]

impl<'de> Deserialize<'de> for SeqEntryAction[src]

impl Eq for SeqEntryAction[src]

impl Hash for SeqEntryAction[src]

impl Ord for SeqEntryAction[src]

impl PartialEq<SeqEntryAction> for SeqEntryAction[src]

impl PartialOrd<SeqEntryAction> for SeqEntryAction[src]

impl Serialize for SeqEntryAction[src]

impl StructuralEq for SeqEntryAction[src]

impl StructuralPartialEq for SeqEntryAction[src]

Auto Trait Implementations

Blanket Implementations

impl<A> Actor for A where
    A: Clone + Ord + Hash
[src]

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

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

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

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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<V, T> VZip<V> for T where
    V: MultiLane<T>,