//! Packet dissection module
//!
//! Provides zero-copy packet dissection from Ethernet to upper layers.
/// Trait for dissecting packet layers
///
/// Implement this trait to add support for dissecting protocol layers.
/// The implementation should borrow from the packet data without copying.
/// Result type alias for dissection
pub type DissectResult<T> = ;