[][src]Enum libp2p_mdns::service::MdnsPacket

pub enum MdnsPacket<'a> {
    Query(MdnsQuery<'a>),
    Response(MdnsResponse<'a>),
    ServiceDiscovery(MdnsServiceDiscovery<'a>),
}

A valid mDNS packet received by the service.

Variants

Query(MdnsQuery<'a>)

A query made by a remote.

Response(MdnsResponse<'a>)

A response sent by a remote in response to one of our queries.

ServiceDiscovery(MdnsServiceDiscovery<'a>)

A request for service discovery.

Trait Implementations

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

Auto Trait Implementations

impl<'a> Send for MdnsPacket<'a>

impl<'a> Sync for MdnsPacket<'a>

Blanket Implementations

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

impl<T> From<T> for 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.

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

impl<T> Borrow<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<T> Erased for T