[][src]Enum safe_nd::MapEntryActions

pub enum MapEntryActions {
    Seq(SeqEntryActions),
    Unseq(UnseqEntryActions),
}

Wrapper type for entry actions, which can be sequenced or unsequenced.

Variants

Sequenced entry actions.

Unsequenced entry actions.

Implementations

impl EntryActions[src]

pub fn kind(&self) -> Kind[src]

Gets the kind.

Trait Implementations

impl Clone for EntryActions[src]

impl Debug for EntryActions[src]

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

impl Eq for EntryActions[src]

impl From<SeqEntryActions> for EntryActions[src]

impl From<UnseqEntryActions> for EntryActions[src]

impl Hash for EntryActions[src]

impl Ord for EntryActions[src]

impl PartialEq<EntryActions> for EntryActions[src]

impl PartialOrd<EntryActions> for EntryActions[src]

impl Serialize for EntryActions[src]

impl StructuralEq for EntryActions[src]

impl StructuralPartialEq for EntryActions[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>,