IcmpCountersIpExt

Trait IcmpCountersIpExt 

Source
pub trait IcmpCountersIpExt: Ip {
    type DestUnreachableCounters<C: CounterRepr>: Inspectable + Default;
    type TimeExceededCounters<C: CounterRepr>: Inspectable + Default;
    type ParameterProblemCounters<C: CounterRepr>: Inspectable + Default;
}
Expand description

An IP Extension trait for ICMP Counters.

Required Associated Types§

Source

type DestUnreachableCounters<C: CounterRepr>: Inspectable + Default

Counters for the ICMP Dest Unreachable message type.

Source

type TimeExceededCounters<C: CounterRepr>: Inspectable + Default

Counters for the ICMP Time Exceeded message type.

Source

type ParameterProblemCounters<C: CounterRepr>: Inspectable + Default

Counters for the ICMP Parameter Problem message type.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl IcmpCountersIpExt for Ipv4

Source§

impl IcmpCountersIpExt for Ipv6

Implementors§