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