pub struct PcapMetadata {
pub timestamp: Duration,
pub orig_len: u32,
pub interface_id: Option<u32>,
pub comment: Option<String>,
}Expand description
Metadata from a PCAP/PcapNG packet record.
Fields§
§timestamp: DurationTimestamp of when the packet was captured.
orig_len: u32Original length of the packet on the wire (may be larger than captured data).
interface_id: Option<u32>PcapNG interface ID (None for classic PCAP).
comment: Option<String>PcapNG per-packet comment (None for classic PCAP).
Trait Implementations§
Source§impl Clone for PcapMetadata
impl Clone for PcapMetadata
Source§fn clone(&self) -> PcapMetadata
fn clone(&self) -> PcapMetadata
Returns a duplicate 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 moreSource§impl Debug for PcapMetadata
impl Debug for PcapMetadata
Auto Trait Implementations§
impl Freeze for PcapMetadata
impl RefUnwindSafe for PcapMetadata
impl Send for PcapMetadata
impl Sync for PcapMetadata
impl Unpin for PcapMetadata
impl UnsafeUnpin for PcapMetadata
impl UnwindSafe for PcapMetadata
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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