Trait fibers_transport::UdpTransport[][src]

pub trait UdpTransport: Transport<PeerAddr = SocketAddr> {
    fn local_addr(&self) -> SocketAddr;
}

This trait indicates that the implementation implements UDP.

Required Methods

Returns the address to which the instance is bound.

Implementors