pub enum Layer4<'a> {
Tcp(Tcp<'a>),
Udp(Udp<'a>),
Vxlan(Vxlan<'a>),
}
Expand description
Available Layer 4 representations
Variants§
Implementations§
Trait Implementations§
impl<'a> Copy for Layer4<'a>
Auto Trait Implementations§
impl<'a> Freeze for Layer4<'a>
impl<'a> RefUnwindSafe for Layer4<'a>
impl<'a> Send for Layer4<'a>
impl<'a> Sync for Layer4<'a>
impl<'a> Unpin for Layer4<'a>
impl<'a> UnwindSafe for Layer4<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more