Enum nng::options::SocketName[][src]

pub enum SocketName {}

The socket name.

By default this is a string corresponding to the value of the socket. The string must fit within 63-bytes but it can be changed for other application uses.

Support

  • Sockets can utilize this value.
  • Dialers and Listeners can retrieve it from their owning Socket.

Trait Implementations

impl Clone for SocketName[src]

impl Copy for SocketName[src]

impl Debug for SocketName[src]

impl Display for SocketName[src]

impl Eq for SocketName[src]

impl GetOpt<SocketName> for Dialer[src]

impl GetOpt<SocketName> for DialerBuilder[src]

impl GetOpt<SocketName> for Listener[src]

impl GetOpt<SocketName> for ListenerBuilder[src]

impl GetOpt<SocketName> for Socket[src]

impl Hash for SocketName[src]

impl Opt for SocketName[src]

type OptType = String

The type that the option read and writes.

impl Ord for SocketName[src]

impl PartialEq<SocketName> for SocketName[src]

impl PartialOrd<SocketName> for SocketName[src]

impl SetOpt<SocketName> for Socket[src]

impl StructuralEq for SocketName[src]

impl StructuralPartialEq for SocketName[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.