Trait WithTimeExceeded

Source
pub trait WithTimeExceeded {
    type Packet;

    // Required method
    fn with_time_exceeded(
        code: u8,
        packet: Vec<u8>,
    ) -> Result<Self::Packet, IcmpPacketBuildError>;
}
Expand description

Construct a packet for Time Exceeded messages.

Required Associated Types§

Required Methods§

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.

Implementors§