Struct pcap_file::pcap::RawPcapPacket
source · pub struct RawPcapPacket<'a> {
pub ts_sec: u32,
pub ts_frac: u32,
pub incl_len: u32,
pub orig_len: u32,
pub data: Cow<'a, [u8]>,
}
Expand description
Raw Pcap packet with its header and data. The fields of the packet are not validated. The payload can be owned or borrowed.
Fields§
§ts_sec: u32
Timestamp in seconds
ts_frac: u32
Nanosecond or microsecond part of the timestamp
incl_len: u32
Number of octets of the packet saved in file
orig_len: u32
Original length of the packet on the wire
data: Cow<'a, [u8]>
Payload, owned or borrowed, of the packet
Implementations§
source§impl<'a> RawPcapPacket<'a>
impl<'a> RawPcapPacket<'a>
sourcepub fn into_owned(self) -> RawPcapPacket<'static>
pub fn into_owned(self) -> RawPcapPacket<'static>
Returns a version of self
with all fields converted to owning versions.
source§impl<'a> RawPcapPacket<'a>
impl<'a> RawPcapPacket<'a>
sourcepub fn from_slice<B: ByteOrder>(slice: &'a [u8]) -> PcapResult<(&'a [u8], Self)>
pub fn from_slice<B: ByteOrder>(slice: &'a [u8]) -> PcapResult<(&'a [u8], Self)>
Parses a new borrowed RawPcapPacket
from a slice.
sourcepub fn write_to<W: Write, B: ByteOrder>(
&self,
writer: &mut W
) -> PcapResult<usize>
pub fn write_to<W: Write, B: ByteOrder>(
&self,
writer: &mut W
) -> PcapResult<usize>
Writes a RawPcapPacket
to a writer.
The fields of the packet are not validated.
sourcepub fn try_into_pcap_packet(
self,
ts_resolution: TsResolution,
snap_len: u32
) -> PcapResult<PcapPacket<'a>>
pub fn try_into_pcap_packet(
self,
ts_resolution: TsResolution,
snap_len: u32
) -> PcapResult<PcapPacket<'a>>
Tries to convert a RawPcapPacket
into a PcapPacket
.
Trait Implementations§
source§impl<'a> Clone for RawPcapPacket<'a>
impl<'a> Clone for RawPcapPacket<'a>
source§fn clone(&self) -> RawPcapPacket<'a>
fn clone(&self) -> RawPcapPacket<'a>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more