[][src]Struct lib3h_mdns::error::MulticastDnsError

pub struct MulticastDnsError(_);

An error that can occur when interacting with the algorithm.

Methods

impl MulticastDnsError[src]

pub fn new(kind: ErrorKind) -> Self[src]

A constructor for MulticastDnsError.

pub fn new_other(s: &str) -> Self[src]

Helper function to build a new error with an Other ErrorKind.

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

Return the specific type of this error.

pub fn into_kind(self) -> ErrorKind[src]

Unwrap this error into its underlying type.

Trait Implementations

impl From<Error> for MulticastDnsError[src]

impl From<NoneError> for MulticastDnsError[src]

impl From<AddrParseError> for MulticastDnsError[src]

impl From<Error> for MulticastDnsError[src]

impl From<Utf8Error> for MulticastDnsError[src]

impl From<DiscoveryError> for MulticastDnsError[src]

impl From<MulticastDnsError> for DiscoveryError[src]

impl Display for MulticastDnsError[src]

impl Debug for MulticastDnsError[src]

impl Error for MulticastDnsError[src]

fn source(&self) -> Option<&(dyn StdError + 'static)>[src]

The lower-level source of this error, if any.

Auto Trait Implementations

Blanket Implementations

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

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

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<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

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