[][src]Trait rebpf::maps::Map

pub trait Map {
    type Key;
    type Value;
}

This trait is implemented by all the map wrapper types, as as convenient way to communicate their underlying types to the Rust type system.

Associated Types

type Key

type Value

Loading content...

Implementors

impl Map for rebpf::bpf::maps::CpuMap[src]

type Key = u32

type Value = u32

impl Map for DevMap[src]

type Key = u32

type Value = u32

impl Map for XskMap[src]

type Key = u32

type Value = u32

impl Map for rebpf::userspace::maps::CpuMap[src]

type Key = u32

type Value = u32

impl<T> Map for rebpf::bpf::maps::Array<T>[src]

type Key = u32

type Value = T

impl<T> Map for rebpf::bpf::maps::PerCpuArray<T>[src]

type Key = u32

type Value = T

impl<T> Map for rebpf::userspace::maps::Array<T>[src]

type Key = u32

type Value = T

impl<T> Map for rebpf::userspace::maps::PerCpuArray<T>[src]

type Key = u32

type Value = T

Loading content...