pnet_layers 0.1.0

A scapy like wrapper around the pnet crate to easily parse, craft or manipulate network packets in Rust.
Documentation
1
2
3
4
5
/// A function that create a string representation of the underlining packet
pub trait PacketShow {
    /// Returns a string representation of the packet
    fn show(&self) -> String;
}