[][src]Struct async_coap::datagram::DatagramRemoteEndpoint

pub struct DatagramRemoteEndpoint<US: AsyncDatagramSocket> { /* fields omitted */ }

Trait Implementations

impl<US: AsyncDatagramSocket> RemoteEndpoint for DatagramRemoteEndpoint<US>[src]

type SocketAddr = US::SocketAddr

The SocketAddr type to use with this local endpoint. This is usually simply std::net::SocketAddr, but may be different in some cases (like for CoAP-SMS endpoints). Read more

type InboundContext = DatagramInboundContext<Self::SocketAddr>

Type used by closure that is passed into send(), representing the context for the response. Read more

impl<US: Clone + AsyncDatagramSocket> Clone for DatagramRemoteEndpoint<US> where
    US::SocketAddr: Clone
[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<US: Debug + AsyncDatagramSocket> Debug for DatagramRemoteEndpoint<US> where
    US::SocketAddr: Debug
[src]

Auto Trait Implementations

impl<US> Unpin for DatagramRemoteEndpoint<US> where
    <US as DatagramSocketTypes>::SocketAddr: Unpin

impl<US> Sync for DatagramRemoteEndpoint<US> where
    <US as DatagramSocketTypes>::SocketAddr: Send + SocketAddrExt + Sync

impl<US> Send for DatagramRemoteEndpoint<US> where
    <US as DatagramSocketTypes>::SocketAddr: Send + SocketAddrExt

impl<US> UnwindSafe for DatagramRemoteEndpoint<US> where
    US: RefUnwindSafe,
    <US as DatagramSocketTypes>::SocketAddr: UnwindSafe

impl<US> RefUnwindSafe for DatagramRemoteEndpoint<US> where
    US: RefUnwindSafe,
    <US as DatagramSocketTypes>::SocketAddr: RefUnwindSafe

Blanket Implementations

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> 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> 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<V, T> VZip<V> for T where
    V: MultiLane<T>,