[][src]Struct nc::types::bpf_attr_prog_attach_t

#[repr(C)]
pub struct bpf_attr_prog_attach_t {
    pub target_fd: u32,
    pub attach_bpf_fd: u32,
    pub attach_type: u32,
    pub attach_flags: u32,
}

anonymous struct used by BPF_PROG_ATTACH/DETACH commands

Fields

target_fd: u32

container object to attach to

attach_bpf_fd: u32

eBPF program to attach

attach_type: u32attach_flags: u32

Trait Implementations

impl Copy for bpf_attr_prog_attach_t[src]

impl Clone for bpf_attr_prog_attach_t[src]

Auto Trait Implementations

Blanket Implementations

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

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> Into<U> for T where
    U: From<T>, 
[src]

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.

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.