pub struct HashMap<'a, K: Clone, V: Clone> { /* private fields */ }
Expand description
A BPF hash map structure
This provides higher level API for BPF maps whose type is
BPF_MAP_TYPE_HASH
Implementations§
Auto Trait Implementations§
impl<'a, K, V> Freeze for HashMap<'a, K, V>
impl<'a, K, V> RefUnwindSafe for HashMap<'a, K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<'a, K, V> Send for HashMap<'a, K, V>
impl<'a, K, V> Sync for HashMap<'a, K, V>
impl<'a, K, V> Unpin for HashMap<'a, K, V>
impl<'a, K, V> UnwindSafe for HashMap<'a, K, V>where
K: UnwindSafe,
V: UnwindSafe,
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