[][src]Enum domain::base::record::RecordParseError

pub enum RecordParseError<N, D> {
    Name(N),
    Data(D),
    ShortBuf,
}

Variants

Name(N)
Data(D)
ShortBuf

Trait Implementations

impl<N: Clone, D: Clone> Clone for RecordParseError<N, D>[src]

impl<N: Copy, D: Copy> Copy for RecordParseError<N, D>[src]

impl<N: Debug, D: Debug> Debug for RecordParseError<N, D>[src]

impl<N, D> Display for RecordParseError<N, D> where
    N: Display,
    D: Display
[src]

impl<N: Eq, D: Eq> Eq for RecordParseError<N, D>[src]

impl<N, D> Error for RecordParseError<N, D> where
    N: Error,
    D: Error
[src]

impl<N, D> From<ShortBuf> for RecordParseError<N, D>[src]

impl<N: PartialEq, D: PartialEq> PartialEq<RecordParseError<N, D>> for RecordParseError<N, D>[src]

impl<N, D> StructuralEq for RecordParseError<N, D>[src]

impl<N, D> StructuralPartialEq for RecordParseError<N, D>[src]

Auto Trait Implementations

impl<N, D> RefUnwindSafe for RecordParseError<N, D> where
    D: RefUnwindSafe,
    N: RefUnwindSafe

impl<N, D> Send for RecordParseError<N, D> where
    D: Send,
    N: Send

impl<N, D> Sync for RecordParseError<N, D> where
    D: Sync,
    N: Sync

impl<N, D> Unpin for RecordParseError<N, D> where
    D: Unpin,
    N: Unpin

impl<N, D> UnwindSafe for RecordParseError<N, D> where
    D: UnwindSafe,
    N: UnwindSafe

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<T> From<T> for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,