[][src]Enum sn_data_types::MapEntries

pub enum MapEntries {
    Seq(SeqEntries),
    Unseq(UnseqEntries),
}

Wrapper type for entries, which can be sequenced or unsequenced.

Variants

Sequenced entries.

Unsequenced entries.

Trait Implementations

impl Clone for Entries[src]

impl Debug for Entries[src]

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

impl Eq for Entries[src]

impl From<BTreeMap<Vec<u8>, SeqValue>> for Entries[src]

impl From<BTreeMap<Vec<u8>, Vec<u8>>> for Entries[src]

impl Hash for Entries[src]

impl Ord for Entries[src]

impl PartialEq<Entries> for Entries[src]

impl PartialOrd<Entries> for Entries[src]

impl Serialize for Entries[src]

impl StructuralEq for Entries[src]

impl StructuralPartialEq for Entries[src]

impl TryFrom<QueryResponse> for MapEntries[src]

type Error = TryFromError

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for Entries

impl Send for Entries

impl Sync for Entries

impl Unpin for Entries

impl UnwindSafe for Entries

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>,