[][src]Struct capsule_ffi::pcap_if

#[repr(C)]pub struct pcap_if {
    pub next: *mut pcap_if,
    pub name: *mut c_char,
    pub description: *mut c_char,
    pub addresses: *mut pcap_addr,
    pub flags: bpf_u_int32,
}

Fields

next: *mut pcap_ifname: *mut c_chardescription: *mut c_charaddresses: *mut pcap_addrflags: bpf_u_int32

Trait Implementations

impl Clone for pcap_if[src]

impl Copy for pcap_if[src]

impl Debug for pcap_if[src]

impl Default for pcap_if[src]

impl PartialEq<pcap_if> for pcap_if[src]

impl StructuralPartialEq for pcap_if[src]

Auto Trait Implementations

impl RefUnwindSafe for pcap_if

impl !Send for pcap_if

impl !Sync for pcap_if

impl Unpin for pcap_if

impl UnwindSafe for pcap_if

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.