pcap_file::pcap

Struct 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>

Source

pub fn into_owned(self) -> RawPcapPacket<'static>

Returns a version of self with all fields converted to owning versions.

Source§

impl<'a> RawPcapPacket<'a>

Source

pub fn from_slice<B: ByteOrder>(slice: &'a [u8]) -> PcapResult<(&'a [u8], Self)>

Parses a new borrowed RawPcapPacket from a slice.

Source

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.

Source

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>

Source§

fn clone(&self) -> RawPcapPacket<'a>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<'a> Debug for RawPcapPacket<'a>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for RawPcapPacket<'a>

§

impl<'a> RefUnwindSafe for RawPcapPacket<'a>

§

impl<'a> Send for RawPcapPacket<'a>

§

impl<'a> Sync for RawPcapPacket<'a>

§

impl<'a> Unpin for RawPcapPacket<'a>

§

impl<'a> UnwindSafe for RawPcapPacket<'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.