pub enum Icmpv4PacketRaw<B: SplitByteSlice> {
    EchoReply(IcmpPacketRaw<Ipv4, B, IcmpEchoReply>),
    DestUnreachable(IcmpPacketRaw<Ipv4, B, IcmpDestUnreachable>),
    Redirect(IcmpPacketRaw<Ipv4, B, Icmpv4Redirect>),
    EchoRequest(IcmpPacketRaw<Ipv4, B, IcmpEchoRequest>),
    TimeExceeded(IcmpPacketRaw<Ipv4, B, IcmpTimeExceeded>),
    ParameterProblem(IcmpPacketRaw<Ipv4, B, Icmpv4ParameterProblem>),
    TimestampRequest(IcmpPacketRaw<Ipv4, B, Icmpv4TimestampRequest>),
    TimestampReply(IcmpPacketRaw<Ipv4, B, Icmpv4TimestampReply>),
}Expand description
A raw ICMPv4 packet with a dynamic message type.
Unlike IcmpPacketRaw, Packet only supports ICMPv4, and does not
require a static message type. Each enum variant contains an IcmpPacketRaw
of the appropriate static type, making it easier to call parse without
knowing the message type ahead of time while still getting the benefits of a
statically-typed packet struct after parsing is complete.
Variants§
EchoReply(IcmpPacketRaw<Ipv4, B, IcmpEchoReply>)
DestUnreachable(IcmpPacketRaw<Ipv4, B, IcmpDestUnreachable>)
Redirect(IcmpPacketRaw<Ipv4, B, Icmpv4Redirect>)
EchoRequest(IcmpPacketRaw<Ipv4, B, IcmpEchoRequest>)
TimeExceeded(IcmpPacketRaw<Ipv4, B, IcmpTimeExceeded>)
ParameterProblem(IcmpPacketRaw<Ipv4, B, Icmpv4ParameterProblem>)
TimestampRequest(IcmpPacketRaw<Ipv4, B, Icmpv4TimestampRequest>)
TimestampReply(IcmpPacketRaw<Ipv4, B, Icmpv4TimestampReply>)
Trait Implementations§
Source§impl<I: IcmpIpExt, B: SplitByteSliceMut> GenericOverIp<I> for Icmpv4PacketRaw<B>
 
impl<I: IcmpIpExt, B: SplitByteSliceMut> GenericOverIp<I> for Icmpv4PacketRaw<B>
Source§type Type = <I as IcmpIpExt>::IcmpPacketTypeRaw<B>
 
type Type = <I as IcmpIpExt>::IcmpPacketTypeRaw<B>
The type of 
Self when its IP-generic parameter is replaced with the
type NewIp.Source§impl<B: SplitByteSliceMut> IcmpPacketTypeRaw<B, Ipv4> for Icmpv4PacketRaw<B>
 
impl<B: SplitByteSliceMut> IcmpPacketTypeRaw<B, Ipv4> for Icmpv4PacketRaw<B>
Source§fn update_checksum_pseudo_header_address(
    &mut self,
    old: Ipv4Addr,
    new: Ipv4Addr,
)
 
fn update_checksum_pseudo_header_address( &mut self, old: Ipv4Addr, new: Ipv4Addr, )
Update the checksum to reflect an updated address in the pseudo header.
Source§fn update_checksum_header_field<F: IntoBytes + Immutable>(
    &mut self,
    old: F,
    new: F,
)
 
fn update_checksum_header_field<F: IntoBytes + Immutable>( &mut self, old: F, new: F, )
Update the checksum to reflect a field change in the header. Read more
Source§fn try_write_checksum(&mut self, src_addr: Ipv4Addr, dst_addr: Ipv4Addr) -> bool
 
fn try_write_checksum(&mut self, src_addr: Ipv4Addr, dst_addr: Ipv4Addr) -> bool
Recalculates and attempts to write a checksum for this packet. Read more
Source§fn message_body_mut(&mut self) -> &mut B
 
fn message_body_mut(&mut self) -> &mut B
Returns a mutable reference to the body of this packet.
Source§fn update_checksum_header_field_u16(&mut self, old: u16, new: u16)
 
fn update_checksum_header_field_u16(&mut self, old: u16, new: u16)
Like 
IcmpPacketTypeRaw::update_checksum_header_field, but takes
native endian u16s.Source§impl<B: SplitByteSlice> ParsablePacket<B, ()> for Icmpv4PacketRaw<B>
 
impl<B: SplitByteSlice> ParsablePacket<B, ()> for Icmpv4PacketRaw<B>
Source§fn parse_metadata(&self) -> ParseMetadata
 
fn parse_metadata(&self) -> ParseMetadata
Gets metadata about this packet required by 
GrowBuffer::undo_parse. Read moreSource§fn parse<BV: BufferView<B>>(buffer: BV, _args: ()) -> ParseResult<Self>
 
fn parse<BV: BufferView<B>>(buffer: BV, _args: ()) -> ParseResult<Self>
Parses a packet from a buffer. Read more
Source§fn parse_mut<BV>(buffer: BV, args: ParseArgs) -> Result<Self, Self::Error>where
    BV: BufferViewMut<B>,
    B: SplitByteSliceMut,
 
fn parse_mut<BV>(buffer: BV, args: ParseArgs) -> Result<Self, Self::Error>where
    BV: BufferViewMut<B>,
    B: SplitByteSliceMut,
Parses a packet from a mutable buffer. Read more
Auto Trait Implementations§
impl<B> Freeze for Icmpv4PacketRaw<B>where
    B: Freeze,
impl<B> RefUnwindSafe for Icmpv4PacketRaw<B>where
    B: RefUnwindSafe,
impl<B> Send for Icmpv4PacketRaw<B>where
    B: Send,
impl<B> Sync for Icmpv4PacketRaw<B>where
    B: Sync,
impl<B> Unpin for Icmpv4PacketRaw<B>where
    B: Unpin,
impl<B> UnwindSafe for Icmpv4PacketRaw<B>where
    B: UnwindSafe,
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
Source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more