1pub mod ethernet; 2 3pub use ethernet::Ethernet as Ethernet; 4 5/// 6/// Layer2 types that can be parsed 7/// 8#[derive(Clone, Debug)] 9pub enum Layer2<'a> { 10 Ethernet(ethernet::Ethernet<'a>), 11}