profile-bee-aya 0.13.2

An eBPF library with a focus on developer experience and operability. Fork of aya for profile-bee.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Array types.

#[expect(
    clippy::module_inception,
    reason = "module name matches the exported type"
)]
mod array;
mod per_cpu_array;
mod program_array;

pub use array::*;
pub use per_cpu_array::PerCpuArray;
pub use program_array::ProgramArray;