Struct ebpf::ffi::bpf_map_create_arg[][src]

#[repr(C)]
pub struct bpf_map_create_arg { pub map_type: u32, pub key_size: u32, pub val_size: u32, pub max_entries: u32, pub map_flags: u32, pub inner_map_fd: u32, pub numa_node: u32, pub map_name: [u8; 16], pub map_ifindex: u32, }

Fields

Trait Implementations

impl Copy for bpf_map_create_arg
[src]

impl Clone for bpf_map_create_arg
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for bpf_map_create_arg
[src]

Formats the value using the given formatter. Read more

impl Default for bpf_map_create_arg
[src]

Returns the "default value" for a type. Read more

impl Pod for bpf_map_create_arg
[src]

Auto Trait Implementations