[][src]Enum nng::options::MaxTtl

pub enum MaxTtl {}

The maximum number of "hops" a message may traverse.

The intention here is to prevent forwarding loops in device chains. Note that not all protocols support this option and those that do generally have a default value of 8.

Each node along a forwarding path may have its own value for the maximum time-to-live, and performs its own checks before forwarding a message. Therefore it is helpful if all nodes in the topology use the same value for this option.

Support

  • Sockets can use this with the following protocols:
    • Pair v1
    • Rep v0
    • Req v0
    • Surveyor v0
    • Respondent v0
  • Dialers and Listeners can retrieve it from their owning Socket, if applicable.

Trait Implementations

impl Opt for MaxTtl[src]

type OptType = u8

The type that the option read and writes.

impl GetOpt<MaxTtl> for Dialer[src]

impl GetOpt<MaxTtl> for DialerOptions[src]

impl GetOpt<MaxTtl> for Listener[src]

impl GetOpt<MaxTtl> for ListenerOptions[src]

impl GetOpt<MaxTtl> for Socket[src]

impl SetOpt<MaxTtl> for Socket[src]

impl Clone for MaxTtl[src]

impl Copy for MaxTtl[src]

impl Eq for MaxTtl[src]

impl Ord for MaxTtl[src]

impl PartialEq<MaxTtl> for MaxTtl[src]

impl PartialOrd<MaxTtl> for MaxTtl[src]

impl Debug for MaxTtl[src]

impl Display for MaxTtl[src]

impl Hash for MaxTtl[src]

impl StructuralPartialEq for MaxTtl[src]

impl StructuralEq for MaxTtl[src]

Auto Trait Implementations

impl Send for MaxTtl

impl Sync for MaxTtl

impl Unpin for MaxTtl

impl UnwindSafe for MaxTtl

impl RefUnwindSafe for MaxTtl

Blanket Implementations

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 = !

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]