pub enum Layer3<'a> {
Arp(Arp),
IPv4(IPv4<'a>),
IPv6(IPv6<'a>),
}
Expand description
Available layer 3 representations
Variants§
Trait Implementations§
impl<'a> Copy for Layer3<'a>
Auto Trait Implementations§
impl<'a> Freeze for Layer3<'a>
impl<'a> RefUnwindSafe for Layer3<'a>
impl<'a> Send for Layer3<'a>
impl<'a> Sync for Layer3<'a>
impl<'a> Unpin for Layer3<'a>
impl<'a> UnwindSafe for Layer3<'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