#[repr(C)]pub struct pcapng_field {Show 13 fields
pub abbrev: [c_char; 64],
pub label: [c_char; 192],
pub vtype: pcapng_ftype_t,
pub u: u64,
pub str_: [c_char; 160],
pub bytes: [u8; 16],
pub blen: c_int,
pub off: c_int,
pub len: c_int,
pub parent: *mut pcapng_field,
pub children: *mut pcapng_field,
pub last_child: *mut pcapng_field,
pub next: *mut pcapng_field,
}Fields§
§abbrev: [c_char; 64]§label: [c_char; 192]§vtype: pcapng_ftype_t§u: u64§str_: [c_char; 160]§bytes: [u8; 16]§blen: c_int§off: c_int§len: c_int§parent: *mut pcapng_field§children: *mut pcapng_field§last_child: *mut pcapng_field§next: *mut pcapng_fieldTrait Implementations§
Source§impl Clone for pcapng_field
impl Clone for pcapng_field
Source§fn clone(&self) -> pcapng_field
fn clone(&self) -> pcapng_field
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for pcapng_field
Auto Trait Implementations§
impl !Send for pcapng_field
impl !Sync for pcapng_field
impl Freeze for pcapng_field
impl RefUnwindSafe for pcapng_field
impl Unpin for pcapng_field
impl UnsafeUnpin for pcapng_field
impl UnwindSafe for pcapng_field
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