[][src]Enum domain::base::name::RelativeDnameError

pub enum RelativeDnameError {
    BadLabel(LabelTypeError),
    CompressedName,
    ShortInput,
    LongName,
    AbsoluteName,
}

An error happened while creating a domain name from octets.

Variants

BadLabel(LabelTypeError)

A bad label was encountered.

CompressedName

A compressed name was encountered.

ShortInput

The data ended before the end of a label.

LongName

The domain name was longer than 255 octets.

AbsoluteName

The root label was encountered.

Trait Implementations

impl Clone for RelativeDnameError[src]

impl Copy for RelativeDnameError[src]

impl Debug for RelativeDnameError[src]

impl Display for RelativeDnameError[src]

impl Eq for RelativeDnameError[src]

impl Error for RelativeDnameError[src]

impl From<LabelTypeError> for RelativeDnameError[src]

impl From<SplitLabelError> for RelativeDnameError[src]

impl PartialEq<RelativeDnameError> for RelativeDnameError[src]

impl StructuralEq for RelativeDnameError[src]

impl StructuralPartialEq for RelativeDnameError[src]

Auto Trait Implementations

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