Trait netsim_embed::FromPacket 
pub trait FromPacket: Packet {
    type T;
    fn from_packet(&self) -> Self::T;
}Expand description
Used to convert on-the-wire packets to their #[packet] equivalent.
Required Associated Types§
type T
type T
The type of the packet to convert from.
Required Methods§
fn from_packet(&self) -> Self::T
fn from_packet(&self) -> Self::T
Converts a wire-format packet to #[packet] struct format.