pub struct PcapMetadata {
pub timestamp: Duration,
pub orig_len: u32,
}Expand description
Metadata from a PCAP 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).
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
Source§impl Default for PcapMetadata
impl Default for PcapMetadata
Source§fn default() -> PcapMetadata
fn default() -> PcapMetadata
Returns the “default value” for a type. Read more
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