pub enum Protocol {
HopByHop,
Icmp,
Igmp,
Tcp,
Udp,
Ipv6Route,
Ipv6Frag,
Icmpv6,
Ipv6NoNxt,
Ipv6Opts,
Unknown(u8),
}
Expand description
IP datagram encapsulated protocol.
Variants§
HopByHop
Icmp
Igmp
Tcp
Udp
Ipv6Route
Ipv6Frag
Icmpv6
Ipv6NoNxt
Ipv6Opts
Unknown(u8)
A value whose interpretation was not determined.
There are two common cases where this is necessary: To represent a parsed valued
from an unknown source which might be faulty or from an unsupported standard
version; Or to encode an arbitrary user supplied value in such fields to allow
extensions that are not supported in ethox
itself.
Trait Implementations§
Source§impl Ord for Protocol
impl Ord for Protocol
Source§impl PartialOrd for Protocol
impl PartialOrd for Protocol
impl Copy for Protocol
impl Eq for Protocol
impl StructuralPartialEq for Protocol
Auto Trait Implementations§
impl Freeze for Protocol
impl RefUnwindSafe for Protocol
impl Send for Protocol
impl Sync for Protocol
impl Unpin for Protocol
impl UnwindSafe for Protocol
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