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§
Sourcetype DestUnreachableCounters<C: CounterRepr>: Inspectable + Default
type DestUnreachableCounters<C: CounterRepr>: Inspectable + Default
Counters for the ICMP Dest Unreachable message type.
Sourcetype TimeExceededCounters<C: CounterRepr>: Inspectable + Default
type TimeExceededCounters<C: CounterRepr>: Inspectable + Default
Counters for the ICMP Time Exceeded message type.
Sourcetype ParameterProblemCounters<C: CounterRepr>: Inspectable + Default
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.