#[repr(C)]pub struct bpf_create_map_attr {
pub name: *const c_char,
pub map_type: bpf_map_type,
pub map_flags: __u32,
pub key_size: __u32,
pub value_size: __u32,
pub max_entries: __u32,
pub numa_node: __u32,
pub btf_fd: __u32,
pub btf_key_type_id: __u32,
pub btf_value_type_id: __u32,
pub map_ifindex: __u32,
pub __bindgen_anon_1: bpf_create_map_attr__bindgen_ty_1,
}Fields§
§name: *const c_char§map_type: bpf_map_type§map_flags: __u32§key_size: __u32§value_size: __u32§max_entries: __u32§numa_node: __u32§btf_fd: __u32§btf_key_type_id: __u32§btf_value_type_id: __u32§map_ifindex: __u32§__bindgen_anon_1: bpf_create_map_attr__bindgen_ty_1Trait Implementations§
Source§impl Clone for bpf_create_map_attr
impl Clone for bpf_create_map_attr
Source§fn clone(&self) -> bpf_create_map_attr
fn clone(&self) -> bpf_create_map_attr
Returns a copy 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 moreimpl Copy for bpf_create_map_attr
Auto Trait Implementations§
impl Freeze for bpf_create_map_attr
impl RefUnwindSafe for bpf_create_map_attr
impl !Send for bpf_create_map_attr
impl !Sync for bpf_create_map_attr
impl Unpin for bpf_create_map_attr
impl UnwindSafe for bpf_create_map_attr
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