[][src]Enum listinfo::EntryData

pub enum EntryData<'a> {
    Scalar(&'a str),
    SubEntry(SubEntry<'a>),
}

Represents an item data value of an entry.

Variants

Scalar(&'a str)

A scalar string entry

SubEntry(SubEntry<'a>)

A sub-entry (such as rom, for example)

Trait Implementations

impl<'a> Debug for EntryData<'a>[src]

impl<'de> Deserializer<'de> for &'de EntryData<'de>[src]

type Error = Error

The error type that can be returned if some error occurs during deserialization. Read more

impl<'a> Eq for EntryData<'a>[src]

impl<'de> IntoDeserializer<'de, Error> for &'de EntryData<'de>[src]

type Deserializer = &'de EntryData<'de>

The type of the deserializer being converted into.

impl<'a> PartialEq<EntryData<'a>> for EntryData<'a>[src]

impl<'a> StructuralEq for EntryData<'a>[src]

impl<'a> StructuralPartialEq for EntryData<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for EntryData<'a>

impl<'a> Send for EntryData<'a>

impl<'a> Sync for EntryData<'a>

impl<'a> Unpin for EntryData<'a>

impl<'a> UnwindSafe for EntryData<'a>

Blanket Implementations

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

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

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.