pub trait IntoPacket {
// Required method
fn into_packet(self) -> Packet;
}Expand description
Conversion into a packet stack used by composition helpers.
Required Methods§
Sourcefn into_packet(self) -> Packet
fn into_packet(self) -> Packet
Convert this value into a packet.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".