From f833f1fc1d799f8d40000c9c540e89333fb89041 Mon Sep 17 00:00:00 2001 From: Dave Tucker Date: Thu, 20 Jul 2023 10:51:26 +0100 Subject: [PATCH] xtask: Add cargo-public-api Adds cargo-public-api. This allows for public API changes to get caught in CI, requiring new changes to be "blessed" by using: cargo xtask public-api --bless When this file is changed for aya, Alessandro will need to review the PR. Signed-off-by: Dave Tucker --- .github/workflows/ci.yml | 9 +- Cargo.toml | 5 + xtask/Cargo.toml | 7 + xtask/public-api/aya-bpf-bindings.txt | 5922 ++++++++++++++++++ xtask/public-api/aya-bpf-cty.txt | 30 + xtask/public-api/aya-bpf-macros.txt | 27 + xtask/public-api/aya-bpf.txt | 2289 +++++++ xtask/public-api/aya-log-common.txt | 252 + xtask/public-api/aya-log-ebpf-macros.txt | 7 + xtask/public-api/aya-log-ebpf.txt | 10 + xtask/public-api/aya-log-parser.txt | 75 + xtask/public-api/aya-log.txt | 302 + xtask/public-api/aya-obj.txt | 6817 ++++++++++++++++++++ xtask/public-api/aya-tool.txt | 101 + xtask/public-api/aya.txt | 7262 ++++++++++++++++++++++ xtask/src/main.rs | 3 + xtask/src/public_api.rs | 129 + 17 files changed, 23245 insertions(+), 2 deletions(-) create mode 100644 xtask/public-api/aya-bpf-bindings.txt create mode 100644 xtask/public-api/aya-bpf-cty.txt create mode 100644 xtask/public-api/aya-bpf-macros.txt create mode 100644 xtask/public-api/aya-bpf.txt create mode 100644 xtask/public-api/aya-log-common.txt create mode 100644 xtask/public-api/aya-log-ebpf-macros.txt create mode 100644 xtask/public-api/aya-log-ebpf.txt create mode 100644 xtask/public-api/aya-log-parser.txt create mode 100644 xtask/public-api/aya-log.txt create mode 100644 xtask/public-api/aya-obj.txt create mode 100644 xtask/public-api/aya-tool.txt create mode 100644 xtask/public-api/aya.txt create mode 100644 xtask/src/public_api.rs diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1bc43e38..bc18a644 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,16 +26,21 @@ jobs: - uses: Swatinem/rust-cache@v2 - - run: cargo install taplo-cli + - uses: taiki-e/install-action@v2 + with: + tool: cargo-hack,taplo-cli + - run: taplo fmt --check - name: Check formatting run: cargo fmt --all -- --check - - uses: taiki-e/install-action@cargo-hack - name: Run clippy run: cargo hack clippy --all-targets --feature-powerset --workspace -- --deny warnings + - name: Check public API + run: cargo xtask public-api + - name: Run miri run: | cargo hack miri test --all-targets --feature-powerset \ diff --git a/Cargo.toml b/Cargo.toml index 912c09cc..0db43a36 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -61,6 +61,8 @@ bytes = { version = "1", default-features = false } cargo_metadata = { version = "0.17.0", default-features = false } clap = { version = "4", default-features = false } core-error = { version = "0.0.0", default-features = false } +dialoguer = { version = "0.10", default-features = false } +diff = { version = "0.1.13", default-features = false } env_logger = { version = "0.10", default-features = false } futures = { version = "0.3.12", default-features = false } hashbrown = { version = "0.14", default-features = false } @@ -73,8 +75,11 @@ num_enum = { version = "0.6", default-features = false } object = { version = "0.31", default-features = false } parking_lot = { version = "0.12.0", default-features = false } proc-macro2 = { version = "1", default-features = false } +public-api = { version = "0.31.2", default-features = false } quote = { version = "1", default-features = false } rbpf = { version = "0.2.0", default-features = false } +rustdoc-json = { version = "0.8.6", default-features = false } +rustup-toolchain = { version = "0.1.5", default-features = false } syn = { version = "2", default-features = false } tempfile = { version = "3", default-features = false } testing_logger = { version = "0.1.1", default-features = false } diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index 7d303f56..ed8beb53 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -3,15 +3,22 @@ name = "xtask" version = "0.1.0" authors = ["Alessandro Decina "] edition = "2021" +publish = false [dependencies] anyhow = { workspace = true, default-features = true } aya-tool = { workspace = true } cargo_metadata = { workspace = true } clap = { workspace = true, default-features = true, features = ["derive"] } +dialoguer = { workspace = true } +diff = { workspace = true } indoc = { workspace = true } proc-macro2 = { workspace = true } +public-api = { workspace = true } quote = { workspace = true } +rustdoc-json = { workspace = true } +rustup-toolchain = { workspace = true } syn = { workspace = true } +thiserror = { workspace = true } tempfile = { workspace = true } which = { workspace = true } diff --git a/xtask/public-api/aya-bpf-bindings.txt b/xtask/public-api/aya-bpf-bindings.txt new file mode 100644 index 00000000..c98486a2 --- /dev/null +++ b/xtask/public-api/aya-bpf-bindings.txt @@ -0,0 +1,5922 @@ +pub mod aya_bpf_bindings +pub mod aya_bpf_bindings::bindings +pub mod aya_bpf_bindings::bindings::_bindgen_ty_26 +pub const aya_bpf_bindings::bindings::_bindgen_ty_26::BPF_SKB_TSTAMP_DELIVERY_MONO: aya_bpf_bindings::bindings::_bindgen_ty_26::Type = 1u32 +pub const aya_bpf_bindings::bindings::_bindgen_ty_26::BPF_SKB_TSTAMP_UNSPEC: aya_bpf_bindings::bindings::_bindgen_ty_26::Type = 0u32 +pub type aya_bpf_bindings::bindings::_bindgen_ty_26::Type = aya_bpf_cty::ad::c_uint +pub mod aya_bpf_bindings::bindings::_bindgen_ty_31 +pub const aya_bpf_bindings::bindings::_bindgen_ty_31::BPF_LOAD_HDR_OPT_TCP_SYN: aya_bpf_bindings::bindings::_bindgen_ty_31::Type = 1u32 +pub type aya_bpf_bindings::bindings::_bindgen_ty_31::Type = aya_bpf_cty::ad::c_uint +pub mod aya_bpf_bindings::bindings::_bindgen_ty_32 +pub const aya_bpf_bindings::bindings::_bindgen_ty_32::BPF_WRITE_HDR_TCP_CURRENT_MSS: aya_bpf_bindings::bindings::_bindgen_ty_32::Type = 1u32 +pub const aya_bpf_bindings::bindings::_bindgen_ty_32::BPF_WRITE_HDR_TCP_SYNACK_COOKIE: aya_bpf_bindings::bindings::_bindgen_ty_32::Type = 2u32 +pub type aya_bpf_bindings::bindings::_bindgen_ty_32::Type = aya_bpf_cty::ad::c_uint +pub mod aya_bpf_bindings::bindings::bpf_adj_room_mode +pub const aya_bpf_bindings::bindings::bpf_adj_room_mode::BPF_ADJ_ROOM_MAC: aya_bpf_bindings::bindings::bpf_adj_room_mode::Type = 1u32 +pub const aya_bpf_bindings::bindings::bpf_adj_room_mode::BPF_ADJ_ROOM_NET: aya_bpf_bindings::bindings::bpf_adj_room_mode::Type = 0u32 +pub type aya_bpf_bindings::bindings::bpf_adj_room_mode::Type = aya_bpf_cty::ad::c_uint +pub mod aya_bpf_bindings::bindings::bpf_attach_type +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_CGROUP_DEVICE: aya_bpf_bindings::bindings::bpf_attach_type::Type = 6u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_CGROUP_GETSOCKOPT: aya_bpf_bindings::bindings::bpf_attach_type::Type = 21u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_CGROUP_INET4_BIND: aya_bpf_bindings::bindings::bpf_attach_type::Type = 8u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_CGROUP_INET4_CONNECT: aya_bpf_bindings::bindings::bpf_attach_type::Type = 10u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_CGROUP_INET4_GETPEERNAME: aya_bpf_bindings::bindings::bpf_attach_type::Type = 29u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_CGROUP_INET4_GETSOCKNAME: aya_bpf_bindings::bindings::bpf_attach_type::Type = 31u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_CGROUP_INET4_POST_BIND: aya_bpf_bindings::bindings::bpf_attach_type::Type = 12u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_CGROUP_INET6_BIND: aya_bpf_bindings::bindings::bpf_attach_type::Type = 9u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_CGROUP_INET6_CONNECT: aya_bpf_bindings::bindings::bpf_attach_type::Type = 11u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_CGROUP_INET6_GETPEERNAME: aya_bpf_bindings::bindings::bpf_attach_type::Type = 30u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_CGROUP_INET6_GETSOCKNAME: aya_bpf_bindings::bindings::bpf_attach_type::Type = 32u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_CGROUP_INET6_POST_BIND: aya_bpf_bindings::bindings::bpf_attach_type::Type = 13u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_CGROUP_INET_EGRESS: aya_bpf_bindings::bindings::bpf_attach_type::Type = 1u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_CGROUP_INET_INGRESS: aya_bpf_bindings::bindings::bpf_attach_type::Type = 0u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_CGROUP_INET_SOCK_CREATE: aya_bpf_bindings::bindings::bpf_attach_type::Type = 2u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_CGROUP_INET_SOCK_RELEASE: aya_bpf_bindings::bindings::bpf_attach_type::Type = 34u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_CGROUP_SETSOCKOPT: aya_bpf_bindings::bindings::bpf_attach_type::Type = 22u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_CGROUP_SOCK_OPS: aya_bpf_bindings::bindings::bpf_attach_type::Type = 3u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_CGROUP_SYSCTL: aya_bpf_bindings::bindings::bpf_attach_type::Type = 18u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_CGROUP_UDP4_RECVMSG: aya_bpf_bindings::bindings::bpf_attach_type::Type = 19u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_CGROUP_UDP4_SENDMSG: aya_bpf_bindings::bindings::bpf_attach_type::Type = 14u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_CGROUP_UDP6_RECVMSG: aya_bpf_bindings::bindings::bpf_attach_type::Type = 20u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_CGROUP_UDP6_SENDMSG: aya_bpf_bindings::bindings::bpf_attach_type::Type = 15u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_FLOW_DISSECTOR: aya_bpf_bindings::bindings::bpf_attach_type::Type = 17u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_LIRC_MODE2: aya_bpf_bindings::bindings::bpf_attach_type::Type = 16u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_LSM_CGROUP: aya_bpf_bindings::bindings::bpf_attach_type::Type = 43u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_LSM_MAC: aya_bpf_bindings::bindings::bpf_attach_type::Type = 27u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_MODIFY_RETURN: aya_bpf_bindings::bindings::bpf_attach_type::Type = 26u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_PERF_EVENT: aya_bpf_bindings::bindings::bpf_attach_type::Type = 41u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_SK_LOOKUP: aya_bpf_bindings::bindings::bpf_attach_type::Type = 36u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_SK_MSG_VERDICT: aya_bpf_bindings::bindings::bpf_attach_type::Type = 7u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_SK_REUSEPORT_SELECT: aya_bpf_bindings::bindings::bpf_attach_type::Type = 39u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_SK_REUSEPORT_SELECT_OR_MIGRATE: aya_bpf_bindings::bindings::bpf_attach_type::Type = 40u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_SK_SKB_STREAM_PARSER: aya_bpf_bindings::bindings::bpf_attach_type::Type = 4u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_SK_SKB_STREAM_VERDICT: aya_bpf_bindings::bindings::bpf_attach_type::Type = 5u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_SK_SKB_VERDICT: aya_bpf_bindings::bindings::bpf_attach_type::Type = 38u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_STRUCT_OPS: aya_bpf_bindings::bindings::bpf_attach_type::Type = 44u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_TRACE_FENTRY: aya_bpf_bindings::bindings::bpf_attach_type::Type = 24u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_TRACE_FEXIT: aya_bpf_bindings::bindings::bpf_attach_type::Type = 25u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_TRACE_ITER: aya_bpf_bindings::bindings::bpf_attach_type::Type = 28u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_TRACE_KPROBE_MULTI: aya_bpf_bindings::bindings::bpf_attach_type::Type = 42u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_TRACE_RAW_TP: aya_bpf_bindings::bindings::bpf_attach_type::Type = 23u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_XDP: aya_bpf_bindings::bindings::bpf_attach_type::Type = 37u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_XDP_CPUMAP: aya_bpf_bindings::bindings::bpf_attach_type::Type = 35u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::BPF_XDP_DEVMAP: aya_bpf_bindings::bindings::bpf_attach_type::Type = 33u32 +pub const aya_bpf_bindings::bindings::bpf_attach_type::__MAX_BPF_ATTACH_TYPE: aya_bpf_bindings::bindings::bpf_attach_type::Type = 45u32 +pub type aya_bpf_bindings::bindings::bpf_attach_type::Type = aya_bpf_cty::ad::c_uint +pub mod aya_bpf_bindings::bindings::bpf_cgroup_iter_order +pub const aya_bpf_bindings::bindings::bpf_cgroup_iter_order::BPF_CGROUP_ITER_ANCESTORS_UP: aya_bpf_bindings::bindings::bpf_cgroup_iter_order::Type = 4u32 +pub const aya_bpf_bindings::bindings::bpf_cgroup_iter_order::BPF_CGROUP_ITER_DESCENDANTS_POST: aya_bpf_bindings::bindings::bpf_cgroup_iter_order::Type = 3u32 +pub const aya_bpf_bindings::bindings::bpf_cgroup_iter_order::BPF_CGROUP_ITER_DESCENDANTS_PRE: aya_bpf_bindings::bindings::bpf_cgroup_iter_order::Type = 2u32 +pub const aya_bpf_bindings::bindings::bpf_cgroup_iter_order::BPF_CGROUP_ITER_ORDER_UNSPEC: aya_bpf_bindings::bindings::bpf_cgroup_iter_order::Type = 0u32 +pub const aya_bpf_bindings::bindings::bpf_cgroup_iter_order::BPF_CGROUP_ITER_SELF_ONLY: aya_bpf_bindings::bindings::bpf_cgroup_iter_order::Type = 1u32 +pub type aya_bpf_bindings::bindings::bpf_cgroup_iter_order::Type = aya_bpf_cty::ad::c_uint +pub mod aya_bpf_bindings::bindings::bpf_check_mtu_flags +pub const aya_bpf_bindings::bindings::bpf_check_mtu_flags::BPF_MTU_CHK_SEGS: aya_bpf_bindings::bindings::bpf_check_mtu_flags::Type = 1u32 +pub type aya_bpf_bindings::bindings::bpf_check_mtu_flags::Type = aya_bpf_cty::ad::c_uint +pub mod aya_bpf_bindings::bindings::bpf_check_mtu_ret +pub const aya_bpf_bindings::bindings::bpf_check_mtu_ret::BPF_MTU_CHK_RET_FRAG_NEEDED: aya_bpf_bindings::bindings::bpf_check_mtu_ret::Type = 1u32 +pub const aya_bpf_bindings::bindings::bpf_check_mtu_ret::BPF_MTU_CHK_RET_SEGS_TOOBIG: aya_bpf_bindings::bindings::bpf_check_mtu_ret::Type = 2u32 +pub const aya_bpf_bindings::bindings::bpf_check_mtu_ret::BPF_MTU_CHK_RET_SUCCESS: aya_bpf_bindings::bindings::bpf_check_mtu_ret::Type = 0u32 +pub type aya_bpf_bindings::bindings::bpf_check_mtu_ret::Type = aya_bpf_cty::ad::c_uint +pub mod aya_bpf_bindings::bindings::bpf_cmd +pub const aya_bpf_bindings::bindings::bpf_cmd::BPF_BTF_GET_FD_BY_ID: aya_bpf_bindings::bindings::bpf_cmd::Type = 19u32 +pub const aya_bpf_bindings::bindings::bpf_cmd::BPF_BTF_GET_NEXT_ID: aya_bpf_bindings::bindings::bpf_cmd::Type = 23u32 +pub const aya_bpf_bindings::bindings::bpf_cmd::BPF_BTF_LOAD: aya_bpf_bindings::bindings::bpf_cmd::Type = 18u32 +pub const aya_bpf_bindings::bindings::bpf_cmd::BPF_ENABLE_STATS: aya_bpf_bindings::bindings::bpf_cmd::Type = 32u32 +pub const aya_bpf_bindings::bindings::bpf_cmd::BPF_ITER_CREATE: aya_bpf_bindings::bindings::bpf_cmd::Type = 33u32 +pub const aya_bpf_bindings::bindings::bpf_cmd::BPF_LINK_CREATE: aya_bpf_bindings::bindings::bpf_cmd::Type = 28u32 +pub const aya_bpf_bindings::bindings::bpf_cmd::BPF_LINK_DETACH: aya_bpf_bindings::bindings::bpf_cmd::Type = 34u32 +pub const aya_bpf_bindings::bindings::bpf_cmd::BPF_LINK_GET_FD_BY_ID: aya_bpf_bindings::bindings::bpf_cmd::Type = 30u32 +pub const aya_bpf_bindings::bindings::bpf_cmd::BPF_LINK_GET_NEXT_ID: aya_bpf_bindings::bindings::bpf_cmd::Type = 31u32 +pub const aya_bpf_bindings::bindings::bpf_cmd::BPF_LINK_UPDATE: aya_bpf_bindings::bindings::bpf_cmd::Type = 29u32 +pub const aya_bpf_bindings::bindings::bpf_cmd::BPF_MAP_CREATE: aya_bpf_bindings::bindings::bpf_cmd::Type = 0u32 +pub const aya_bpf_bindings::bindings::bpf_cmd::BPF_MAP_DELETE_BATCH: aya_bpf_bindings::bindings::bpf_cmd::Type = 27u32 +pub const aya_bpf_bindings::bindings::bpf_cmd::BPF_MAP_DELETE_ELEM: aya_bpf_bindings::bindings::bpf_cmd::Type = 3u32 +pub const aya_bpf_bindings::bindings::bpf_cmd::BPF_MAP_FREEZE: aya_bpf_bindings::bindings::bpf_cmd::Type = 22u32 +pub const aya_bpf_bindings::bindings::bpf_cmd::BPF_MAP_GET_FD_BY_ID: aya_bpf_bindings::bindings::bpf_cmd::Type = 14u32 +pub const aya_bpf_bindings::bindings::bpf_cmd::BPF_MAP_GET_NEXT_ID: aya_bpf_bindings::bindings::bpf_cmd::Type = 12u32 +pub const aya_bpf_bindings::bindings::bpf_cmd::BPF_MAP_GET_NEXT_KEY: aya_bpf_bindings::bindings::bpf_cmd::Type = 4u32 +pub const aya_bpf_bindings::bindings::bpf_cmd::BPF_MAP_LOOKUP_AND_DELETE_BATCH: aya_bpf_bindings::bindings::bpf_cmd::Type = 25u32 +pub const aya_bpf_bindings::bindings::bpf_cmd::BPF_MAP_LOOKUP_AND_DELETE_ELEM: aya_bpf_bindings::bindings::bpf_cmd::Type = 21u32 +pub const aya_bpf_bindings::bindings::bpf_cmd::BPF_MAP_LOOKUP_BATCH: aya_bpf_bindings::bindings::bpf_cmd::Type = 24u32 +pub const aya_bpf_bindings::bindings::bpf_cmd::BPF_MAP_LOOKUP_ELEM: aya_bpf_bindings::bindings::bpf_cmd::Type = 1u32 +pub const aya_bpf_bindings::bindings::bpf_cmd::BPF_MAP_UPDATE_BATCH: aya_bpf_bindings::bindings::bpf_cmd::Type = 26u32 +pub const aya_bpf_bindings::bindings::bpf_cmd::BPF_MAP_UPDATE_ELEM: aya_bpf_bindings::bindings::bpf_cmd::Type = 2u32 +pub const aya_bpf_bindings::bindings::bpf_cmd::BPF_OBJ_GET: aya_bpf_bindings::bindings::bpf_cmd::Type = 7u32 +pub const aya_bpf_bindings::bindings::bpf_cmd::BPF_OBJ_GET_INFO_BY_FD: aya_bpf_bindings::bindings::bpf_cmd::Type = 15u32 +pub const aya_bpf_bindings::bindings::bpf_cmd::BPF_OBJ_PIN: aya_bpf_bindings::bindings::bpf_cmd::Type = 6u32 +pub const aya_bpf_bindings::bindings::bpf_cmd::BPF_PROG_ATTACH: aya_bpf_bindings::bindings::bpf_cmd::Type = 8u32 +pub const aya_bpf_bindings::bindings::bpf_cmd::BPF_PROG_BIND_MAP: aya_bpf_bindings::bindings::bpf_cmd::Type = 35u32 +pub const aya_bpf_bindings::bindings::bpf_cmd::BPF_PROG_DETACH: aya_bpf_bindings::bindings::bpf_cmd::Type = 9u32 +pub const aya_bpf_bindings::bindings::bpf_cmd::BPF_PROG_GET_FD_BY_ID: aya_bpf_bindings::bindings::bpf_cmd::Type = 13u32 +pub const aya_bpf_bindings::bindings::bpf_cmd::BPF_PROG_GET_NEXT_ID: aya_bpf_bindings::bindings::bpf_cmd::Type = 11u32 +pub const aya_bpf_bindings::bindings::bpf_cmd::BPF_PROG_LOAD: aya_bpf_bindings::bindings::bpf_cmd::Type = 5u32 +pub const aya_bpf_bindings::bindings::bpf_cmd::BPF_PROG_QUERY: aya_bpf_bindings::bindings::bpf_cmd::Type = 16u32 +pub const aya_bpf_bindings::bindings::bpf_cmd::BPF_PROG_RUN: aya_bpf_bindings::bindings::bpf_cmd::Type = 10u32 +pub const aya_bpf_bindings::bindings::bpf_cmd::BPF_PROG_TEST_RUN: aya_bpf_bindings::bindings::bpf_cmd::Type = 10u32 +pub const aya_bpf_bindings::bindings::bpf_cmd::BPF_RAW_TRACEPOINT_OPEN: aya_bpf_bindings::bindings::bpf_cmd::Type = 17u32 +pub const aya_bpf_bindings::bindings::bpf_cmd::BPF_TASK_FD_QUERY: aya_bpf_bindings::bindings::bpf_cmd::Type = 20u32 +pub type aya_bpf_bindings::bindings::bpf_cmd::Type = aya_bpf_cty::ad::c_uint +pub mod aya_bpf_bindings::bindings::bpf_core_relo_kind +pub const aya_bpf_bindings::bindings::bpf_core_relo_kind::BPF_CORE_ENUMVAL_EXISTS: aya_bpf_bindings::bindings::bpf_core_relo_kind::Type = 10u32 +pub const aya_bpf_bindings::bindings::bpf_core_relo_kind::BPF_CORE_ENUMVAL_VALUE: aya_bpf_bindings::bindings::bpf_core_relo_kind::Type = 11u32 +pub const aya_bpf_bindings::bindings::bpf_core_relo_kind::BPF_CORE_FIELD_BYTE_OFFSET: aya_bpf_bindings::bindings::bpf_core_relo_kind::Type = 0u32 +pub const aya_bpf_bindings::bindings::bpf_core_relo_kind::BPF_CORE_FIELD_BYTE_SIZE: aya_bpf_bindings::bindings::bpf_core_relo_kind::Type = 1u32 +pub const aya_bpf_bindings::bindings::bpf_core_relo_kind::BPF_CORE_FIELD_EXISTS: aya_bpf_bindings::bindings::bpf_core_relo_kind::Type = 2u32 +pub const aya_bpf_bindings::bindings::bpf_core_relo_kind::BPF_CORE_FIELD_LSHIFT_U64: aya_bpf_bindings::bindings::bpf_core_relo_kind::Type = 4u32 +pub const aya_bpf_bindings::bindings::bpf_core_relo_kind::BPF_CORE_FIELD_RSHIFT_U64: aya_bpf_bindings::bindings::bpf_core_relo_kind::Type = 5u32 +pub const aya_bpf_bindings::bindings::bpf_core_relo_kind::BPF_CORE_FIELD_SIGNED: aya_bpf_bindings::bindings::bpf_core_relo_kind::Type = 3u32 +pub const aya_bpf_bindings::bindings::bpf_core_relo_kind::BPF_CORE_TYPE_EXISTS: aya_bpf_bindings::bindings::bpf_core_relo_kind::Type = 8u32 +pub const aya_bpf_bindings::bindings::bpf_core_relo_kind::BPF_CORE_TYPE_ID_LOCAL: aya_bpf_bindings::bindings::bpf_core_relo_kind::Type = 6u32 +pub const aya_bpf_bindings::bindings::bpf_core_relo_kind::BPF_CORE_TYPE_ID_TARGET: aya_bpf_bindings::bindings::bpf_core_relo_kind::Type = 7u32 +pub const aya_bpf_bindings::bindings::bpf_core_relo_kind::BPF_CORE_TYPE_MATCHES: aya_bpf_bindings::bindings::bpf_core_relo_kind::Type = 12u32 +pub const aya_bpf_bindings::bindings::bpf_core_relo_kind::BPF_CORE_TYPE_SIZE: aya_bpf_bindings::bindings::bpf_core_relo_kind::Type = 9u32 +pub type aya_bpf_bindings::bindings::bpf_core_relo_kind::Type = aya_bpf_cty::ad::c_uint +pub mod aya_bpf_bindings::bindings::bpf_func_id +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_bind: aya_bpf_bindings::bindings::bpf_func_id::Type = 64u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_bprm_opts_set: aya_bpf_bindings::bindings::bpf_func_id::Type = 159u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_btf_find_by_name_kind: aya_bpf_bindings::bindings::bpf_func_id::Type = 167u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_cgrp_storage_delete: aya_bpf_bindings::bindings::bpf_func_id::Type = 211u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_cgrp_storage_get: aya_bpf_bindings::bindings::bpf_func_id::Type = 210u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_check_mtu: aya_bpf_bindings::bindings::bpf_func_id::Type = 163u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_clone_redirect: aya_bpf_bindings::bindings::bpf_func_id::Type = 13u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_copy_from_user: aya_bpf_bindings::bindings::bpf_func_id::Type = 148u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_copy_from_user_task: aya_bpf_bindings::bindings::bpf_func_id::Type = 191u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_csum_diff: aya_bpf_bindings::bindings::bpf_func_id::Type = 28u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_csum_level: aya_bpf_bindings::bindings::bpf_func_id::Type = 135u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_csum_update: aya_bpf_bindings::bindings::bpf_func_id::Type = 40u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_current_task_under_cgroup: aya_bpf_bindings::bindings::bpf_func_id::Type = 37u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_d_path: aya_bpf_bindings::bindings::bpf_func_id::Type = 147u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_dynptr_data: aya_bpf_bindings::bindings::bpf_func_id::Type = 203u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_dynptr_from_mem: aya_bpf_bindings::bindings::bpf_func_id::Type = 197u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_dynptr_read: aya_bpf_bindings::bindings::bpf_func_id::Type = 201u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_dynptr_write: aya_bpf_bindings::bindings::bpf_func_id::Type = 202u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_fib_lookup: aya_bpf_bindings::bindings::bpf_func_id::Type = 69u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_find_vma: aya_bpf_bindings::bindings::bpf_func_id::Type = 180u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_for_each_map_elem: aya_bpf_bindings::bindings::bpf_func_id::Type = 164u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_get_attach_cookie: aya_bpf_bindings::bindings::bpf_func_id::Type = 174u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_get_branch_snapshot: aya_bpf_bindings::bindings::bpf_func_id::Type = 176u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_get_cgroup_classid: aya_bpf_bindings::bindings::bpf_func_id::Type = 17u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_get_current_ancestor_cgroup_id: aya_bpf_bindings::bindings::bpf_func_id::Type = 123u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_get_current_cgroup_id: aya_bpf_bindings::bindings::bpf_func_id::Type = 80u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_get_current_comm: aya_bpf_bindings::bindings::bpf_func_id::Type = 16u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_get_current_pid_tgid: aya_bpf_bindings::bindings::bpf_func_id::Type = 14u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_get_current_task: aya_bpf_bindings::bindings::bpf_func_id::Type = 35u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_get_current_task_btf: aya_bpf_bindings::bindings::bpf_func_id::Type = 158u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_get_current_uid_gid: aya_bpf_bindings::bindings::bpf_func_id::Type = 15u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_get_func_arg: aya_bpf_bindings::bindings::bpf_func_id::Type = 183u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_get_func_arg_cnt: aya_bpf_bindings::bindings::bpf_func_id::Type = 185u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_get_func_ip: aya_bpf_bindings::bindings::bpf_func_id::Type = 173u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_get_func_ret: aya_bpf_bindings::bindings::bpf_func_id::Type = 184u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_get_hash_recalc: aya_bpf_bindings::bindings::bpf_func_id::Type = 34u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_get_listener_sock: aya_bpf_bindings::bindings::bpf_func_id::Type = 98u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_get_local_storage: aya_bpf_bindings::bindings::bpf_func_id::Type = 81u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_get_netns_cookie: aya_bpf_bindings::bindings::bpf_func_id::Type = 122u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_get_ns_current_pid_tgid: aya_bpf_bindings::bindings::bpf_func_id::Type = 120u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_get_numa_node_id: aya_bpf_bindings::bindings::bpf_func_id::Type = 42u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_get_prandom_u32: aya_bpf_bindings::bindings::bpf_func_id::Type = 7u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_get_retval: aya_bpf_bindings::bindings::bpf_func_id::Type = 186u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_get_route_realm: aya_bpf_bindings::bindings::bpf_func_id::Type = 24u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_get_smp_processor_id: aya_bpf_bindings::bindings::bpf_func_id::Type = 8u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_get_socket_cookie: aya_bpf_bindings::bindings::bpf_func_id::Type = 46u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_get_socket_uid: aya_bpf_bindings::bindings::bpf_func_id::Type = 47u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_get_stack: aya_bpf_bindings::bindings::bpf_func_id::Type = 67u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_get_stackid: aya_bpf_bindings::bindings::bpf_func_id::Type = 27u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_get_task_stack: aya_bpf_bindings::bindings::bpf_func_id::Type = 141u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_getsockopt: aya_bpf_bindings::bindings::bpf_func_id::Type = 57u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_ima_file_hash: aya_bpf_bindings::bindings::bpf_func_id::Type = 193u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_ima_inode_hash: aya_bpf_bindings::bindings::bpf_func_id::Type = 161u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_inode_storage_delete: aya_bpf_bindings::bindings::bpf_func_id::Type = 146u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_inode_storage_get: aya_bpf_bindings::bindings::bpf_func_id::Type = 145u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_jiffies64: aya_bpf_bindings::bindings::bpf_func_id::Type = 118u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_kallsyms_lookup_name: aya_bpf_bindings::bindings::bpf_func_id::Type = 179u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_kptr_xchg: aya_bpf_bindings::bindings::bpf_func_id::Type = 194u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_ktime_get_boot_ns: aya_bpf_bindings::bindings::bpf_func_id::Type = 125u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_ktime_get_coarse_ns: aya_bpf_bindings::bindings::bpf_func_id::Type = 160u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_ktime_get_ns: aya_bpf_bindings::bindings::bpf_func_id::Type = 5u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_ktime_get_tai_ns: aya_bpf_bindings::bindings::bpf_func_id::Type = 208u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_l3_csum_replace: aya_bpf_bindings::bindings::bpf_func_id::Type = 10u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_l4_csum_replace: aya_bpf_bindings::bindings::bpf_func_id::Type = 11u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_load_hdr_opt: aya_bpf_bindings::bindings::bpf_func_id::Type = 142u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_loop: aya_bpf_bindings::bindings::bpf_func_id::Type = 181u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_lwt_push_encap: aya_bpf_bindings::bindings::bpf_func_id::Type = 73u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_lwt_seg6_action: aya_bpf_bindings::bindings::bpf_func_id::Type = 76u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_lwt_seg6_adjust_srh: aya_bpf_bindings::bindings::bpf_func_id::Type = 75u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_lwt_seg6_store_bytes: aya_bpf_bindings::bindings::bpf_func_id::Type = 74u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_map_delete_elem: aya_bpf_bindings::bindings::bpf_func_id::Type = 3u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_map_lookup_elem: aya_bpf_bindings::bindings::bpf_func_id::Type = 1u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_map_lookup_percpu_elem: aya_bpf_bindings::bindings::bpf_func_id::Type = 195u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_map_peek_elem: aya_bpf_bindings::bindings::bpf_func_id::Type = 89u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_map_pop_elem: aya_bpf_bindings::bindings::bpf_func_id::Type = 88u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_map_push_elem: aya_bpf_bindings::bindings::bpf_func_id::Type = 87u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_map_update_elem: aya_bpf_bindings::bindings::bpf_func_id::Type = 2u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_msg_apply_bytes: aya_bpf_bindings::bindings::bpf_func_id::Type = 61u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_msg_cork_bytes: aya_bpf_bindings::bindings::bpf_func_id::Type = 62u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_msg_pop_data: aya_bpf_bindings::bindings::bpf_func_id::Type = 91u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_msg_pull_data: aya_bpf_bindings::bindings::bpf_func_id::Type = 63u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_msg_push_data: aya_bpf_bindings::bindings::bpf_func_id::Type = 90u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_msg_redirect_hash: aya_bpf_bindings::bindings::bpf_func_id::Type = 71u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_msg_redirect_map: aya_bpf_bindings::bindings::bpf_func_id::Type = 60u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_override_return: aya_bpf_bindings::bindings::bpf_func_id::Type = 58u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_per_cpu_ptr: aya_bpf_bindings::bindings::bpf_func_id::Type = 153u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_perf_event_output: aya_bpf_bindings::bindings::bpf_func_id::Type = 25u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_perf_event_read: aya_bpf_bindings::bindings::bpf_func_id::Type = 22u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_perf_event_read_value: aya_bpf_bindings::bindings::bpf_func_id::Type = 55u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_perf_prog_read_value: aya_bpf_bindings::bindings::bpf_func_id::Type = 56u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_probe_read: aya_bpf_bindings::bindings::bpf_func_id::Type = 4u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_probe_read_kernel: aya_bpf_bindings::bindings::bpf_func_id::Type = 113u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_probe_read_kernel_str: aya_bpf_bindings::bindings::bpf_func_id::Type = 115u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_probe_read_str: aya_bpf_bindings::bindings::bpf_func_id::Type = 45u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_probe_read_user: aya_bpf_bindings::bindings::bpf_func_id::Type = 112u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_probe_read_user_str: aya_bpf_bindings::bindings::bpf_func_id::Type = 114u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_probe_write_user: aya_bpf_bindings::bindings::bpf_func_id::Type = 36u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_rc_keydown: aya_bpf_bindings::bindings::bpf_func_id::Type = 78u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_rc_pointer_rel: aya_bpf_bindings::bindings::bpf_func_id::Type = 92u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_rc_repeat: aya_bpf_bindings::bindings::bpf_func_id::Type = 77u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_read_branch_records: aya_bpf_bindings::bindings::bpf_func_id::Type = 119u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_redirect: aya_bpf_bindings::bindings::bpf_func_id::Type = 23u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_redirect_map: aya_bpf_bindings::bindings::bpf_func_id::Type = 51u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_redirect_neigh: aya_bpf_bindings::bindings::bpf_func_id::Type = 152u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_redirect_peer: aya_bpf_bindings::bindings::bpf_func_id::Type = 155u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_reserve_hdr_opt: aya_bpf_bindings::bindings::bpf_func_id::Type = 144u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_ringbuf_discard: aya_bpf_bindings::bindings::bpf_func_id::Type = 133u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_ringbuf_discard_dynptr: aya_bpf_bindings::bindings::bpf_func_id::Type = 200u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_ringbuf_output: aya_bpf_bindings::bindings::bpf_func_id::Type = 130u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_ringbuf_query: aya_bpf_bindings::bindings::bpf_func_id::Type = 134u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_ringbuf_reserve: aya_bpf_bindings::bindings::bpf_func_id::Type = 131u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_ringbuf_reserve_dynptr: aya_bpf_bindings::bindings::bpf_func_id::Type = 198u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_ringbuf_submit: aya_bpf_bindings::bindings::bpf_func_id::Type = 132u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_ringbuf_submit_dynptr: aya_bpf_bindings::bindings::bpf_func_id::Type = 199u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_send_signal: aya_bpf_bindings::bindings::bpf_func_id::Type = 109u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_send_signal_thread: aya_bpf_bindings::bindings::bpf_func_id::Type = 117u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_seq_printf: aya_bpf_bindings::bindings::bpf_func_id::Type = 126u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_seq_printf_btf: aya_bpf_bindings::bindings::bpf_func_id::Type = 150u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_seq_write: aya_bpf_bindings::bindings::bpf_func_id::Type = 127u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_set_hash: aya_bpf_bindings::bindings::bpf_func_id::Type = 48u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_set_hash_invalid: aya_bpf_bindings::bindings::bpf_func_id::Type = 41u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_set_retval: aya_bpf_bindings::bindings::bpf_func_id::Type = 187u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_setsockopt: aya_bpf_bindings::bindings::bpf_func_id::Type = 49u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_sk_ancestor_cgroup_id: aya_bpf_bindings::bindings::bpf_func_id::Type = 129u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_sk_assign: aya_bpf_bindings::bindings::bpf_func_id::Type = 124u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_sk_cgroup_id: aya_bpf_bindings::bindings::bpf_func_id::Type = 128u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_sk_fullsock: aya_bpf_bindings::bindings::bpf_func_id::Type = 95u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_sk_lookup_tcp: aya_bpf_bindings::bindings::bpf_func_id::Type = 84u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_sk_lookup_udp: aya_bpf_bindings::bindings::bpf_func_id::Type = 85u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_sk_redirect_hash: aya_bpf_bindings::bindings::bpf_func_id::Type = 72u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_sk_redirect_map: aya_bpf_bindings::bindings::bpf_func_id::Type = 52u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_sk_release: aya_bpf_bindings::bindings::bpf_func_id::Type = 86u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_sk_select_reuseport: aya_bpf_bindings::bindings::bpf_func_id::Type = 82u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_sk_storage_delete: aya_bpf_bindings::bindings::bpf_func_id::Type = 108u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_sk_storage_get: aya_bpf_bindings::bindings::bpf_func_id::Type = 107u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_skb_adjust_room: aya_bpf_bindings::bindings::bpf_func_id::Type = 50u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_skb_ancestor_cgroup_id: aya_bpf_bindings::bindings::bpf_func_id::Type = 83u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_skb_cgroup_classid: aya_bpf_bindings::bindings::bpf_func_id::Type = 151u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_skb_cgroup_id: aya_bpf_bindings::bindings::bpf_func_id::Type = 79u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_skb_change_head: aya_bpf_bindings::bindings::bpf_func_id::Type = 43u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_skb_change_proto: aya_bpf_bindings::bindings::bpf_func_id::Type = 31u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_skb_change_tail: aya_bpf_bindings::bindings::bpf_func_id::Type = 38u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_skb_change_type: aya_bpf_bindings::bindings::bpf_func_id::Type = 32u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_skb_ecn_set_ce: aya_bpf_bindings::bindings::bpf_func_id::Type = 97u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_skb_get_tunnel_key: aya_bpf_bindings::bindings::bpf_func_id::Type = 20u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_skb_get_tunnel_opt: aya_bpf_bindings::bindings::bpf_func_id::Type = 29u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_skb_get_xfrm_state: aya_bpf_bindings::bindings::bpf_func_id::Type = 66u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_skb_load_bytes: aya_bpf_bindings::bindings::bpf_func_id::Type = 26u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_skb_load_bytes_relative: aya_bpf_bindings::bindings::bpf_func_id::Type = 68u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_skb_output: aya_bpf_bindings::bindings::bpf_func_id::Type = 111u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_skb_pull_data: aya_bpf_bindings::bindings::bpf_func_id::Type = 39u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_skb_set_tstamp: aya_bpf_bindings::bindings::bpf_func_id::Type = 192u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_skb_set_tunnel_key: aya_bpf_bindings::bindings::bpf_func_id::Type = 21u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_skb_set_tunnel_opt: aya_bpf_bindings::bindings::bpf_func_id::Type = 30u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_skb_store_bytes: aya_bpf_bindings::bindings::bpf_func_id::Type = 9u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_skb_under_cgroup: aya_bpf_bindings::bindings::bpf_func_id::Type = 33u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_skb_vlan_pop: aya_bpf_bindings::bindings::bpf_func_id::Type = 19u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_skb_vlan_push: aya_bpf_bindings::bindings::bpf_func_id::Type = 18u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_skc_lookup_tcp: aya_bpf_bindings::bindings::bpf_func_id::Type = 99u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_skc_to_mptcp_sock: aya_bpf_bindings::bindings::bpf_func_id::Type = 196u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_skc_to_tcp6_sock: aya_bpf_bindings::bindings::bpf_func_id::Type = 136u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_skc_to_tcp_request_sock: aya_bpf_bindings::bindings::bpf_func_id::Type = 139u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_skc_to_tcp_sock: aya_bpf_bindings::bindings::bpf_func_id::Type = 137u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_skc_to_tcp_timewait_sock: aya_bpf_bindings::bindings::bpf_func_id::Type = 138u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_skc_to_udp6_sock: aya_bpf_bindings::bindings::bpf_func_id::Type = 140u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_skc_to_unix_sock: aya_bpf_bindings::bindings::bpf_func_id::Type = 178u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_snprintf: aya_bpf_bindings::bindings::bpf_func_id::Type = 165u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_snprintf_btf: aya_bpf_bindings::bindings::bpf_func_id::Type = 149u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_sock_from_file: aya_bpf_bindings::bindings::bpf_func_id::Type = 162u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_sock_hash_update: aya_bpf_bindings::bindings::bpf_func_id::Type = 70u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_sock_map_update: aya_bpf_bindings::bindings::bpf_func_id::Type = 53u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_sock_ops_cb_flags_set: aya_bpf_bindings::bindings::bpf_func_id::Type = 59u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_spin_lock: aya_bpf_bindings::bindings::bpf_func_id::Type = 93u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_spin_unlock: aya_bpf_bindings::bindings::bpf_func_id::Type = 94u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_store_hdr_opt: aya_bpf_bindings::bindings::bpf_func_id::Type = 143u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_strncmp: aya_bpf_bindings::bindings::bpf_func_id::Type = 182u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_strtol: aya_bpf_bindings::bindings::bpf_func_id::Type = 105u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_strtoul: aya_bpf_bindings::bindings::bpf_func_id::Type = 106u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_sys_bpf: aya_bpf_bindings::bindings::bpf_func_id::Type = 166u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_sys_close: aya_bpf_bindings::bindings::bpf_func_id::Type = 168u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_sysctl_get_current_value: aya_bpf_bindings::bindings::bpf_func_id::Type = 102u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_sysctl_get_name: aya_bpf_bindings::bindings::bpf_func_id::Type = 101u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_sysctl_get_new_value: aya_bpf_bindings::bindings::bpf_func_id::Type = 103u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_sysctl_set_new_value: aya_bpf_bindings::bindings::bpf_func_id::Type = 104u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_tail_call: aya_bpf_bindings::bindings::bpf_func_id::Type = 12u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_task_pt_regs: aya_bpf_bindings::bindings::bpf_func_id::Type = 175u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_task_storage_delete: aya_bpf_bindings::bindings::bpf_func_id::Type = 157u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_task_storage_get: aya_bpf_bindings::bindings::bpf_func_id::Type = 156u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_tcp_check_syncookie: aya_bpf_bindings::bindings::bpf_func_id::Type = 100u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_tcp_gen_syncookie: aya_bpf_bindings::bindings::bpf_func_id::Type = 110u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_tcp_raw_check_syncookie_ipv4: aya_bpf_bindings::bindings::bpf_func_id::Type = 206u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_tcp_raw_check_syncookie_ipv6: aya_bpf_bindings::bindings::bpf_func_id::Type = 207u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_tcp_raw_gen_syncookie_ipv4: aya_bpf_bindings::bindings::bpf_func_id::Type = 204u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_tcp_raw_gen_syncookie_ipv6: aya_bpf_bindings::bindings::bpf_func_id::Type = 205u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_tcp_send_ack: aya_bpf_bindings::bindings::bpf_func_id::Type = 116u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_tcp_sock: aya_bpf_bindings::bindings::bpf_func_id::Type = 96u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_this_cpu_ptr: aya_bpf_bindings::bindings::bpf_func_id::Type = 154u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_timer_cancel: aya_bpf_bindings::bindings::bpf_func_id::Type = 172u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_timer_init: aya_bpf_bindings::bindings::bpf_func_id::Type = 169u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_timer_set_callback: aya_bpf_bindings::bindings::bpf_func_id::Type = 170u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_timer_start: aya_bpf_bindings::bindings::bpf_func_id::Type = 171u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_trace_printk: aya_bpf_bindings::bindings::bpf_func_id::Type = 6u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_trace_vprintk: aya_bpf_bindings::bindings::bpf_func_id::Type = 177u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_unspec: aya_bpf_bindings::bindings::bpf_func_id::Type = 0u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_user_ringbuf_drain: aya_bpf_bindings::bindings::bpf_func_id::Type = 209u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_xdp_adjust_head: aya_bpf_bindings::bindings::bpf_func_id::Type = 44u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_xdp_adjust_meta: aya_bpf_bindings::bindings::bpf_func_id::Type = 54u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_xdp_adjust_tail: aya_bpf_bindings::bindings::bpf_func_id::Type = 65u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_xdp_get_buff_len: aya_bpf_bindings::bindings::bpf_func_id::Type = 188u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_xdp_load_bytes: aya_bpf_bindings::bindings::bpf_func_id::Type = 189u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_xdp_output: aya_bpf_bindings::bindings::bpf_func_id::Type = 121u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::BPF_FUNC_xdp_store_bytes: aya_bpf_bindings::bindings::bpf_func_id::Type = 190u32 +pub const aya_bpf_bindings::bindings::bpf_func_id::__BPF_FUNC_MAX_ID: aya_bpf_bindings::bindings::bpf_func_id::Type = 212u32 +pub type aya_bpf_bindings::bindings::bpf_func_id::Type = aya_bpf_cty::ad::c_uint +pub mod aya_bpf_bindings::bindings::bpf_hdr_start_off +pub const aya_bpf_bindings::bindings::bpf_hdr_start_off::BPF_HDR_START_MAC: aya_bpf_bindings::bindings::bpf_hdr_start_off::Type = 0u32 +pub const aya_bpf_bindings::bindings::bpf_hdr_start_off::BPF_HDR_START_NET: aya_bpf_bindings::bindings::bpf_hdr_start_off::Type = 1u32 +pub type aya_bpf_bindings::bindings::bpf_hdr_start_off::Type = aya_bpf_cty::ad::c_uint +pub mod aya_bpf_bindings::bindings::bpf_link_type +pub const aya_bpf_bindings::bindings::bpf_link_type::BPF_LINK_TYPE_CGROUP: aya_bpf_bindings::bindings::bpf_link_type::Type = 3u32 +pub const aya_bpf_bindings::bindings::bpf_link_type::BPF_LINK_TYPE_ITER: aya_bpf_bindings::bindings::bpf_link_type::Type = 4u32 +pub const aya_bpf_bindings::bindings::bpf_link_type::BPF_LINK_TYPE_KPROBE_MULTI: aya_bpf_bindings::bindings::bpf_link_type::Type = 8u32 +pub const aya_bpf_bindings::bindings::bpf_link_type::BPF_LINK_TYPE_NETFILTER: aya_bpf_bindings::bindings::bpf_link_type::Type = 10u32 +pub const aya_bpf_bindings::bindings::bpf_link_type::BPF_LINK_TYPE_NETNS: aya_bpf_bindings::bindings::bpf_link_type::Type = 5u32 +pub const aya_bpf_bindings::bindings::bpf_link_type::BPF_LINK_TYPE_PERF_EVENT: aya_bpf_bindings::bindings::bpf_link_type::Type = 7u32 +pub const aya_bpf_bindings::bindings::bpf_link_type::BPF_LINK_TYPE_RAW_TRACEPOINT: aya_bpf_bindings::bindings::bpf_link_type::Type = 1u32 +pub const aya_bpf_bindings::bindings::bpf_link_type::BPF_LINK_TYPE_STRUCT_OPS: aya_bpf_bindings::bindings::bpf_link_type::Type = 9u32 +pub const aya_bpf_bindings::bindings::bpf_link_type::BPF_LINK_TYPE_TRACING: aya_bpf_bindings::bindings::bpf_link_type::Type = 2u32 +pub const aya_bpf_bindings::bindings::bpf_link_type::BPF_LINK_TYPE_UNSPEC: aya_bpf_bindings::bindings::bpf_link_type::Type = 0u32 +pub const aya_bpf_bindings::bindings::bpf_link_type::BPF_LINK_TYPE_XDP: aya_bpf_bindings::bindings::bpf_link_type::Type = 6u32 +pub const aya_bpf_bindings::bindings::bpf_link_type::MAX_BPF_LINK_TYPE: aya_bpf_bindings::bindings::bpf_link_type::Type = 11u32 +pub type aya_bpf_bindings::bindings::bpf_link_type::Type = aya_bpf_cty::ad::c_uint +pub mod aya_bpf_bindings::bindings::bpf_lwt_encap_mode +pub const aya_bpf_bindings::bindings::bpf_lwt_encap_mode::BPF_LWT_ENCAP_IP: aya_bpf_bindings::bindings::bpf_lwt_encap_mode::Type = 2u32 +pub const aya_bpf_bindings::bindings::bpf_lwt_encap_mode::BPF_LWT_ENCAP_SEG6: aya_bpf_bindings::bindings::bpf_lwt_encap_mode::Type = 0u32 +pub const aya_bpf_bindings::bindings::bpf_lwt_encap_mode::BPF_LWT_ENCAP_SEG6_INLINE: aya_bpf_bindings::bindings::bpf_lwt_encap_mode::Type = 1u32 +pub type aya_bpf_bindings::bindings::bpf_lwt_encap_mode::Type = aya_bpf_cty::ad::c_uint +pub mod aya_bpf_bindings::bindings::bpf_map_type +pub const aya_bpf_bindings::bindings::bpf_map_type::BPF_MAP_TYPE_ARRAY: aya_bpf_bindings::bindings::bpf_map_type::Type = 2u32 +pub const aya_bpf_bindings::bindings::bpf_map_type::BPF_MAP_TYPE_ARRAY_OF_MAPS: aya_bpf_bindings::bindings::bpf_map_type::Type = 12u32 +pub const aya_bpf_bindings::bindings::bpf_map_type::BPF_MAP_TYPE_BLOOM_FILTER: aya_bpf_bindings::bindings::bpf_map_type::Type = 30u32 +pub const aya_bpf_bindings::bindings::bpf_map_type::BPF_MAP_TYPE_CGROUP_ARRAY: aya_bpf_bindings::bindings::bpf_map_type::Type = 8u32 +pub const aya_bpf_bindings::bindings::bpf_map_type::BPF_MAP_TYPE_CGROUP_STORAGE: aya_bpf_bindings::bindings::bpf_map_type::Type = 19u32 +pub const aya_bpf_bindings::bindings::bpf_map_type::BPF_MAP_TYPE_CGROUP_STORAGE_DEPRECATED: aya_bpf_bindings::bindings::bpf_map_type::Type = 19u32 +pub const aya_bpf_bindings::bindings::bpf_map_type::BPF_MAP_TYPE_CGRP_STORAGE: aya_bpf_bindings::bindings::bpf_map_type::Type = 32u32 +pub const aya_bpf_bindings::bindings::bpf_map_type::BPF_MAP_TYPE_CPUMAP: aya_bpf_bindings::bindings::bpf_map_type::Type = 16u32 +pub const aya_bpf_bindings::bindings::bpf_map_type::BPF_MAP_TYPE_DEVMAP: aya_bpf_bindings::bindings::bpf_map_type::Type = 14u32 +pub const aya_bpf_bindings::bindings::bpf_map_type::BPF_MAP_TYPE_DEVMAP_HASH: aya_bpf_bindings::bindings::bpf_map_type::Type = 25u32 +pub const aya_bpf_bindings::bindings::bpf_map_type::BPF_MAP_TYPE_HASH: aya_bpf_bindings::bindings::bpf_map_type::Type = 1u32 +pub const aya_bpf_bindings::bindings::bpf_map_type::BPF_MAP_TYPE_HASH_OF_MAPS: aya_bpf_bindings::bindings::bpf_map_type::Type = 13u32 +pub const aya_bpf_bindings::bindings::bpf_map_type::BPF_MAP_TYPE_INODE_STORAGE: aya_bpf_bindings::bindings::bpf_map_type::Type = 28u32 +pub const aya_bpf_bindings::bindings::bpf_map_type::BPF_MAP_TYPE_LPM_TRIE: aya_bpf_bindings::bindings::bpf_map_type::Type = 11u32 +pub const aya_bpf_bindings::bindings::bpf_map_type::BPF_MAP_TYPE_LRU_HASH: aya_bpf_bindings::bindings::bpf_map_type::Type = 9u32 +pub const aya_bpf_bindings::bindings::bpf_map_type::BPF_MAP_TYPE_LRU_PERCPU_HASH: aya_bpf_bindings::bindings::bpf_map_type::Type = 10u32 +pub const aya_bpf_bindings::bindings::bpf_map_type::BPF_MAP_TYPE_PERCPU_ARRAY: aya_bpf_bindings::bindings::bpf_map_type::Type = 6u32 +pub const aya_bpf_bindings::bindings::bpf_map_type::BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE: aya_bpf_bindings::bindings::bpf_map_type::Type = 21u32 +pub const aya_bpf_bindings::bindings::bpf_map_type::BPF_MAP_TYPE_PERCPU_HASH: aya_bpf_bindings::bindings::bpf_map_type::Type = 5u32 +pub const aya_bpf_bindings::bindings::bpf_map_type::BPF_MAP_TYPE_PERF_EVENT_ARRAY: aya_bpf_bindings::bindings::bpf_map_type::Type = 4u32 +pub const aya_bpf_bindings::bindings::bpf_map_type::BPF_MAP_TYPE_PROG_ARRAY: aya_bpf_bindings::bindings::bpf_map_type::Type = 3u32 +pub const aya_bpf_bindings::bindings::bpf_map_type::BPF_MAP_TYPE_QUEUE: aya_bpf_bindings::bindings::bpf_map_type::Type = 22u32 +pub const aya_bpf_bindings::bindings::bpf_map_type::BPF_MAP_TYPE_REUSEPORT_SOCKARRAY: aya_bpf_bindings::bindings::bpf_map_type::Type = 20u32 +pub const aya_bpf_bindings::bindings::bpf_map_type::BPF_MAP_TYPE_RINGBUF: aya_bpf_bindings::bindings::bpf_map_type::Type = 27u32 +pub const aya_bpf_bindings::bindings::bpf_map_type::BPF_MAP_TYPE_SK_STORAGE: aya_bpf_bindings::bindings::bpf_map_type::Type = 24u32 +pub const aya_bpf_bindings::bindings::bpf_map_type::BPF_MAP_TYPE_SOCKHASH: aya_bpf_bindings::bindings::bpf_map_type::Type = 18u32 +pub const aya_bpf_bindings::bindings::bpf_map_type::BPF_MAP_TYPE_SOCKMAP: aya_bpf_bindings::bindings::bpf_map_type::Type = 15u32 +pub const aya_bpf_bindings::bindings::bpf_map_type::BPF_MAP_TYPE_STACK: aya_bpf_bindings::bindings::bpf_map_type::Type = 23u32 +pub const aya_bpf_bindings::bindings::bpf_map_type::BPF_MAP_TYPE_STACK_TRACE: aya_bpf_bindings::bindings::bpf_map_type::Type = 7u32 +pub const aya_bpf_bindings::bindings::bpf_map_type::BPF_MAP_TYPE_STRUCT_OPS: aya_bpf_bindings::bindings::bpf_map_type::Type = 26u32 +pub const aya_bpf_bindings::bindings::bpf_map_type::BPF_MAP_TYPE_TASK_STORAGE: aya_bpf_bindings::bindings::bpf_map_type::Type = 29u32 +pub const aya_bpf_bindings::bindings::bpf_map_type::BPF_MAP_TYPE_UNSPEC: aya_bpf_bindings::bindings::bpf_map_type::Type = 0u32 +pub const aya_bpf_bindings::bindings::bpf_map_type::BPF_MAP_TYPE_USER_RINGBUF: aya_bpf_bindings::bindings::bpf_map_type::Type = 31u32 +pub const aya_bpf_bindings::bindings::bpf_map_type::BPF_MAP_TYPE_XSKMAP: aya_bpf_bindings::bindings::bpf_map_type::Type = 17u32 +pub type aya_bpf_bindings::bindings::bpf_map_type::Type = aya_bpf_cty::ad::c_uint +pub mod aya_bpf_bindings::bindings::bpf_prog_type +pub const aya_bpf_bindings::bindings::bpf_prog_type::BPF_PROG_TYPE_CGROUP_DEVICE: aya_bpf_bindings::bindings::bpf_prog_type::Type = 15u32 +pub const aya_bpf_bindings::bindings::bpf_prog_type::BPF_PROG_TYPE_CGROUP_SKB: aya_bpf_bindings::bindings::bpf_prog_type::Type = 8u32 +pub const aya_bpf_bindings::bindings::bpf_prog_type::BPF_PROG_TYPE_CGROUP_SOCK: aya_bpf_bindings::bindings::bpf_prog_type::Type = 9u32 +pub const aya_bpf_bindings::bindings::bpf_prog_type::BPF_PROG_TYPE_CGROUP_SOCKOPT: aya_bpf_bindings::bindings::bpf_prog_type::Type = 25u32 +pub const aya_bpf_bindings::bindings::bpf_prog_type::BPF_PROG_TYPE_CGROUP_SOCK_ADDR: aya_bpf_bindings::bindings::bpf_prog_type::Type = 18u32 +pub const aya_bpf_bindings::bindings::bpf_prog_type::BPF_PROG_TYPE_CGROUP_SYSCTL: aya_bpf_bindings::bindings::bpf_prog_type::Type = 23u32 +pub const aya_bpf_bindings::bindings::bpf_prog_type::BPF_PROG_TYPE_EXT: aya_bpf_bindings::bindings::bpf_prog_type::Type = 28u32 +pub const aya_bpf_bindings::bindings::bpf_prog_type::BPF_PROG_TYPE_FLOW_DISSECTOR: aya_bpf_bindings::bindings::bpf_prog_type::Type = 22u32 +pub const aya_bpf_bindings::bindings::bpf_prog_type::BPF_PROG_TYPE_KPROBE: aya_bpf_bindings::bindings::bpf_prog_type::Type = 2u32 +pub const aya_bpf_bindings::bindings::bpf_prog_type::BPF_PROG_TYPE_LIRC_MODE2: aya_bpf_bindings::bindings::bpf_prog_type::Type = 20u32 +pub const aya_bpf_bindings::bindings::bpf_prog_type::BPF_PROG_TYPE_LSM: aya_bpf_bindings::bindings::bpf_prog_type::Type = 29u32 +pub const aya_bpf_bindings::bindings::bpf_prog_type::BPF_PROG_TYPE_LWT_IN: aya_bpf_bindings::bindings::bpf_prog_type::Type = 10u32 +pub const aya_bpf_bindings::bindings::bpf_prog_type::BPF_PROG_TYPE_LWT_OUT: aya_bpf_bindings::bindings::bpf_prog_type::Type = 11u32 +pub const aya_bpf_bindings::bindings::bpf_prog_type::BPF_PROG_TYPE_LWT_SEG6LOCAL: aya_bpf_bindings::bindings::bpf_prog_type::Type = 19u32 +pub const aya_bpf_bindings::bindings::bpf_prog_type::BPF_PROG_TYPE_LWT_XMIT: aya_bpf_bindings::bindings::bpf_prog_type::Type = 12u32 +pub const aya_bpf_bindings::bindings::bpf_prog_type::BPF_PROG_TYPE_NETFILTER: aya_bpf_bindings::bindings::bpf_prog_type::Type = 32u32 +pub const aya_bpf_bindings::bindings::bpf_prog_type::BPF_PROG_TYPE_PERF_EVENT: aya_bpf_bindings::bindings::bpf_prog_type::Type = 7u32 +pub const aya_bpf_bindings::bindings::bpf_prog_type::BPF_PROG_TYPE_RAW_TRACEPOINT: aya_bpf_bindings::bindings::bpf_prog_type::Type = 17u32 +pub const aya_bpf_bindings::bindings::bpf_prog_type::BPF_PROG_TYPE_RAW_TRACEPOINT_WRITABLE: aya_bpf_bindings::bindings::bpf_prog_type::Type = 24u32 +pub const aya_bpf_bindings::bindings::bpf_prog_type::BPF_PROG_TYPE_SCHED_ACT: aya_bpf_bindings::bindings::bpf_prog_type::Type = 4u32 +pub const aya_bpf_bindings::bindings::bpf_prog_type::BPF_PROG_TYPE_SCHED_CLS: aya_bpf_bindings::bindings::bpf_prog_type::Type = 3u32 +pub const aya_bpf_bindings::bindings::bpf_prog_type::BPF_PROG_TYPE_SK_LOOKUP: aya_bpf_bindings::bindings::bpf_prog_type::Type = 30u32 +pub const aya_bpf_bindings::bindings::bpf_prog_type::BPF_PROG_TYPE_SK_MSG: aya_bpf_bindings::bindings::bpf_prog_type::Type = 16u32 +pub const aya_bpf_bindings::bindings::bpf_prog_type::BPF_PROG_TYPE_SK_REUSEPORT: aya_bpf_bindings::bindings::bpf_prog_type::Type = 21u32 +pub const aya_bpf_bindings::bindings::bpf_prog_type::BPF_PROG_TYPE_SK_SKB: aya_bpf_bindings::bindings::bpf_prog_type::Type = 14u32 +pub const aya_bpf_bindings::bindings::bpf_prog_type::BPF_PROG_TYPE_SOCKET_FILTER: aya_bpf_bindings::bindings::bpf_prog_type::Type = 1u32 +pub const aya_bpf_bindings::bindings::bpf_prog_type::BPF_PROG_TYPE_SOCK_OPS: aya_bpf_bindings::bindings::bpf_prog_type::Type = 13u32 +pub const aya_bpf_bindings::bindings::bpf_prog_type::BPF_PROG_TYPE_STRUCT_OPS: aya_bpf_bindings::bindings::bpf_prog_type::Type = 27u32 +pub const aya_bpf_bindings::bindings::bpf_prog_type::BPF_PROG_TYPE_SYSCALL: aya_bpf_bindings::bindings::bpf_prog_type::Type = 31u32 +pub const aya_bpf_bindings::bindings::bpf_prog_type::BPF_PROG_TYPE_TRACEPOINT: aya_bpf_bindings::bindings::bpf_prog_type::Type = 5u32 +pub const aya_bpf_bindings::bindings::bpf_prog_type::BPF_PROG_TYPE_TRACING: aya_bpf_bindings::bindings::bpf_prog_type::Type = 26u32 +pub const aya_bpf_bindings::bindings::bpf_prog_type::BPF_PROG_TYPE_UNSPEC: aya_bpf_bindings::bindings::bpf_prog_type::Type = 0u32 +pub const aya_bpf_bindings::bindings::bpf_prog_type::BPF_PROG_TYPE_XDP: aya_bpf_bindings::bindings::bpf_prog_type::Type = 6u32 +pub type aya_bpf_bindings::bindings::bpf_prog_type::Type = aya_bpf_cty::ad::c_uint +pub mod aya_bpf_bindings::bindings::bpf_ret_code +pub const aya_bpf_bindings::bindings::bpf_ret_code::BPF_DROP: aya_bpf_bindings::bindings::bpf_ret_code::Type = 2u32 +pub const aya_bpf_bindings::bindings::bpf_ret_code::BPF_FLOW_DISSECTOR_CONTINUE: aya_bpf_bindings::bindings::bpf_ret_code::Type = 129u32 +pub const aya_bpf_bindings::bindings::bpf_ret_code::BPF_LWT_REROUTE: aya_bpf_bindings::bindings::bpf_ret_code::Type = 128u32 +pub const aya_bpf_bindings::bindings::bpf_ret_code::BPF_OK: aya_bpf_bindings::bindings::bpf_ret_code::Type = 0u32 +pub const aya_bpf_bindings::bindings::bpf_ret_code::BPF_REDIRECT: aya_bpf_bindings::bindings::bpf_ret_code::Type = 7u32 +pub type aya_bpf_bindings::bindings::bpf_ret_code::Type = aya_bpf_cty::ad::c_uint +pub mod aya_bpf_bindings::bindings::bpf_stack_build_id_status +pub const aya_bpf_bindings::bindings::bpf_stack_build_id_status::BPF_STACK_BUILD_ID_EMPTY: aya_bpf_bindings::bindings::bpf_stack_build_id_status::Type = 0u32 +pub const aya_bpf_bindings::bindings::bpf_stack_build_id_status::BPF_STACK_BUILD_ID_IP: aya_bpf_bindings::bindings::bpf_stack_build_id_status::Type = 2u32 +pub const aya_bpf_bindings::bindings::bpf_stack_build_id_status::BPF_STACK_BUILD_ID_VALID: aya_bpf_bindings::bindings::bpf_stack_build_id_status::Type = 1u32 +pub type aya_bpf_bindings::bindings::bpf_stack_build_id_status::Type = aya_bpf_cty::ad::c_uint +pub mod aya_bpf_bindings::bindings::bpf_stats_type +pub const aya_bpf_bindings::bindings::bpf_stats_type::BPF_STATS_RUN_TIME: aya_bpf_bindings::bindings::bpf_stats_type::Type = 0u32 +pub type aya_bpf_bindings::bindings::bpf_stats_type::Type = aya_bpf_cty::ad::c_uint +pub mod aya_bpf_bindings::bindings::bpf_task_fd_type +pub const aya_bpf_bindings::bindings::bpf_task_fd_type::BPF_FD_TYPE_KPROBE: aya_bpf_bindings::bindings::bpf_task_fd_type::Type = 2u32 +pub const aya_bpf_bindings::bindings::bpf_task_fd_type::BPF_FD_TYPE_KRETPROBE: aya_bpf_bindings::bindings::bpf_task_fd_type::Type = 3u32 +pub const aya_bpf_bindings::bindings::bpf_task_fd_type::BPF_FD_TYPE_RAW_TRACEPOINT: aya_bpf_bindings::bindings::bpf_task_fd_type::Type = 0u32 +pub const aya_bpf_bindings::bindings::bpf_task_fd_type::BPF_FD_TYPE_TRACEPOINT: aya_bpf_bindings::bindings::bpf_task_fd_type::Type = 1u32 +pub const aya_bpf_bindings::bindings::bpf_task_fd_type::BPF_FD_TYPE_UPROBE: aya_bpf_bindings::bindings::bpf_task_fd_type::Type = 4u32 +pub const aya_bpf_bindings::bindings::bpf_task_fd_type::BPF_FD_TYPE_URETPROBE: aya_bpf_bindings::bindings::bpf_task_fd_type::Type = 5u32 +pub type aya_bpf_bindings::bindings::bpf_task_fd_type::Type = aya_bpf_cty::ad::c_uint +pub mod aya_bpf_bindings::bindings::sk_action +pub const aya_bpf_bindings::bindings::sk_action::SK_DROP: aya_bpf_bindings::bindings::sk_action::Type = 0u32 +pub const aya_bpf_bindings::bindings::sk_action::SK_PASS: aya_bpf_bindings::bindings::sk_action::Type = 1u32 +pub type aya_bpf_bindings::bindings::sk_action::Type = aya_bpf_cty::ad::c_uint +pub mod aya_bpf_bindings::bindings::xdp_action +pub const aya_bpf_bindings::bindings::xdp_action::XDP_ABORTED: aya_bpf_bindings::bindings::xdp_action::Type = 0u32 +pub const aya_bpf_bindings::bindings::xdp_action::XDP_DROP: aya_bpf_bindings::bindings::xdp_action::Type = 1u32 +pub const aya_bpf_bindings::bindings::xdp_action::XDP_PASS: aya_bpf_bindings::bindings::xdp_action::Type = 2u32 +pub const aya_bpf_bindings::bindings::xdp_action::XDP_REDIRECT: aya_bpf_bindings::bindings::xdp_action::Type = 4u32 +pub const aya_bpf_bindings::bindings::xdp_action::XDP_TX: aya_bpf_bindings::bindings::xdp_action::Type = 3u32 +pub type aya_bpf_bindings::bindings::xdp_action::Type = aya_bpf_cty::ad::c_uint +#[repr(C)] pub union aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_1 +pub aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_1::_bitfield_1: aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 8]> +pub aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_1::_bitfield_align_1: [u8; 0] +pub aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_1::flow_keys: *mut aya_bpf_bindings::bindings::bpf_flow_keys +impl aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_1::new_bitfield_1() -> aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 8]> +impl core::clone::Clone for aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_1::clone(&self) -> aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_1 +impl core::marker::Copy for aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_1 +impl !core::marker::Send for aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_1 +impl !core::marker::Sync for aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_1 +impl core::marker::Unpin for aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_1 +impl core::convert::Into for aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_1 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_1 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_1::Error = >::Error +pub fn aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_2 +pub aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_2::_bitfield_1: aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 8]> +pub aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_2::_bitfield_align_1: [u8; 0] +pub aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_2::sk: *mut aya_bpf_bindings::bindings::bpf_sock +impl aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_2::new_bitfield_1() -> aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 8]> +impl core::clone::Clone for aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_2::clone(&self) -> aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_2 +impl core::marker::Copy for aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_2 +impl !core::marker::Send for aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_2 +impl !core::marker::Sync for aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_2 +impl core::marker::Unpin for aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_2 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_2 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_2 +impl core::convert::Into for aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_2 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_2::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_2 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_2::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_2::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_2 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_2::Error = >::Error +pub fn aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_2::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_2 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_2::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_2::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_2::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_2::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::bpf_attr +pub aya_bpf_bindings::bindings::bpf_attr::__bindgen_anon_1: aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_attr::__bindgen_anon_2: aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2 +pub aya_bpf_bindings::bindings::bpf_attr::__bindgen_anon_3: aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4 +pub aya_bpf_bindings::bindings::bpf_attr::__bindgen_anon_4: aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_5 +pub aya_bpf_bindings::bindings::bpf_attr::__bindgen_anon_5: aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_6 +pub aya_bpf_bindings::bindings::bpf_attr::__bindgen_anon_6: aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8 +pub aya_bpf_bindings::bindings::bpf_attr::__bindgen_anon_7: aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_12 +pub aya_bpf_bindings::bindings::bpf_attr::batch: aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_3 +pub aya_bpf_bindings::bindings::bpf_attr::enable_stats: aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_17 +pub aya_bpf_bindings::bindings::bpf_attr::info: aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_9 +pub aya_bpf_bindings::bindings::bpf_attr::iter_create: aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_18 +pub aya_bpf_bindings::bindings::bpf_attr::link_create: aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14 +pub aya_bpf_bindings::bindings::bpf_attr::link_detach: aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_16 +pub aya_bpf_bindings::bindings::bpf_attr::link_update: aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15 +pub aya_bpf_bindings::bindings::bpf_attr::prog_bind_map: aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_19 +pub aya_bpf_bindings::bindings::bpf_attr::query: aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_10 +pub aya_bpf_bindings::bindings::bpf_attr::raw_tracepoint: aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_11 +pub aya_bpf_bindings::bindings::bpf_attr::task_fd_query: aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_13 +pub aya_bpf_bindings::bindings::bpf_attr::test: aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_attr +pub fn aya_bpf_bindings::bindings::bpf_attr::clone(&self) -> aya_bpf_bindings::bindings::bpf_attr +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_attr +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_attr +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_attr +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_attr +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_attr +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_attr +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_attr where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_attr::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_attr where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_attr::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_attr::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_attr where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_attr::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_attr::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_attr where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_attr where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_attr where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_attr +pub fn aya_bpf_bindings::bindings::bpf_attr::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_1::map_fd: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_1::prog_fd: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_1::clone(&self) -> aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_1 +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_1 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_1 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_1 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_1 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_1 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_1 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_1::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_2 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_2::target_fd: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_2::target_ifindex: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_2::clone(&self) -> aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_2 +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_2 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_2 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_2 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_2 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_2 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_2 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_2 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_2::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_2 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_2::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_2::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_2 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_2::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_2::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_2 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_2::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_2::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_2::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_2::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3::__bindgen_anon_1: aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3::kprobe_multi: aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3::netfilter: aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3::perf_event: aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3::target_btf_id: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3::tracing: aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3::clone(&self) -> aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3 +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_1::new_map_fd: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_1::new_prog_fd: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_1::clone(&self) -> aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_1 +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_1 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_1 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_1 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_1 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_1 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_1 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_1::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_2 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_2::old_map_fd: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_2::old_prog_fd: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_2::clone(&self) -> aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_2 +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_2 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_2 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_2 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_2 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_2 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_2 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_2 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_2::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_2 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_2::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_2::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_2 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_2::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_2::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_2 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_2::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_2::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_2::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_2::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2__bindgen_ty_1::next_key: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2__bindgen_ty_1::value: aya_bpf_bindings::bindings::__u64 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2__bindgen_ty_1::clone(&self) -> aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2__bindgen_ty_1 +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2__bindgen_ty_1 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2__bindgen_ty_1 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2__bindgen_ty_1 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2__bindgen_ty_1 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2__bindgen_ty_1 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2__bindgen_ty_1 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2__bindgen_ty_1::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4__bindgen_ty_1::attach_btf_obj_fd: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4__bindgen_ty_1::attach_prog_fd: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4__bindgen_ty_1::clone(&self) -> aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4__bindgen_ty_1 +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4__bindgen_ty_1 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4__bindgen_ty_1 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4__bindgen_ty_1 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4__bindgen_ty_1 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4__bindgen_ty_1 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4__bindgen_ty_1 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4__bindgen_ty_1::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8__bindgen_ty_1::btf_id: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8__bindgen_ty_1::link_id: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8__bindgen_ty_1::map_id: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8__bindgen_ty_1::prog_id: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8__bindgen_ty_1::start_id: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8__bindgen_ty_1::clone(&self) -> aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8__bindgen_ty_1 +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8__bindgen_ty_1 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8__bindgen_ty_1 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8__bindgen_ty_1 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8__bindgen_ty_1 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8__bindgen_ty_1 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8__bindgen_ty_1 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8__bindgen_ty_1::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::bpf_cpumap_val__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_cpumap_val__bindgen_ty_1::fd: aya_bpf_cty::ad::c_int +pub aya_bpf_bindings::bindings::bpf_cpumap_val__bindgen_ty_1::id: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_cpumap_val__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_cpumap_val__bindgen_ty_1::clone(&self) -> aya_bpf_bindings::bindings::bpf_cpumap_val__bindgen_ty_1 +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_cpumap_val__bindgen_ty_1 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_cpumap_val__bindgen_ty_1 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_cpumap_val__bindgen_ty_1 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_cpumap_val__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_cpumap_val__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_cpumap_val__bindgen_ty_1 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_cpumap_val__bindgen_ty_1 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_cpumap_val__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_cpumap_val__bindgen_ty_1 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_cpumap_val__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_cpumap_val__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_cpumap_val__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_cpumap_val__bindgen_ty_1::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_cpumap_val__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_cpumap_val__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_cpumap_val__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_cpumap_val__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_cpumap_val__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_cpumap_val__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_cpumap_val__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_cpumap_val__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_cpumap_val__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::bpf_devmap_val__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_devmap_val__bindgen_ty_1::fd: aya_bpf_cty::ad::c_int +pub aya_bpf_bindings::bindings::bpf_devmap_val__bindgen_ty_1::id: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_devmap_val__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_devmap_val__bindgen_ty_1::clone(&self) -> aya_bpf_bindings::bindings::bpf_devmap_val__bindgen_ty_1 +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_devmap_val__bindgen_ty_1 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_devmap_val__bindgen_ty_1 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_devmap_val__bindgen_ty_1 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_devmap_val__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_devmap_val__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_devmap_val__bindgen_ty_1 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_devmap_val__bindgen_ty_1 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_devmap_val__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_devmap_val__bindgen_ty_1 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_devmap_val__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_devmap_val__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_devmap_val__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_devmap_val__bindgen_ty_1::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_devmap_val__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_devmap_val__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_devmap_val__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_devmap_val__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_devmap_val__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_devmap_val__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_devmap_val__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_devmap_val__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_devmap_val__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_1::mtu_result: aya_bpf_bindings::bindings::__u16 +pub aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_1::tot_len: aya_bpf_bindings::bindings::__u16 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_1::clone(&self) -> aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_1 +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_1 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_1 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_1 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_1 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_1 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_1 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_1::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_2 +pub aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_2::flowinfo: aya_bpf_bindings::bindings::__be32 +pub aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_2::rt_metric: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_2::tos: aya_bpf_bindings::bindings::__u8 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_2::clone(&self) -> aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_2 +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_2 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_2 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_2 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_2 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_2 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_2 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_2 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_2::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_2 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_2::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_2::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_2 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_2::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_2::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_2 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_2::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_2::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_2::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_2::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_3 +pub aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_3::ipv4_src: aya_bpf_bindings::bindings::__be32 +pub aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_3::ipv6_src: [aya_bpf_bindings::bindings::__u32; 4] +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_3 +pub fn aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_3::clone(&self) -> aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_3 +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_3 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_3 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_3 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_3 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_3 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_3 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_3 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_3::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_3 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_3::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_3::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_3 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_3::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_3::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_3 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_3::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_3 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_3::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_3 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_3::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_3 +pub fn aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_3::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_4 +pub aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_4::ipv4_dst: aya_bpf_bindings::bindings::__be32 +pub aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_4::ipv6_dst: [aya_bpf_bindings::bindings::__u32; 4] +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_4 +pub fn aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_4::clone(&self) -> aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_4 +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_4 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_4 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_4 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_4 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_4 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_4 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_4 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_4::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_4 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_4::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_4::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_4 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_4::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_4::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_4 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_4::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_4 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_4::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_4 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_4::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_4 +pub fn aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_4::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1::__bindgen_anon_1: aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1::__bindgen_anon_2: aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_2 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1::clone(&self) -> aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1 +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::bpf_iter_link_info +pub aya_bpf_bindings::bindings::bpf_iter_link_info::cgroup: aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_2 +pub aya_bpf_bindings::bindings::bpf_iter_link_info::map: aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_iter_link_info::task: aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_3 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_iter_link_info +pub fn aya_bpf_bindings::bindings::bpf_iter_link_info::clone(&self) -> aya_bpf_bindings::bindings::bpf_iter_link_info +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_iter_link_info +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_iter_link_info +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_iter_link_info +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_iter_link_info +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_iter_link_info +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_iter_link_info +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_iter_link_info where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_iter_link_info::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_iter_link_info where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_iter_link_info::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_iter_link_info::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_iter_link_info where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_iter_link_info::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_iter_link_info::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_iter_link_info where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_iter_link_info::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_iter_link_info where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_iter_link_info::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_iter_link_info where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_iter_link_info::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_iter_link_info +pub fn aya_bpf_bindings::bindings::bpf_iter_link_info::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1::cgroup: aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_3 +pub aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1::iter: aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4 +pub aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1::netfilter: aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_8 +pub aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1::netns: aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_5 +pub aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1::raw_tracepoint: aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1::struct_ops: aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_7 +pub aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1::tracing: aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_2 +pub aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1::xdp: aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_6 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1::clone(&self) -> aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1 +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1::map: aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1::clone(&self) -> aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 +pub aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::cgroup: aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::task: aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::clone(&self) -> aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::bpf_redir_neigh__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_redir_neigh__bindgen_ty_1::ipv4_nh: aya_bpf_bindings::bindings::__be32 +pub aya_bpf_bindings::bindings::bpf_redir_neigh__bindgen_ty_1::ipv6_nh: [aya_bpf_bindings::bindings::__u32; 4] +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_redir_neigh__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_redir_neigh__bindgen_ty_1::clone(&self) -> aya_bpf_bindings::bindings::bpf_redir_neigh__bindgen_ty_1 +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_redir_neigh__bindgen_ty_1 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_redir_neigh__bindgen_ty_1 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_redir_neigh__bindgen_ty_1 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_redir_neigh__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_redir_neigh__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_redir_neigh__bindgen_ty_1 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_redir_neigh__bindgen_ty_1 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_redir_neigh__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_redir_neigh__bindgen_ty_1 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_redir_neigh__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_redir_neigh__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_redir_neigh__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_redir_neigh__bindgen_ty_1::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_redir_neigh__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_redir_neigh__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_redir_neigh__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_redir_neigh__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_redir_neigh__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_redir_neigh__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_redir_neigh__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_redir_neigh__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_redir_neigh__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1::__bindgen_anon_1: aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1::cookie: aya_bpf_bindings::bindings::__u64 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1::clone(&self) -> aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1 +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1 +impl !core::marker::Send for aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1 +impl !core::marker::Sync for aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1__bindgen_ty_1::_bitfield_1: aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 8]> +pub aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1__bindgen_ty_1::_bitfield_align_1: [u8; 0] +pub aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1__bindgen_ty_1::sk: *mut aya_bpf_bindings::bindings::bpf_sock +impl aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1__bindgen_ty_1::new_bitfield_1() -> aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 8]> +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1__bindgen_ty_1::clone(&self) -> aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1__bindgen_ty_1 +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1__bindgen_ty_1 +impl !core::marker::Send for aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1__bindgen_ty_1 +impl !core::marker::Sync for aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1__bindgen_ty_1 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1__bindgen_ty_1 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1__bindgen_ty_1 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1__bindgen_ty_1 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1__bindgen_ty_1::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::bpf_sock_addr__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_sock_addr__bindgen_ty_1::_bitfield_1: aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 8]> +pub aya_bpf_bindings::bindings::bpf_sock_addr__bindgen_ty_1::_bitfield_align_1: [u8; 0] +pub aya_bpf_bindings::bindings::bpf_sock_addr__bindgen_ty_1::sk: *mut aya_bpf_bindings::bindings::bpf_sock +impl aya_bpf_bindings::bindings::bpf_sock_addr__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_sock_addr__bindgen_ty_1::new_bitfield_1() -> aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 8]> +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_sock_addr__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_sock_addr__bindgen_ty_1::clone(&self) -> aya_bpf_bindings::bindings::bpf_sock_addr__bindgen_ty_1 +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_sock_addr__bindgen_ty_1 +impl !core::marker::Send for aya_bpf_bindings::bindings::bpf_sock_addr__bindgen_ty_1 +impl !core::marker::Sync for aya_bpf_bindings::bindings::bpf_sock_addr__bindgen_ty_1 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_sock_addr__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_sock_addr__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_sock_addr__bindgen_ty_1 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_sock_addr__bindgen_ty_1 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_sock_addr__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_sock_addr__bindgen_ty_1 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_sock_addr__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_sock_addr__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_sock_addr__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_sock_addr__bindgen_ty_1::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_sock_addr__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_sock_addr__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sock_addr__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_sock_addr__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sock_addr__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_sock_addr__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sock_addr__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_sock_addr__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_sock_addr__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_1::args: [aya_bpf_bindings::bindings::__u32; 4] +pub aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_1::reply: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_1::replylong: [aya_bpf_bindings::bindings::__u32; 4] +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_1::clone(&self) -> aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_1 +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_1 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_1 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_1 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_1 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_1 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_1 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_1::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_2 +pub aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_2::_bitfield_1: aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 8]> +pub aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_2::_bitfield_align_1: [u8; 0] +pub aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_2::sk: *mut aya_bpf_bindings::bindings::bpf_sock +impl aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_2::new_bitfield_1() -> aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 8]> +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_2::clone(&self) -> aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_2 +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_2 +impl !core::marker::Send for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_2 +impl !core::marker::Sync for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_2 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_2 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_2 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_2 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_2 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_2::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_2 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_2::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_2::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_2 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_2::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_2::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_2 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_2::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_2::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_2::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_2::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_3 +pub aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_3::_bitfield_1: aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 8]> +pub aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_3::_bitfield_align_1: [u8; 0] +pub aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_3::skb_data: *mut aya_bpf_cty::c_void +impl aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_3 +pub fn aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_3::new_bitfield_1() -> aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 8]> +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_3 +pub fn aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_3::clone(&self) -> aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_3 +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_3 +impl !core::marker::Send for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_3 +impl !core::marker::Sync for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_3 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_3 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_3 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_3 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_3 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_3::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_3 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_3::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_3::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_3 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_3::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_3::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_3 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_3::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_3 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_3::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_3 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_3::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_3 +pub fn aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_3::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_4 +pub aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_4::_bitfield_1: aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 8]> +pub aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_4::_bitfield_align_1: [u8; 0] +pub aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_4::skb_data_end: *mut aya_bpf_cty::c_void +impl aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_4 +pub fn aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_4::new_bitfield_1() -> aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 8]> +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_4 +pub fn aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_4::clone(&self) -> aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_4 +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_4 +impl !core::marker::Send for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_4 +impl !core::marker::Sync for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_4 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_4 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_4 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_4 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_4 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_4::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_4 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_4::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_4::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_4 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_4::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_4::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_4 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_4::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_4 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_4::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_4 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_4::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_4 +pub fn aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_4::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1::ipv4: aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1::ipv6: aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_2 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1::clone(&self) -> aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1 +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_1::_bitfield_1: aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 8]> +pub aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_1::_bitfield_align_1: [u8; 0] +pub aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_1::sk: *mut aya_bpf_bindings::bindings::bpf_sock +impl aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_1::new_bitfield_1() -> aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 8]> +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_1::clone(&self) -> aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_1 +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_1 +impl !core::marker::Send for aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_1 +impl !core::marker::Sync for aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_1 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_1 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_1 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_1 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_1::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_2 +pub aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_2::_bitfield_1: aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 8]> +pub aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_2::_bitfield_align_1: [u8; 0] +pub aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_2::optval: *mut aya_bpf_cty::c_void +impl aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_2::new_bitfield_1() -> aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 8]> +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_2::clone(&self) -> aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_2 +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_2 +impl !core::marker::Send for aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_2 +impl !core::marker::Sync for aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_2 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_2 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_2 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_2 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_2 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_2::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_2 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_2::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_2::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_2 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_2::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_2::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_2 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_2::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_2::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_2::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_2::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_3 +pub aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_3::_bitfield_1: aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 8]> +pub aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_3::_bitfield_align_1: [u8; 0] +pub aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_3::optval_end: *mut aya_bpf_cty::c_void +impl aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_3 +pub fn aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_3::new_bitfield_1() -> aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 8]> +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_3 +pub fn aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_3::clone(&self) -> aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_3 +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_3 +impl !core::marker::Send for aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_3 +impl !core::marker::Sync for aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_3 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_3 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_3 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_3 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_3 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_3::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_3 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_3::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_3::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_3 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_3::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_3::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_3 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_3::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_3 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_3::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_3 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_3::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_3 +pub fn aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_3::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::bpf_stack_build_id__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_stack_build_id__bindgen_ty_1::ip: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_stack_build_id__bindgen_ty_1::offset: aya_bpf_bindings::bindings::__u64 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_stack_build_id__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_stack_build_id__bindgen_ty_1::clone(&self) -> aya_bpf_bindings::bindings::bpf_stack_build_id__bindgen_ty_1 +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_stack_build_id__bindgen_ty_1 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_stack_build_id__bindgen_ty_1 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_stack_build_id__bindgen_ty_1 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_stack_build_id__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_stack_build_id__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_stack_build_id__bindgen_ty_1 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_stack_build_id__bindgen_ty_1 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_stack_build_id__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_stack_build_id__bindgen_ty_1 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_stack_build_id__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_stack_build_id__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_stack_build_id__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_stack_build_id__bindgen_ty_1::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_stack_build_id__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_stack_build_id__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_stack_build_id__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_stack_build_id__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_stack_build_id__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_stack_build_id__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_stack_build_id__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_stack_build_id__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_stack_build_id__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_1::remote_ipv4: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_1::remote_ipv6: [aya_bpf_bindings::bindings::__u32; 4] +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_1::clone(&self) -> aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_1 +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_1 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_1 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_1 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_1 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_1 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_1 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_1::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_2 +pub aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_2::tunnel_ext: aya_bpf_bindings::bindings::__u16 +pub aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_2::tunnel_flags: aya_bpf_bindings::bindings::__be16 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_2::clone(&self) -> aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_2 +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_2 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_2 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_2 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_2 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_2 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_2 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_2 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_2::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_2 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_2::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_2::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_2 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_2::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_2::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_2 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_2::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_2::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_2::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_2::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_3 +pub aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_3::local_ipv4: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_3::local_ipv6: [aya_bpf_bindings::bindings::__u32; 4] +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_3 +pub fn aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_3::clone(&self) -> aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_3 +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_3 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_3 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_3 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_3 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_3 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_3 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_3 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_3::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_3 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_3::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_3::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_3 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_3::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_3::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_3 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_3::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_3 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_3::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_3 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_3::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_3 +pub fn aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_3::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::bpf_xfrm_state__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_xfrm_state__bindgen_ty_1::remote_ipv4: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_xfrm_state__bindgen_ty_1::remote_ipv6: [aya_bpf_bindings::bindings::__u32; 4] +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_xfrm_state__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_xfrm_state__bindgen_ty_1::clone(&self) -> aya_bpf_bindings::bindings::bpf_xfrm_state__bindgen_ty_1 +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_xfrm_state__bindgen_ty_1 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_xfrm_state__bindgen_ty_1 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_xfrm_state__bindgen_ty_1 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_xfrm_state__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_xfrm_state__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_xfrm_state__bindgen_ty_1 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_xfrm_state__bindgen_ty_1 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_xfrm_state__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_xfrm_state__bindgen_ty_1 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_xfrm_state__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_xfrm_state__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_xfrm_state__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_xfrm_state__bindgen_ty_1::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_xfrm_state__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_xfrm_state__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_xfrm_state__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_xfrm_state__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_xfrm_state__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_xfrm_state__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_xfrm_state__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_xfrm_state__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_xfrm_state__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_1 +pub aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_1::_bitfield_1: aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 8]> +pub aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_1::_bitfield_align_1: [u8; 0] +pub aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_1::data: *mut aya_bpf_cty::c_void +impl aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_1::new_bitfield_1() -> aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 8]> +impl core::clone::Clone for aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_1::clone(&self) -> aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_1 +impl core::marker::Copy for aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_1 +impl !core::marker::Send for aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_1 +impl !core::marker::Sync for aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_1 +impl core::marker::Unpin for aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_1 +impl core::convert::Into for aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_1 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_1 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_1::Error = >::Error +pub fn aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_2 +pub aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_2::_bitfield_1: aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 8]> +pub aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_2::_bitfield_align_1: [u8; 0] +pub aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_2::data_end: *mut aya_bpf_cty::c_void +impl aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_2::new_bitfield_1() -> aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 8]> +impl core::clone::Clone for aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_2::clone(&self) -> aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_2 +impl core::marker::Copy for aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_2 +impl !core::marker::Send for aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_2 +impl !core::marker::Sync for aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_2 +impl core::marker::Unpin for aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_2 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_2 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_2 +impl core::convert::Into for aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_2 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_2::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_2 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_2::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_2::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_2 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_2::Error = >::Error +pub fn aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_2::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_2 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_2::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_2::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_2::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_2::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_3 +pub aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_3::_bitfield_1: aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 8]> +pub aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_3::_bitfield_align_1: [u8; 0] +pub aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_3::sk: *mut aya_bpf_bindings::bindings::bpf_sock +impl aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_3 +pub fn aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_3::new_bitfield_1() -> aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 8]> +impl core::clone::Clone for aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_3 +pub fn aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_3::clone(&self) -> aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_3 +impl core::marker::Copy for aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_3 +impl !core::marker::Send for aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_3 +impl !core::marker::Sync for aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_3 +impl core::marker::Unpin for aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_3 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_3 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_3 +impl core::convert::Into for aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_3 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_3::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_3 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_3::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_3::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_3 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_3::Error = >::Error +pub fn aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_3::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_3 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_3::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_3 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_3::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_3 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_3::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_3 +pub fn aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_3::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_1 +pub aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_1::_bitfield_1: aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 8]> +pub aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_1::_bitfield_align_1: [u8; 0] +pub aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_1::data: *mut aya_bpf_cty::c_void +impl aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_1::new_bitfield_1() -> aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 8]> +impl core::clone::Clone for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_1::clone(&self) -> aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_1 +impl core::marker::Copy for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_1 +impl !core::marker::Send for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_1 +impl !core::marker::Sync for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_1 +impl core::marker::Unpin for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_1 +impl core::convert::Into for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_1 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_1 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_1::Error = >::Error +pub fn aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_2 +pub aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_2::_bitfield_1: aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 8]> +pub aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_2::_bitfield_align_1: [u8; 0] +pub aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_2::data_end: *mut aya_bpf_cty::c_void +impl aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_2::new_bitfield_1() -> aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 8]> +impl core::clone::Clone for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_2::clone(&self) -> aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_2 +impl core::marker::Copy for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_2 +impl !core::marker::Send for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_2 +impl !core::marker::Sync for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_2 +impl core::marker::Unpin for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_2 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_2 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_2 +impl core::convert::Into for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_2 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_2::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_2 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_2::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_2::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_2 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_2::Error = >::Error +pub fn aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_2::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_2 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_2::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_2::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_2::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_2::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_3 +pub aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_3::_bitfield_1: aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 8]> +pub aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_3::_bitfield_align_1: [u8; 0] +pub aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_3::sk: *mut aya_bpf_bindings::bindings::bpf_sock +impl aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_3 +pub fn aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_3::new_bitfield_1() -> aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 8]> +impl core::clone::Clone for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_3 +pub fn aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_3::clone(&self) -> aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_3 +impl core::marker::Copy for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_3 +impl !core::marker::Send for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_3 +impl !core::marker::Sync for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_3 +impl core::marker::Unpin for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_3 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_3 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_3 +impl core::convert::Into for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_3 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_3::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_3 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_3::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_3::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_3 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_3::Error = >::Error +pub fn aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_3::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_3 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_3::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_3 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_3::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_3 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_3::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_3 +pub fn aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_3::from(t: T) -> T +#[repr(C)] pub union aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_4 +pub aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_4::_bitfield_1: aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 8]> +pub aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_4::_bitfield_align_1: [u8; 0] +pub aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_4::migrating_sk: *mut aya_bpf_bindings::bindings::bpf_sock +impl aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_4 +pub fn aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_4::new_bitfield_1() -> aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 8]> +impl core::clone::Clone for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_4 +pub fn aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_4::clone(&self) -> aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_4 +impl core::marker::Copy for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_4 +impl !core::marker::Send for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_4 +impl !core::marker::Sync for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_4 +impl core::marker::Unpin for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_4 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_4 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_4 +impl core::convert::Into for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_4 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_4::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_4 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_4::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_4::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_4 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_4::Error = >::Error +pub fn aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_4::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_4 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_4::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_4 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_4::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_4 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_4::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_4 +pub fn aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_4::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::__BindgenBitfieldUnit +impl aya_bpf_bindings::bindings::__BindgenBitfieldUnit where Storage: core::convert::AsRef<[u8]> + core::convert::AsMut<[u8]> +pub fn aya_bpf_bindings::bindings::__BindgenBitfieldUnit::get(&self, bit_offset: usize, bit_width: u8) -> u64 +pub fn aya_bpf_bindings::bindings::__BindgenBitfieldUnit::get_bit(&self, index: usize) -> bool +pub fn aya_bpf_bindings::bindings::__BindgenBitfieldUnit::set(&mut self, bit_offset: usize, bit_width: u8, val: u64) +pub fn aya_bpf_bindings::bindings::__BindgenBitfieldUnit::set_bit(&mut self, index: usize, val: bool) +impl aya_bpf_bindings::bindings::__BindgenBitfieldUnit +pub const fn aya_bpf_bindings::bindings::__BindgenBitfieldUnit::new(storage: Storage) -> Self +impl core::clone::Clone for aya_bpf_bindings::bindings::__BindgenBitfieldUnit +pub fn aya_bpf_bindings::bindings::__BindgenBitfieldUnit::clone(&self) -> aya_bpf_bindings::bindings::__BindgenBitfieldUnit +impl core::cmp::Eq for aya_bpf_bindings::bindings::__BindgenBitfieldUnit +impl core::cmp::Ord for aya_bpf_bindings::bindings::__BindgenBitfieldUnit +pub fn aya_bpf_bindings::bindings::__BindgenBitfieldUnit::cmp(&self, other: &aya_bpf_bindings::bindings::__BindgenBitfieldUnit) -> core::cmp::Ordering +impl core::cmp::PartialEq> for aya_bpf_bindings::bindings::__BindgenBitfieldUnit +pub fn aya_bpf_bindings::bindings::__BindgenBitfieldUnit::eq(&self, other: &aya_bpf_bindings::bindings::__BindgenBitfieldUnit) -> bool +impl core::cmp::PartialOrd> for aya_bpf_bindings::bindings::__BindgenBitfieldUnit +pub fn aya_bpf_bindings::bindings::__BindgenBitfieldUnit::partial_cmp(&self, other: &aya_bpf_bindings::bindings::__BindgenBitfieldUnit) -> core::option::Option +impl core::default::Default for aya_bpf_bindings::bindings::__BindgenBitfieldUnit +pub fn aya_bpf_bindings::bindings::__BindgenBitfieldUnit::default() -> aya_bpf_bindings::bindings::__BindgenBitfieldUnit +impl core::fmt::Debug for aya_bpf_bindings::bindings::__BindgenBitfieldUnit +pub fn aya_bpf_bindings::bindings::__BindgenBitfieldUnit::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::hash::Hash for aya_bpf_bindings::bindings::__BindgenBitfieldUnit +pub fn aya_bpf_bindings::bindings::__BindgenBitfieldUnit::hash<__H: core::hash::Hasher>(&self, state: &mut __H) +impl core::marker::Copy for aya_bpf_bindings::bindings::__BindgenBitfieldUnit +impl core::marker::StructuralEq for aya_bpf_bindings::bindings::__BindgenBitfieldUnit +impl core::marker::StructuralPartialEq for aya_bpf_bindings::bindings::__BindgenBitfieldUnit +impl core::marker::Send for aya_bpf_bindings::bindings::__BindgenBitfieldUnit where Storage: core::marker::Send +impl core::marker::Sync for aya_bpf_bindings::bindings::__BindgenBitfieldUnit where Storage: core::marker::Sync +impl core::marker::Unpin for aya_bpf_bindings::bindings::__BindgenBitfieldUnit where Storage: core::marker::Unpin +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::__BindgenBitfieldUnit where Storage: core::panic::unwind_safe::RefUnwindSafe +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::__BindgenBitfieldUnit where Storage: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya_bpf_bindings::bindings::__BindgenBitfieldUnit where U: core::convert::From +pub fn aya_bpf_bindings::bindings::__BindgenBitfieldUnit::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::__BindgenBitfieldUnit where U: core::convert::Into +pub type aya_bpf_bindings::bindings::__BindgenBitfieldUnit::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::__BindgenBitfieldUnit::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::__BindgenBitfieldUnit where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::__BindgenBitfieldUnit::Error = >::Error +pub fn aya_bpf_bindings::bindings::__BindgenBitfieldUnit::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::__BindgenBitfieldUnit where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::__BindgenBitfieldUnit::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::__BindgenBitfieldUnit where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::__BindgenBitfieldUnit::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::__BindgenBitfieldUnit where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::__BindgenBitfieldUnit::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::__BindgenBitfieldUnit +pub fn aya_bpf_bindings::bindings::__BindgenBitfieldUnit::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::__IncompleteArrayField(_, _) +impl aya_bpf_bindings::bindings::__IncompleteArrayField +pub fn aya_bpf_bindings::bindings::__IncompleteArrayField::as_mut_ptr(&mut self) -> *mut T +pub unsafe fn aya_bpf_bindings::bindings::__IncompleteArrayField::as_mut_slice(&mut self, len: usize) -> &mut [T] +pub fn aya_bpf_bindings::bindings::__IncompleteArrayField::as_ptr(&self) -> *const T +pub unsafe fn aya_bpf_bindings::bindings::__IncompleteArrayField::as_slice(&self, len: usize) -> &[T] +pub const fn aya_bpf_bindings::bindings::__IncompleteArrayField::new() -> Self +impl core::fmt::Debug for aya_bpf_bindings::bindings::__IncompleteArrayField +pub fn aya_bpf_bindings::bindings::__IncompleteArrayField::fmt(&self, fmt: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::default::Default for aya_bpf_bindings::bindings::__IncompleteArrayField +pub fn aya_bpf_bindings::bindings::__IncompleteArrayField::default() -> aya_bpf_bindings::bindings::__IncompleteArrayField +impl core::marker::Send for aya_bpf_bindings::bindings::__IncompleteArrayField where T: core::marker::Send +impl core::marker::Sync for aya_bpf_bindings::bindings::__IncompleteArrayField where T: core::marker::Sync +impl core::marker::Unpin for aya_bpf_bindings::bindings::__IncompleteArrayField where T: core::marker::Unpin +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::__IncompleteArrayField where T: core::panic::unwind_safe::RefUnwindSafe +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::__IncompleteArrayField where T: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya_bpf_bindings::bindings::__IncompleteArrayField where U: core::convert::From +pub fn aya_bpf_bindings::bindings::__IncompleteArrayField::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::__IncompleteArrayField where U: core::convert::Into +pub type aya_bpf_bindings::bindings::__IncompleteArrayField::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::__IncompleteArrayField::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::__IncompleteArrayField where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::__IncompleteArrayField::Error = >::Error +pub fn aya_bpf_bindings::bindings::__IncompleteArrayField::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::__IncompleteArrayField where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::__IncompleteArrayField::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::__IncompleteArrayField where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::__IncompleteArrayField::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::__IncompleteArrayField where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::__IncompleteArrayField::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::__IncompleteArrayField +pub fn aya_bpf_bindings::bindings::__IncompleteArrayField::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::__sk_buff +pub aya_bpf_bindings::bindings::__sk_buff::__bindgen_anon_1: aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_1 +pub aya_bpf_bindings::bindings::__sk_buff::__bindgen_anon_2: aya_bpf_bindings::bindings::__sk_buff__bindgen_ty_2 +pub aya_bpf_bindings::bindings::__sk_buff::_bitfield_1: aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 3]> +pub aya_bpf_bindings::bindings::__sk_buff::_bitfield_align_1: [u8; 0] +pub aya_bpf_bindings::bindings::__sk_buff::cb: [aya_bpf_bindings::bindings::__u32; 5] +pub aya_bpf_bindings::bindings::__sk_buff::data: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::__sk_buff::data_end: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::__sk_buff::data_meta: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::__sk_buff::family: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::__sk_buff::gso_segs: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::__sk_buff::gso_size: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::__sk_buff::hash: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::__sk_buff::hwtstamp: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::__sk_buff::ifindex: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::__sk_buff::ingress_ifindex: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::__sk_buff::len: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::__sk_buff::local_ip4: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::__sk_buff::local_ip6: [aya_bpf_bindings::bindings::__u32; 4] +pub aya_bpf_bindings::bindings::__sk_buff::local_port: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::__sk_buff::mark: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::__sk_buff::napi_id: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::__sk_buff::pkt_type: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::__sk_buff::priority: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::__sk_buff::protocol: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::__sk_buff::queue_mapping: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::__sk_buff::remote_ip4: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::__sk_buff::remote_ip6: [aya_bpf_bindings::bindings::__u32; 4] +pub aya_bpf_bindings::bindings::__sk_buff::remote_port: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::__sk_buff::tc_classid: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::__sk_buff::tc_index: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::__sk_buff::tstamp: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::__sk_buff::tstamp_type: aya_bpf_bindings::bindings::__u8 +pub aya_bpf_bindings::bindings::__sk_buff::vlan_present: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::__sk_buff::vlan_proto: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::__sk_buff::vlan_tci: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::__sk_buff::wire_len: aya_bpf_bindings::bindings::__u32 +impl aya_bpf_bindings::bindings::__sk_buff +pub fn aya_bpf_bindings::bindings::__sk_buff::new_bitfield_1() -> aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 3]> +impl core::clone::Clone for aya_bpf_bindings::bindings::__sk_buff +pub fn aya_bpf_bindings::bindings::__sk_buff::clone(&self) -> aya_bpf_bindings::bindings::__sk_buff +impl core::marker::Copy for aya_bpf_bindings::bindings::__sk_buff +impl !core::marker::Send for aya_bpf_bindings::bindings::__sk_buff +impl !core::marker::Sync for aya_bpf_bindings::bindings::__sk_buff +impl core::marker::Unpin for aya_bpf_bindings::bindings::__sk_buff +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::__sk_buff +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::__sk_buff +impl core::convert::Into for aya_bpf_bindings::bindings::__sk_buff where U: core::convert::From +pub fn aya_bpf_bindings::bindings::__sk_buff::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::__sk_buff where U: core::convert::Into +pub type aya_bpf_bindings::bindings::__sk_buff::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::__sk_buff::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::__sk_buff where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::__sk_buff::Error = >::Error +pub fn aya_bpf_bindings::bindings::__sk_buff::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::__sk_buff where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::__sk_buff::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::__sk_buff where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::__sk_buff::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::__sk_buff where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::__sk_buff::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::__sk_buff +pub fn aya_bpf_bindings::bindings::__sk_buff::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_1::btf_fd: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_1::btf_key_type_id: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_1::btf_value_type_id: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_1::btf_vmlinux_value_type_id: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_1::inner_map_fd: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_1::key_size: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_1::map_extra: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_1::map_flags: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_1::map_ifindex: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_1::map_name: [aya_bpf_cty::ad::c_char; 16] +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_1::map_type: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_1::max_entries: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_1::numa_node: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_1::value_size: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_1::clone(&self) -> aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_1 +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_1::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_1 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_1 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_1 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_1 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_1 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_1 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_1::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_10 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_10::attach_flags: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_10::attach_type: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_10::prog_attach_flags: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_10::prog_cnt: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_10::prog_ids: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_10::query_flags: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_10::target_fd: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_10 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_10::clone(&self) -> aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_10 +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_10 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_10::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_10 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_10 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_10 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_10 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_10 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_10 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_10 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_10::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_10 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_10::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_10::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_10 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_10::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_10::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_10 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_10::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_10 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_10::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_10 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_10::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_10 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_10::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_11 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_11::name: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_11::prog_fd: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_11 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_11::clone(&self) -> aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_11 +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_11 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_11::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_11 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_11 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_11 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_11 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_11 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_11 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_11 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_11::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_11 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_11::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_11::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_11 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_11::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_11::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_11 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_11::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_11 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_11::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_11 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_11::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_11 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_11::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_12 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_12::btf: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_12::btf_log_buf: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_12::btf_log_level: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_12::btf_log_size: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_12::btf_log_true_size: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_12::btf_size: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_12 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_12::clone(&self) -> aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_12 +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_12 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_12::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_12 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_12 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_12 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_12 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_12 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_12 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_12 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_12::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_12 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_12::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_12::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_12 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_12::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_12::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_12 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_12::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_12 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_12::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_12 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_12::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_12 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_12::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_13 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_13::buf: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_13::buf_len: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_13::fd: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_13::fd_type: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_13::flags: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_13::pid: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_13::probe_addr: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_13::probe_offset: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_13::prog_id: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_13 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_13::clone(&self) -> aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_13 +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_13 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_13::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_13 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_13 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_13 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_13 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_13 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_13 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_13 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_13::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_13 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_13::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_13::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_13 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_13::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_13::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_13 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_13::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_13 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_13::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_13 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_13::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_13 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_13::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14::__bindgen_anon_1: aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14::__bindgen_anon_2: aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_2 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14::__bindgen_anon_3: aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14::attach_type: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14::flags: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14::clone(&self) -> aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14 +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::iter_info: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::iter_info_len: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::clone(&self) -> aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::bpf_cookie: aya_bpf_bindings::bindings::__u64 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::clone(&self) -> aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::addrs: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::cnt: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::cookies: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::flags: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::syms: aya_bpf_bindings::bindings::__u64 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::clone(&self) -> aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::cookie: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::target_btf_id: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::clone(&self) -> aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::flags: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::hooknum: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::pf: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::priority: aya_bpf_bindings::bindings::__s32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::clone(&self) -> aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15::__bindgen_anon_1: aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15::__bindgen_anon_2: aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15__bindgen_ty_2 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15::flags: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15::link_fd: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15::clone(&self) -> aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15 +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_15::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_16 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_16::link_fd: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_16 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_16::clone(&self) -> aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_16 +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_16 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_16::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_16 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_16 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_16 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_16 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_16 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_16 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_16 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_16::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_16 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_16::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_16::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_16 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_16::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_16::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_16 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_16::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_16 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_16::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_16 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_16::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_16 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_16::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_17 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_17::type_: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_17 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_17::clone(&self) -> aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_17 +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_17 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_17::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_17 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_17 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_17 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_17 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_17 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_17 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_17 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_17::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_17 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_17::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_17::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_17 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_17::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_17::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_17 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_17::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_17 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_17::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_17 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_17::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_17 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_17::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_18 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_18::flags: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_18::link_fd: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_18 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_18::clone(&self) -> aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_18 +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_18 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_18::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_18 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_18 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_18 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_18 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_18 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_18 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_18 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_18::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_18 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_18::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_18::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_18 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_18::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_18::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_18 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_18::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_18 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_18::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_18 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_18::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_18 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_18::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_19 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_19::flags: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_19::map_fd: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_19::prog_fd: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_19 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_19::clone(&self) -> aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_19 +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_19 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_19::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_19 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_19 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_19 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_19 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_19 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_19 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_19 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_19::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_19 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_19::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_19::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_19 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_19::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_19::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_19 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_19::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_19 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_19::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_19 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_19::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_19 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_19::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2::__bindgen_anon_1: aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2::flags: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2::key: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2::map_fd: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2::clone(&self) -> aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2 +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_2::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_3 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_3::count: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_3::elem_flags: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_3::flags: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_3::in_batch: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_3::keys: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_3::map_fd: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_3::out_batch: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_3::values: aya_bpf_bindings::bindings::__u64 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_3 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_3::clone(&self) -> aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_3 +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_3 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_3::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_3 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_3 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_3 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_3 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_3 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_3 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_3 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_3::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_3 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_3::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_3::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_3 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_3::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_3::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_3 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_3::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_3 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_3::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_3 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_3::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_3 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_3::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4::__bindgen_anon_1: aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4::attach_btf_id: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4::core_relo_cnt: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4::core_relo_rec_size: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4::core_relos: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4::expected_attach_type: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4::fd_array: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4::func_info: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4::func_info_cnt: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4::func_info_rec_size: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4::insn_cnt: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4::insns: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4::kern_version: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4::license: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4::line_info: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4::line_info_cnt: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4::line_info_rec_size: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4::log_buf: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4::log_level: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4::log_size: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4::log_true_size: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4::prog_btf_fd: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4::prog_flags: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4::prog_ifindex: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4::prog_name: [aya_bpf_cty::ad::c_char; 16] +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4::prog_type: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4::clone(&self) -> aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4 +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_4::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_5 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_5::bpf_fd: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_5::file_flags: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_5::path_fd: aya_bpf_bindings::bindings::__s32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_5::pathname: aya_bpf_bindings::bindings::__u64 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_5 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_5::clone(&self) -> aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_5 +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_5 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_5::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_5 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_5 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_5 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_5 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_5 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_5 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_5 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_5::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_5 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_5::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_5::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_5 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_5::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_5::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_5 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_5::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_5 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_5::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_5 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_5::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_5 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_5::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_6 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_6::attach_bpf_fd: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_6::attach_flags: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_6::attach_type: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_6::replace_bpf_fd: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_6::target_fd: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_6 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_6::clone(&self) -> aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_6 +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_6 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_6::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_6 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_6 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_6 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_6 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_6 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_6 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_6 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_6::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_6 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_6::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_6::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_6 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_6::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_6::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_6 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_6::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_6 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_6::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_6 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_6::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_6 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_6::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7::batch_size: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7::cpu: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7::ctx_in: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7::ctx_out: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7::ctx_size_in: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7::ctx_size_out: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7::data_in: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7::data_out: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7::data_size_in: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7::data_size_out: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7::duration: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7::flags: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7::prog_fd: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7::repeat: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7::retval: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7::clone(&self) -> aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7 +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_7::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8::__bindgen_anon_1: aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8::next_id: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8::open_flags: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8::clone(&self) -> aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8 +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_8::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_9 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_9::bpf_fd: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_9::info: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_9::info_len: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_9 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_9::clone(&self) -> aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_9 +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_9 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_9::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_9 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_9 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_9 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_9 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_9 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_9 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_9 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_9::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_9 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_9::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_9::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_9 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_9::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_9::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_9 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_9::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_9 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_9::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_9 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_9::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_9 +pub fn aya_bpf_bindings::bindings::bpf_attr__bindgen_ty_9::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_btf_info +pub aya_bpf_bindings::bindings::bpf_btf_info::btf: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_btf_info::btf_size: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_btf_info::id: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_btf_info::kernel_btf: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_btf_info::name: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_btf_info::name_len: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_btf_info +pub fn aya_bpf_bindings::bindings::bpf_btf_info::clone(&self) -> aya_bpf_bindings::bindings::bpf_btf_info +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_btf_info +pub fn aya_bpf_bindings::bindings::bpf_btf_info::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_btf_info +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_btf_info +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_btf_info +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_btf_info +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_btf_info +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_btf_info +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_btf_info where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_btf_info::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_btf_info where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_btf_info::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_btf_info::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_btf_info where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_btf_info::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_btf_info::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_btf_info where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_btf_info::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_btf_info where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_btf_info::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_btf_info where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_btf_info::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_btf_info +pub fn aya_bpf_bindings::bindings::bpf_btf_info::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_cgroup_dev_ctx +pub aya_bpf_bindings::bindings::bpf_cgroup_dev_ctx::access_type: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_cgroup_dev_ctx::major: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_cgroup_dev_ctx::minor: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_cgroup_dev_ctx +pub fn aya_bpf_bindings::bindings::bpf_cgroup_dev_ctx::clone(&self) -> aya_bpf_bindings::bindings::bpf_cgroup_dev_ctx +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_cgroup_dev_ctx +pub fn aya_bpf_bindings::bindings::bpf_cgroup_dev_ctx::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_cgroup_dev_ctx +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_cgroup_dev_ctx +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_cgroup_dev_ctx +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_cgroup_dev_ctx +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_cgroup_dev_ctx +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_cgroup_dev_ctx +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_cgroup_dev_ctx where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_cgroup_dev_ctx::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_cgroup_dev_ctx where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_cgroup_dev_ctx::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_cgroup_dev_ctx::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_cgroup_dev_ctx where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_cgroup_dev_ctx::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_cgroup_dev_ctx::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_cgroup_dev_ctx where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_cgroup_dev_ctx::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_cgroup_dev_ctx where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_cgroup_dev_ctx::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_cgroup_dev_ctx where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_cgroup_dev_ctx::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_cgroup_dev_ctx +pub fn aya_bpf_bindings::bindings::bpf_cgroup_dev_ctx::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_cgroup_storage_key +pub aya_bpf_bindings::bindings::bpf_cgroup_storage_key::attach_type: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_cgroup_storage_key::cgroup_inode_id: aya_bpf_bindings::bindings::__u64 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_cgroup_storage_key +pub fn aya_bpf_bindings::bindings::bpf_cgroup_storage_key::clone(&self) -> aya_bpf_bindings::bindings::bpf_cgroup_storage_key +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_cgroup_storage_key +pub fn aya_bpf_bindings::bindings::bpf_cgroup_storage_key::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_cgroup_storage_key +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_cgroup_storage_key +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_cgroup_storage_key +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_cgroup_storage_key +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_cgroup_storage_key +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_cgroup_storage_key +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_cgroup_storage_key where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_cgroup_storage_key::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_cgroup_storage_key where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_cgroup_storage_key::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_cgroup_storage_key::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_cgroup_storage_key where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_cgroup_storage_key::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_cgroup_storage_key::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_cgroup_storage_key where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_cgroup_storage_key::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_cgroup_storage_key where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_cgroup_storage_key::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_cgroup_storage_key where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_cgroup_storage_key::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_cgroup_storage_key +pub fn aya_bpf_bindings::bindings::bpf_cgroup_storage_key::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_core_relo +pub aya_bpf_bindings::bindings::bpf_core_relo::access_str_off: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_core_relo::insn_off: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_core_relo::kind: aya_bpf_bindings::bindings::bpf_core_relo_kind::Type +pub aya_bpf_bindings::bindings::bpf_core_relo::type_id: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_core_relo +pub fn aya_bpf_bindings::bindings::bpf_core_relo::clone(&self) -> aya_bpf_bindings::bindings::bpf_core_relo +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_core_relo +pub fn aya_bpf_bindings::bindings::bpf_core_relo::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_core_relo +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_core_relo +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_core_relo +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_core_relo +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_core_relo +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_core_relo +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_core_relo where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_core_relo::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_core_relo where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_core_relo::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_core_relo::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_core_relo where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_core_relo::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_core_relo::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_core_relo where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_core_relo::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_core_relo where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_core_relo::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_core_relo where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_core_relo::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_core_relo +pub fn aya_bpf_bindings::bindings::bpf_core_relo::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_cpumap_val +pub aya_bpf_bindings::bindings::bpf_cpumap_val::bpf_prog: aya_bpf_bindings::bindings::bpf_cpumap_val__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_cpumap_val::qsize: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_cpumap_val +pub fn aya_bpf_bindings::bindings::bpf_cpumap_val::clone(&self) -> aya_bpf_bindings::bindings::bpf_cpumap_val +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_cpumap_val +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_cpumap_val +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_cpumap_val +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_cpumap_val +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_cpumap_val +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_cpumap_val +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_cpumap_val where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_cpumap_val::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_cpumap_val where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_cpumap_val::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_cpumap_val::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_cpumap_val where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_cpumap_val::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_cpumap_val::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_cpumap_val where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_cpumap_val::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_cpumap_val where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_cpumap_val::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_cpumap_val where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_cpumap_val::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_cpumap_val +pub fn aya_bpf_bindings::bindings::bpf_cpumap_val::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_devmap_val +pub aya_bpf_bindings::bindings::bpf_devmap_val::bpf_prog: aya_bpf_bindings::bindings::bpf_devmap_val__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_devmap_val::ifindex: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_devmap_val +pub fn aya_bpf_bindings::bindings::bpf_devmap_val::clone(&self) -> aya_bpf_bindings::bindings::bpf_devmap_val +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_devmap_val +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_devmap_val +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_devmap_val +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_devmap_val +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_devmap_val +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_devmap_val +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_devmap_val where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_devmap_val::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_devmap_val where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_devmap_val::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_devmap_val::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_devmap_val where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_devmap_val::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_devmap_val::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_devmap_val where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_devmap_val::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_devmap_val where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_devmap_val::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_devmap_val where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_devmap_val::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_devmap_val +pub fn aya_bpf_bindings::bindings::bpf_devmap_val::from(t: T) -> T +#[repr(C)] #[repr(align(8))] pub struct aya_bpf_bindings::bindings::bpf_dynptr +pub aya_bpf_bindings::bindings::bpf_dynptr::_bitfield_1: aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 16]> +pub aya_bpf_bindings::bindings::bpf_dynptr::_bitfield_align_1: [u8; 0] +impl aya_bpf_bindings::bindings::bpf_dynptr +pub fn aya_bpf_bindings::bindings::bpf_dynptr::new_bitfield_1() -> aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 16]> +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_dynptr +pub fn aya_bpf_bindings::bindings::bpf_dynptr::clone(&self) -> aya_bpf_bindings::bindings::bpf_dynptr +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_dynptr +pub fn aya_bpf_bindings::bindings::bpf_dynptr::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_dynptr +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_dynptr +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_dynptr +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_dynptr +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_dynptr +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_dynptr +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_dynptr where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_dynptr::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_dynptr where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_dynptr::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_dynptr::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_dynptr where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_dynptr::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_dynptr::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_dynptr where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_dynptr::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_dynptr where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_dynptr::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_dynptr where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_dynptr::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_dynptr +pub fn aya_bpf_bindings::bindings::bpf_dynptr::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_fib_lookup +pub aya_bpf_bindings::bindings::bpf_fib_lookup::__bindgen_anon_1: aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_fib_lookup::__bindgen_anon_2: aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_2 +pub aya_bpf_bindings::bindings::bpf_fib_lookup::__bindgen_anon_3: aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_3 +pub aya_bpf_bindings::bindings::bpf_fib_lookup::__bindgen_anon_4: aya_bpf_bindings::bindings::bpf_fib_lookup__bindgen_ty_4 +pub aya_bpf_bindings::bindings::bpf_fib_lookup::dmac: [aya_bpf_bindings::bindings::__u8; 6] +pub aya_bpf_bindings::bindings::bpf_fib_lookup::dport: aya_bpf_bindings::bindings::__be16 +pub aya_bpf_bindings::bindings::bpf_fib_lookup::family: aya_bpf_bindings::bindings::__u8 +pub aya_bpf_bindings::bindings::bpf_fib_lookup::h_vlan_TCI: aya_bpf_bindings::bindings::__be16 +pub aya_bpf_bindings::bindings::bpf_fib_lookup::h_vlan_proto: aya_bpf_bindings::bindings::__be16 +pub aya_bpf_bindings::bindings::bpf_fib_lookup::ifindex: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_fib_lookup::l4_protocol: aya_bpf_bindings::bindings::__u8 +pub aya_bpf_bindings::bindings::bpf_fib_lookup::smac: [aya_bpf_bindings::bindings::__u8; 6] +pub aya_bpf_bindings::bindings::bpf_fib_lookup::sport: aya_bpf_bindings::bindings::__be16 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_fib_lookup +pub fn aya_bpf_bindings::bindings::bpf_fib_lookup::clone(&self) -> aya_bpf_bindings::bindings::bpf_fib_lookup +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_fib_lookup +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_fib_lookup +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_fib_lookup +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_fib_lookup +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_fib_lookup +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_fib_lookup +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_fib_lookup where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_fib_lookup::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_fib_lookup where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_fib_lookup::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_fib_lookup::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_fib_lookup where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_fib_lookup::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_fib_lookup::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_fib_lookup where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_fib_lookup::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_fib_lookup where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_fib_lookup::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_fib_lookup where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_fib_lookup::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_fib_lookup +pub fn aya_bpf_bindings::bindings::bpf_fib_lookup::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_flow_keys +pub aya_bpf_bindings::bindings::bpf_flow_keys::__bindgen_anon_1: aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_flow_keys::addr_proto: aya_bpf_bindings::bindings::__u16 +pub aya_bpf_bindings::bindings::bpf_flow_keys::dport: aya_bpf_bindings::bindings::__be16 +pub aya_bpf_bindings::bindings::bpf_flow_keys::flags: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_flow_keys::flow_label: aya_bpf_bindings::bindings::__be32 +pub aya_bpf_bindings::bindings::bpf_flow_keys::ip_proto: aya_bpf_bindings::bindings::__u8 +pub aya_bpf_bindings::bindings::bpf_flow_keys::is_encap: aya_bpf_bindings::bindings::__u8 +pub aya_bpf_bindings::bindings::bpf_flow_keys::is_first_frag: aya_bpf_bindings::bindings::__u8 +pub aya_bpf_bindings::bindings::bpf_flow_keys::is_frag: aya_bpf_bindings::bindings::__u8 +pub aya_bpf_bindings::bindings::bpf_flow_keys::n_proto: aya_bpf_bindings::bindings::__be16 +pub aya_bpf_bindings::bindings::bpf_flow_keys::nhoff: aya_bpf_bindings::bindings::__u16 +pub aya_bpf_bindings::bindings::bpf_flow_keys::sport: aya_bpf_bindings::bindings::__be16 +pub aya_bpf_bindings::bindings::bpf_flow_keys::thoff: aya_bpf_bindings::bindings::__u16 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_flow_keys +pub fn aya_bpf_bindings::bindings::bpf_flow_keys::clone(&self) -> aya_bpf_bindings::bindings::bpf_flow_keys +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_flow_keys +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_flow_keys +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_flow_keys +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_flow_keys +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_flow_keys +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_flow_keys +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_flow_keys where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_flow_keys::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_flow_keys where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_flow_keys::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_flow_keys::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_flow_keys where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_flow_keys::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_flow_keys::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_flow_keys where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_flow_keys::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_flow_keys where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_flow_keys::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_flow_keys where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_flow_keys::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_flow_keys +pub fn aya_bpf_bindings::bindings::bpf_flow_keys::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_1::ipv4_dst: aya_bpf_bindings::bindings::__be32 +pub aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_1::ipv4_src: aya_bpf_bindings::bindings::__be32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_1::clone(&self) -> aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_1 +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_1::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_1 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_1 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_1 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_1 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_1 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_1 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_1::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_2 +pub aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_2::ipv6_dst: [aya_bpf_bindings::bindings::__u32; 4] +pub aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_2::ipv6_src: [aya_bpf_bindings::bindings::__u32; 4] +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_2::clone(&self) -> aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_2 +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_2::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_2 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_2 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_2 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_2 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_2 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_2 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_2 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_2::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_2 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_2::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_2::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_2 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_2::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_2::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_2 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_2::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_2::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_2::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::bpf_flow_keys__bindgen_ty_1__bindgen_ty_2::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_func_info +pub aya_bpf_bindings::bindings::bpf_func_info::insn_off: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_func_info::type_id: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_func_info +pub fn aya_bpf_bindings::bindings::bpf_func_info::clone(&self) -> aya_bpf_bindings::bindings::bpf_func_info +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_func_info +pub fn aya_bpf_bindings::bindings::bpf_func_info::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_func_info +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_func_info +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_func_info +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_func_info +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_func_info +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_func_info +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_func_info where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_func_info::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_func_info where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_func_info::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_func_info::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_func_info where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_func_info::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_func_info::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_func_info where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_func_info::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_func_info where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_func_info::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_func_info where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_func_info::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_func_info +pub fn aya_bpf_bindings::bindings::bpf_func_info::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_insn +pub aya_bpf_bindings::bindings::bpf_insn::_bitfield_1: aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 1]> +pub aya_bpf_bindings::bindings::bpf_insn::_bitfield_align_1: [u8; 0] +pub aya_bpf_bindings::bindings::bpf_insn::code: aya_bpf_bindings::bindings::__u8 +pub aya_bpf_bindings::bindings::bpf_insn::imm: aya_bpf_bindings::bindings::__s32 +pub aya_bpf_bindings::bindings::bpf_insn::off: aya_bpf_bindings::bindings::__s16 +impl aya_bpf_bindings::bindings::bpf_insn +pub fn aya_bpf_bindings::bindings::bpf_insn::dst_reg(&self) -> aya_bpf_bindings::bindings::__u8 +pub fn aya_bpf_bindings::bindings::bpf_insn::new_bitfield_1(dst_reg: aya_bpf_bindings::bindings::__u8, src_reg: aya_bpf_bindings::bindings::__u8) -> aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 1]> +pub fn aya_bpf_bindings::bindings::bpf_insn::set_dst_reg(&mut self, val: aya_bpf_bindings::bindings::__u8) +pub fn aya_bpf_bindings::bindings::bpf_insn::set_src_reg(&mut self, val: aya_bpf_bindings::bindings::__u8) +pub fn aya_bpf_bindings::bindings::bpf_insn::src_reg(&self) -> aya_bpf_bindings::bindings::__u8 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_insn +pub fn aya_bpf_bindings::bindings::bpf_insn::clone(&self) -> aya_bpf_bindings::bindings::bpf_insn +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_insn +pub fn aya_bpf_bindings::bindings::bpf_insn::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_insn +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_insn +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_insn +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_insn +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_insn +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_insn +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_insn where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_insn::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_insn where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_insn::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_insn::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_insn where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_insn::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_insn::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_insn where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_insn::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_insn where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_insn::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_insn where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_insn::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_insn +pub fn aya_bpf_bindings::bindings::bpf_insn::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_1::map_fd: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_1::clone(&self) -> aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_1 +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_1::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_1 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_1 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_1 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_1 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_1 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_1 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_1::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_2 +pub aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_2::cgroup_fd: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_2::cgroup_id: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_2::order: aya_bpf_bindings::bindings::bpf_cgroup_iter_order::Type +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_2::clone(&self) -> aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_2 +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_2::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_2 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_2 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_2 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_2 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_2 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_2 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_2 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_2::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_2 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_2::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_2::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_2 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_2::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_2::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_2 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_2::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_2::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_2::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_2::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_3 +pub aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_3::pid: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_3::pid_fd: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_3::tid: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_3 +pub fn aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_3::clone(&self) -> aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_3 +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_3 +pub fn aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_3::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_3 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_3 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_3 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_3 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_3 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_3 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_3 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_3::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_3 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_3::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_3::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_3 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_3::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_3::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_3 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_3::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_3 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_3::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_3 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_3::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_3 +pub fn aya_bpf_bindings::bindings::bpf_iter_link_info__bindgen_ty_3::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_iter_num +pub aya_bpf_bindings::bindings::bpf_iter_num::__opaque: [aya_bpf_bindings::bindings::__u64; 1] +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_iter_num +pub fn aya_bpf_bindings::bindings::bpf_iter_num::clone(&self) -> aya_bpf_bindings::bindings::bpf_iter_num +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_iter_num +pub fn aya_bpf_bindings::bindings::bpf_iter_num::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_iter_num +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_iter_num +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_iter_num +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_iter_num +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_iter_num +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_iter_num +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_iter_num where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_iter_num::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_iter_num where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_iter_num::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_iter_num::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_iter_num where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_iter_num::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_iter_num::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_iter_num where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_iter_num::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_iter_num where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_iter_num::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_iter_num where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_iter_num::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_iter_num +pub fn aya_bpf_bindings::bindings::bpf_iter_num::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_line_info +pub aya_bpf_bindings::bindings::bpf_line_info::file_name_off: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_line_info::insn_off: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_line_info::line_col: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_line_info::line_off: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_line_info +pub fn aya_bpf_bindings::bindings::bpf_line_info::clone(&self) -> aya_bpf_bindings::bindings::bpf_line_info +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_line_info +pub fn aya_bpf_bindings::bindings::bpf_line_info::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_line_info +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_line_info +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_line_info +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_line_info +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_line_info +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_line_info +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_line_info where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_line_info::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_line_info where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_line_info::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_line_info::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_line_info where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_line_info::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_line_info::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_line_info where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_line_info::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_line_info where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_line_info::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_line_info where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_line_info::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_line_info +pub fn aya_bpf_bindings::bindings::bpf_line_info::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_link_info +pub aya_bpf_bindings::bindings::bpf_link_info::__bindgen_anon_1: aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_link_info::id: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_link_info::prog_id: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_link_info::type_: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_link_info +pub fn aya_bpf_bindings::bindings::bpf_link_info::clone(&self) -> aya_bpf_bindings::bindings::bpf_link_info +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_link_info +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_link_info +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_link_info +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_link_info +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_link_info +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_link_info +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_link_info where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_link_info::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_link_info where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_link_info::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_link_info::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_link_info where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_link_info::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_link_info::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_link_info where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_link_info where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_link_info where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_link_info +pub fn aya_bpf_bindings::bindings::bpf_link_info::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_1::tp_name: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_1::tp_name_len: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_1::clone(&self) -> aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_1 +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_1::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_1 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_1 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_1 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_1 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_1 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_1 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_1::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_2 +pub aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_2::attach_type: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_2::target_btf_id: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_2::target_obj_id: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_2::clone(&self) -> aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_2 +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_2::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_2 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_2 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_2 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_2 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_2 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_2 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_2 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_2::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_2 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_2::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_2::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_2 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_2::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_2::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_2 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_2::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_2::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_2::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_2::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_3 +pub aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_3::attach_type: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_3::cgroup_id: aya_bpf_bindings::bindings::__u64 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_3 +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_3::clone(&self) -> aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_3 +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_3 +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_3::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_3 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_3 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_3 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_3 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_3 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_3 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_3 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_3::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_3 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_3::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_3::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_3 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_3::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_3::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_3 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_3::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_3 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_3::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_3 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_3::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_3 +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_3::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4 +pub aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4::__bindgen_anon_1: aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4::__bindgen_anon_2: aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 +pub aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4::target_name: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4::target_name_len: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4 +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4::clone(&self) -> aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4 +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4 +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::map_id: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::clone(&self) -> aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::cgroup_id: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::order: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::clone(&self) -> aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 +pub aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::pid: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::tid: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::clone(&self) -> aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_5 +pub aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_5::attach_type: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_5::netns_ino: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_5 +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_5::clone(&self) -> aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_5 +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_5 +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_5::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_5 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_5 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_5 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_5 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_5 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_5 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_5 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_5::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_5 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_5::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_5::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_5 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_5::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_5::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_5 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_5::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_5 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_5::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_5 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_5::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_5 +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_5::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_6 +pub aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_6::ifindex: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_6 +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_6::clone(&self) -> aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_6 +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_6 +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_6::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_6 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_6 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_6 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_6 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_6 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_6 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_6 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_6::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_6 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_6::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_6::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_6 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_6::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_6::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_6 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_6::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_6 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_6::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_6 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_6::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_6 +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_6::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_7 +pub aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_7::map_id: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_7 +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_7::clone(&self) -> aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_7 +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_7 +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_7::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_7 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_7 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_7 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_7 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_7 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_7 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_7 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_7::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_7 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_7::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_7::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_7 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_7::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_7::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_7 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_7::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_7 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_7::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_7 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_7::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_7 +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_7::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_8 +pub aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_8::flags: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_8::hooknum: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_8::pf: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_8::priority: aya_bpf_bindings::bindings::__s32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_8 +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_8::clone(&self) -> aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_8 +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_8 +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_8::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_8 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_8 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_8 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_8 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_8 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_8 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_8 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_8::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_8 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_8::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_8::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_8 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_8::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_8::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_8 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_8::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_8 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_8::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_8 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_8::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_8 +pub fn aya_bpf_bindings::bindings::bpf_link_info__bindgen_ty_1__bindgen_ty_8::from(t: T) -> T +#[repr(C)] #[repr(align(8))] pub struct aya_bpf_bindings::bindings::bpf_list_head +pub aya_bpf_bindings::bindings::bpf_list_head::_bitfield_1: aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 16]> +pub aya_bpf_bindings::bindings::bpf_list_head::_bitfield_align_1: [u8; 0] +impl aya_bpf_bindings::bindings::bpf_list_head +pub fn aya_bpf_bindings::bindings::bpf_list_head::new_bitfield_1() -> aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 16]> +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_list_head +pub fn aya_bpf_bindings::bindings::bpf_list_head::clone(&self) -> aya_bpf_bindings::bindings::bpf_list_head +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_list_head +pub fn aya_bpf_bindings::bindings::bpf_list_head::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_list_head +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_list_head +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_list_head +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_list_head +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_list_head +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_list_head +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_list_head where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_list_head::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_list_head where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_list_head::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_list_head::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_list_head where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_list_head::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_list_head::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_list_head where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_list_head::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_list_head where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_list_head::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_list_head where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_list_head::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_list_head +pub fn aya_bpf_bindings::bindings::bpf_list_head::from(t: T) -> T +#[repr(C)] #[repr(align(8))] pub struct aya_bpf_bindings::bindings::bpf_list_node +pub aya_bpf_bindings::bindings::bpf_list_node::_bitfield_1: aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 16]> +pub aya_bpf_bindings::bindings::bpf_list_node::_bitfield_align_1: [u8; 0] +impl aya_bpf_bindings::bindings::bpf_list_node +pub fn aya_bpf_bindings::bindings::bpf_list_node::new_bitfield_1() -> aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 16]> +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_list_node +pub fn aya_bpf_bindings::bindings::bpf_list_node::clone(&self) -> aya_bpf_bindings::bindings::bpf_list_node +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_list_node +pub fn aya_bpf_bindings::bindings::bpf_list_node::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_list_node +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_list_node +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_list_node +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_list_node +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_list_node +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_list_node +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_list_node where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_list_node::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_list_node where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_list_node::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_list_node::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_list_node where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_list_node::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_list_node::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_list_node where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_list_node::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_list_node where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_list_node::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_list_node where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_list_node::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_list_node +pub fn aya_bpf_bindings::bindings::bpf_list_node::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_lpm_trie_key +pub aya_bpf_bindings::bindings::bpf_lpm_trie_key::data: aya_bpf_bindings::bindings::__IncompleteArrayField +pub aya_bpf_bindings::bindings::bpf_lpm_trie_key::prefixlen: aya_bpf_bindings::bindings::__u32 +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_lpm_trie_key +pub fn aya_bpf_bindings::bindings::bpf_lpm_trie_key::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_lpm_trie_key +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_lpm_trie_key +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_lpm_trie_key +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_lpm_trie_key +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_lpm_trie_key +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_lpm_trie_key where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_lpm_trie_key::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_lpm_trie_key where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_lpm_trie_key::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_lpm_trie_key::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_lpm_trie_key where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_lpm_trie_key::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_lpm_trie_key::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_lpm_trie_key where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_lpm_trie_key::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_lpm_trie_key where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_lpm_trie_key::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_lpm_trie_key where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_lpm_trie_key::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_lpm_trie_key +pub fn aya_bpf_bindings::bindings::bpf_lpm_trie_key::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_map_def +pub aya_bpf_bindings::bindings::bpf_map_def::id: aya_bpf_cty::ad::c_uint +pub aya_bpf_bindings::bindings::bpf_map_def::key_size: aya_bpf_cty::ad::c_uint +pub aya_bpf_bindings::bindings::bpf_map_def::map_flags: aya_bpf_cty::ad::c_uint +pub aya_bpf_bindings::bindings::bpf_map_def::max_entries: aya_bpf_cty::ad::c_uint +pub aya_bpf_bindings::bindings::bpf_map_def::pinning: aya_bpf_cty::ad::c_uint +pub aya_bpf_bindings::bindings::bpf_map_def::type_: aya_bpf_cty::ad::c_uint +pub aya_bpf_bindings::bindings::bpf_map_def::value_size: aya_bpf_cty::ad::c_uint +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_map_def +pub fn aya_bpf_bindings::bindings::bpf_map_def::clone(&self) -> aya_bpf_bindings::bindings::bpf_map_def +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_map_def +pub fn aya_bpf_bindings::bindings::bpf_map_def::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_map_def +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_map_def +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_map_def +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_map_def +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_map_def +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_map_def +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_map_def where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_map_def::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_map_def where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_map_def::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_map_def::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_map_def where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_map_def::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_map_def::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_map_def where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_map_def::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_map_def where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_map_def::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_map_def where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_map_def::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_map_def +pub fn aya_bpf_bindings::bindings::bpf_map_def::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_map_info +pub aya_bpf_bindings::bindings::bpf_map_info::_bitfield_1: aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 4]> +pub aya_bpf_bindings::bindings::bpf_map_info::_bitfield_align_1: [u8; 0] +pub aya_bpf_bindings::bindings::bpf_map_info::btf_id: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_map_info::btf_key_type_id: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_map_info::btf_value_type_id: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_map_info::btf_vmlinux_value_type_id: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_map_info::id: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_map_info::ifindex: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_map_info::key_size: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_map_info::map_extra: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_map_info::map_flags: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_map_info::max_entries: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_map_info::name: [aya_bpf_cty::ad::c_char; 16] +pub aya_bpf_bindings::bindings::bpf_map_info::netns_dev: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_map_info::netns_ino: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_map_info::type_: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_map_info::value_size: aya_bpf_bindings::bindings::__u32 +impl aya_bpf_bindings::bindings::bpf_map_info +pub fn aya_bpf_bindings::bindings::bpf_map_info::new_bitfield_1() -> aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 4]> +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_map_info +pub fn aya_bpf_bindings::bindings::bpf_map_info::clone(&self) -> aya_bpf_bindings::bindings::bpf_map_info +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_map_info +pub fn aya_bpf_bindings::bindings::bpf_map_info::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_map_info +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_map_info +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_map_info +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_map_info +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_map_info +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_map_info +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_map_info where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_map_info::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_map_info where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_map_info::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_map_info::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_map_info where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_map_info::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_map_info::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_map_info where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_map_info::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_map_info where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_map_info::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_map_info where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_map_info::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_map_info +pub fn aya_bpf_bindings::bindings::bpf_map_info::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_perf_event_data +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_perf_event_data +pub fn aya_bpf_bindings::bindings::bpf_perf_event_data::clone(&self) -> aya_bpf_bindings::bindings::bpf_perf_event_data +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_perf_event_data +pub fn aya_bpf_bindings::bindings::bpf_perf_event_data::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_perf_event_data +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_perf_event_data +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_perf_event_data +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_perf_event_data +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_perf_event_data +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_perf_event_data +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_perf_event_data where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_perf_event_data::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_perf_event_data where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_perf_event_data::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_perf_event_data::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_perf_event_data where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_perf_event_data::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_perf_event_data::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_perf_event_data where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_perf_event_data::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_perf_event_data where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_perf_event_data::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_perf_event_data where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_perf_event_data::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_perf_event_data +pub fn aya_bpf_bindings::bindings::bpf_perf_event_data::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_perf_event_value +pub aya_bpf_bindings::bindings::bpf_perf_event_value::counter: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_perf_event_value::enabled: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_perf_event_value::running: aya_bpf_bindings::bindings::__u64 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_perf_event_value +pub fn aya_bpf_bindings::bindings::bpf_perf_event_value::clone(&self) -> aya_bpf_bindings::bindings::bpf_perf_event_value +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_perf_event_value +pub fn aya_bpf_bindings::bindings::bpf_perf_event_value::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_perf_event_value +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_perf_event_value +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_perf_event_value +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_perf_event_value +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_perf_event_value +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_perf_event_value +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_perf_event_value where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_perf_event_value::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_perf_event_value where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_perf_event_value::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_perf_event_value::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_perf_event_value where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_perf_event_value::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_perf_event_value::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_perf_event_value where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_perf_event_value::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_perf_event_value where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_perf_event_value::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_perf_event_value where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_perf_event_value::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_perf_event_value +pub fn aya_bpf_bindings::bindings::bpf_perf_event_value::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_pidns_info +pub aya_bpf_bindings::bindings::bpf_pidns_info::pid: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_pidns_info::tgid: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_pidns_info +pub fn aya_bpf_bindings::bindings::bpf_pidns_info::clone(&self) -> aya_bpf_bindings::bindings::bpf_pidns_info +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_pidns_info +pub fn aya_bpf_bindings::bindings::bpf_pidns_info::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_pidns_info +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_pidns_info +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_pidns_info +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_pidns_info +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_pidns_info +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_pidns_info +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_pidns_info where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_pidns_info::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_pidns_info where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_pidns_info::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_pidns_info::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_pidns_info where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_pidns_info::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_pidns_info::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_pidns_info where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_pidns_info::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_pidns_info where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_pidns_info::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_pidns_info where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_pidns_info::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_pidns_info +pub fn aya_bpf_bindings::bindings::bpf_pidns_info::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_prog_info +pub aya_bpf_bindings::bindings::bpf_prog_info::_bitfield_1: aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 4]> +pub aya_bpf_bindings::bindings::bpf_prog_info::_bitfield_align_1: [u8; 0] +pub aya_bpf_bindings::bindings::bpf_prog_info::attach_btf_id: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_prog_info::attach_btf_obj_id: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_prog_info::btf_id: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_prog_info::created_by_uid: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_prog_info::func_info: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_prog_info::func_info_rec_size: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_prog_info::id: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_prog_info::ifindex: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_prog_info::jited_func_lens: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_prog_info::jited_ksyms: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_prog_info::jited_line_info: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_prog_info::jited_line_info_rec_size: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_prog_info::jited_prog_insns: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_prog_info::jited_prog_len: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_prog_info::line_info: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_prog_info::line_info_rec_size: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_prog_info::load_time: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_prog_info::map_ids: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_prog_info::name: [aya_bpf_cty::ad::c_char; 16] +pub aya_bpf_bindings::bindings::bpf_prog_info::netns_dev: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_prog_info::netns_ino: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_prog_info::nr_func_info: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_prog_info::nr_jited_func_lens: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_prog_info::nr_jited_ksyms: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_prog_info::nr_jited_line_info: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_prog_info::nr_line_info: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_prog_info::nr_map_ids: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_prog_info::nr_prog_tags: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_prog_info::prog_tags: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_prog_info::recursion_misses: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_prog_info::run_cnt: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_prog_info::run_time_ns: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_prog_info::tag: [aya_bpf_bindings::bindings::__u8; 8] +pub aya_bpf_bindings::bindings::bpf_prog_info::type_: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_prog_info::verified_insns: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_prog_info::xlated_prog_insns: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_prog_info::xlated_prog_len: aya_bpf_bindings::bindings::__u32 +impl aya_bpf_bindings::bindings::bpf_prog_info +pub fn aya_bpf_bindings::bindings::bpf_prog_info::gpl_compatible(&self) -> aya_bpf_bindings::bindings::__u32 +pub fn aya_bpf_bindings::bindings::bpf_prog_info::new_bitfield_1(gpl_compatible: aya_bpf_bindings::bindings::__u32) -> aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 4]> +pub fn aya_bpf_bindings::bindings::bpf_prog_info::set_gpl_compatible(&mut self, val: aya_bpf_bindings::bindings::__u32) +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_prog_info +pub fn aya_bpf_bindings::bindings::bpf_prog_info::clone(&self) -> aya_bpf_bindings::bindings::bpf_prog_info +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_prog_info +pub fn aya_bpf_bindings::bindings::bpf_prog_info::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_prog_info +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_prog_info +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_prog_info +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_prog_info +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_prog_info +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_prog_info +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_prog_info where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_prog_info::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_prog_info where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_prog_info::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_prog_info::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_prog_info where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_prog_info::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_prog_info::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_prog_info where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_prog_info::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_prog_info where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_prog_info::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_prog_info where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_prog_info::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_prog_info +pub fn aya_bpf_bindings::bindings::bpf_prog_info::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_raw_tracepoint_args +pub aya_bpf_bindings::bindings::bpf_raw_tracepoint_args::args: aya_bpf_bindings::bindings::__IncompleteArrayField +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_raw_tracepoint_args +pub fn aya_bpf_bindings::bindings::bpf_raw_tracepoint_args::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_raw_tracepoint_args +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_raw_tracepoint_args +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_raw_tracepoint_args +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_raw_tracepoint_args +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_raw_tracepoint_args +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_raw_tracepoint_args where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_raw_tracepoint_args::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_raw_tracepoint_args where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_raw_tracepoint_args::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_raw_tracepoint_args::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_raw_tracepoint_args where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_raw_tracepoint_args::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_raw_tracepoint_args::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_raw_tracepoint_args where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_raw_tracepoint_args::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_raw_tracepoint_args where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_raw_tracepoint_args::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_raw_tracepoint_args where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_raw_tracepoint_args::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_raw_tracepoint_args +pub fn aya_bpf_bindings::bindings::bpf_raw_tracepoint_args::from(t: T) -> T +#[repr(C)] #[repr(align(8))] pub struct aya_bpf_bindings::bindings::bpf_rb_node +pub aya_bpf_bindings::bindings::bpf_rb_node::_bitfield_1: aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 24]> +pub aya_bpf_bindings::bindings::bpf_rb_node::_bitfield_align_1: [u8; 0] +impl aya_bpf_bindings::bindings::bpf_rb_node +pub fn aya_bpf_bindings::bindings::bpf_rb_node::new_bitfield_1() -> aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 24]> +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_rb_node +pub fn aya_bpf_bindings::bindings::bpf_rb_node::clone(&self) -> aya_bpf_bindings::bindings::bpf_rb_node +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_rb_node +pub fn aya_bpf_bindings::bindings::bpf_rb_node::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_rb_node +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_rb_node +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_rb_node +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_rb_node +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_rb_node +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_rb_node +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_rb_node where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_rb_node::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_rb_node where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_rb_node::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_rb_node::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_rb_node where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_rb_node::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_rb_node::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_rb_node where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_rb_node::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_rb_node where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_rb_node::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_rb_node where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_rb_node::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_rb_node +pub fn aya_bpf_bindings::bindings::bpf_rb_node::from(t: T) -> T +#[repr(C)] #[repr(align(8))] pub struct aya_bpf_bindings::bindings::bpf_rb_root +pub aya_bpf_bindings::bindings::bpf_rb_root::_bitfield_1: aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 16]> +pub aya_bpf_bindings::bindings::bpf_rb_root::_bitfield_align_1: [u8; 0] +impl aya_bpf_bindings::bindings::bpf_rb_root +pub fn aya_bpf_bindings::bindings::bpf_rb_root::new_bitfield_1() -> aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 16]> +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_rb_root +pub fn aya_bpf_bindings::bindings::bpf_rb_root::clone(&self) -> aya_bpf_bindings::bindings::bpf_rb_root +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_rb_root +pub fn aya_bpf_bindings::bindings::bpf_rb_root::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_rb_root +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_rb_root +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_rb_root +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_rb_root +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_rb_root +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_rb_root +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_rb_root where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_rb_root::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_rb_root where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_rb_root::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_rb_root::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_rb_root where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_rb_root::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_rb_root::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_rb_root where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_rb_root::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_rb_root where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_rb_root::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_rb_root where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_rb_root::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_rb_root +pub fn aya_bpf_bindings::bindings::bpf_rb_root::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_redir_neigh +pub aya_bpf_bindings::bindings::bpf_redir_neigh::__bindgen_anon_1: aya_bpf_bindings::bindings::bpf_redir_neigh__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_redir_neigh::nh_family: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_redir_neigh +pub fn aya_bpf_bindings::bindings::bpf_redir_neigh::clone(&self) -> aya_bpf_bindings::bindings::bpf_redir_neigh +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_redir_neigh +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_redir_neigh +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_redir_neigh +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_redir_neigh +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_redir_neigh +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_redir_neigh +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_redir_neigh where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_redir_neigh::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_redir_neigh where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_redir_neigh::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_redir_neigh::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_redir_neigh where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_redir_neigh::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_redir_neigh::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_redir_neigh where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_redir_neigh::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_redir_neigh where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_redir_neigh::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_redir_neigh where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_redir_neigh::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_redir_neigh +pub fn aya_bpf_bindings::bindings::bpf_redir_neigh::from(t: T) -> T +#[repr(C)] #[repr(align(4))] pub struct aya_bpf_bindings::bindings::bpf_refcount +pub aya_bpf_bindings::bindings::bpf_refcount::_bitfield_1: aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 4]> +pub aya_bpf_bindings::bindings::bpf_refcount::_bitfield_align_1: [u8; 0] +impl aya_bpf_bindings::bindings::bpf_refcount +pub fn aya_bpf_bindings::bindings::bpf_refcount::new_bitfield_1() -> aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 4]> +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_refcount +pub fn aya_bpf_bindings::bindings::bpf_refcount::clone(&self) -> aya_bpf_bindings::bindings::bpf_refcount +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_refcount +pub fn aya_bpf_bindings::bindings::bpf_refcount::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_refcount +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_refcount +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_refcount +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_refcount +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_refcount +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_refcount +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_refcount where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_refcount::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_refcount where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_refcount::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_refcount::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_refcount where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_refcount::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_refcount::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_refcount where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_refcount::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_refcount where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_refcount::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_refcount where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_refcount::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_refcount +pub fn aya_bpf_bindings::bindings::bpf_refcount::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_sk_lookup +pub aya_bpf_bindings::bindings::bpf_sk_lookup::__bindgen_anon_1: aya_bpf_bindings::bindings::bpf_sk_lookup__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_sk_lookup::_bitfield_1: aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 2]> +pub aya_bpf_bindings::bindings::bpf_sk_lookup::_bitfield_align_1: [u8; 0] +pub aya_bpf_bindings::bindings::bpf_sk_lookup::family: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sk_lookup::ingress_ifindex: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sk_lookup::local_ip4: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sk_lookup::local_ip6: [aya_bpf_bindings::bindings::__u32; 4] +pub aya_bpf_bindings::bindings::bpf_sk_lookup::local_port: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sk_lookup::protocol: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sk_lookup::remote_ip4: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sk_lookup::remote_ip6: [aya_bpf_bindings::bindings::__u32; 4] +pub aya_bpf_bindings::bindings::bpf_sk_lookup::remote_port: aya_bpf_bindings::bindings::__be16 +impl aya_bpf_bindings::bindings::bpf_sk_lookup +pub fn aya_bpf_bindings::bindings::bpf_sk_lookup::new_bitfield_1() -> aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 2]> +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_sk_lookup +pub fn aya_bpf_bindings::bindings::bpf_sk_lookup::clone(&self) -> aya_bpf_bindings::bindings::bpf_sk_lookup +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_sk_lookup +impl !core::marker::Send for aya_bpf_bindings::bindings::bpf_sk_lookup +impl !core::marker::Sync for aya_bpf_bindings::bindings::bpf_sk_lookup +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_sk_lookup +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_sk_lookup +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_sk_lookup +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_sk_lookup where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_sk_lookup::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_sk_lookup where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_sk_lookup::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_sk_lookup::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_sk_lookup where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_sk_lookup::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_sk_lookup::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_sk_lookup where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sk_lookup::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_sk_lookup where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sk_lookup::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_sk_lookup where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sk_lookup::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_sk_lookup +pub fn aya_bpf_bindings::bindings::bpf_sk_lookup::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_sock +pub aya_bpf_bindings::bindings::bpf_sock::_bitfield_1: aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 2]> +pub aya_bpf_bindings::bindings::bpf_sock::_bitfield_align_1: [u8; 0] +pub aya_bpf_bindings::bindings::bpf_sock::bound_dev_if: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock::dst_ip4: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock::dst_ip6: [aya_bpf_bindings::bindings::__u32; 4] +pub aya_bpf_bindings::bindings::bpf_sock::dst_port: aya_bpf_bindings::bindings::__be16 +pub aya_bpf_bindings::bindings::bpf_sock::family: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock::mark: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock::priority: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock::protocol: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock::rx_queue_mapping: aya_bpf_bindings::bindings::__s32 +pub aya_bpf_bindings::bindings::bpf_sock::src_ip4: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock::src_ip6: [aya_bpf_bindings::bindings::__u32; 4] +pub aya_bpf_bindings::bindings::bpf_sock::src_port: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock::state: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock::type_: aya_bpf_bindings::bindings::__u32 +impl aya_bpf_bindings::bindings::bpf_sock +pub fn aya_bpf_bindings::bindings::bpf_sock::new_bitfield_1() -> aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 2]> +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_sock +pub fn aya_bpf_bindings::bindings::bpf_sock::clone(&self) -> aya_bpf_bindings::bindings::bpf_sock +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_sock +pub fn aya_bpf_bindings::bindings::bpf_sock::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_sock +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_sock +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_sock +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_sock +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_sock +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_sock +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_sock where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_sock::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_sock where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_sock::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_sock::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_sock where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_sock::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_sock::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_sock where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sock::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_sock where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sock::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_sock where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sock::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_sock +pub fn aya_bpf_bindings::bindings::bpf_sock::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_sock_addr +pub aya_bpf_bindings::bindings::bpf_sock_addr::__bindgen_anon_1: aya_bpf_bindings::bindings::bpf_sock_addr__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_sock_addr::family: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock_addr::msg_src_ip4: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock_addr::msg_src_ip6: [aya_bpf_bindings::bindings::__u32; 4] +pub aya_bpf_bindings::bindings::bpf_sock_addr::protocol: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock_addr::type_: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock_addr::user_family: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock_addr::user_ip4: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock_addr::user_ip6: [aya_bpf_bindings::bindings::__u32; 4] +pub aya_bpf_bindings::bindings::bpf_sock_addr::user_port: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_sock_addr +pub fn aya_bpf_bindings::bindings::bpf_sock_addr::clone(&self) -> aya_bpf_bindings::bindings::bpf_sock_addr +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_sock_addr +impl !core::marker::Send for aya_bpf_bindings::bindings::bpf_sock_addr +impl !core::marker::Sync for aya_bpf_bindings::bindings::bpf_sock_addr +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_sock_addr +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_sock_addr +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_sock_addr +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_sock_addr where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_sock_addr::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_sock_addr where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_sock_addr::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_sock_addr::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_sock_addr where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_sock_addr::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_sock_addr::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_sock_addr where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sock_addr::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_sock_addr where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sock_addr::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_sock_addr where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sock_addr::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_sock_addr +pub fn aya_bpf_bindings::bindings::bpf_sock_addr::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_sock_ops +pub aya_bpf_bindings::bindings::bpf_sock_ops::__bindgen_anon_1: aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_sock_ops::__bindgen_anon_2: aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_2 +pub aya_bpf_bindings::bindings::bpf_sock_ops::__bindgen_anon_3: aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_3 +pub aya_bpf_bindings::bindings::bpf_sock_ops::__bindgen_anon_4: aya_bpf_bindings::bindings::bpf_sock_ops__bindgen_ty_4 +pub aya_bpf_bindings::bindings::bpf_sock_ops::bpf_sock_ops_cb_flags: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock_ops::bytes_acked: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_sock_ops::bytes_received: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_sock_ops::data_segs_in: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock_ops::data_segs_out: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock_ops::ecn_flags: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock_ops::family: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock_ops::is_fullsock: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock_ops::local_ip4: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock_ops::local_ip6: [aya_bpf_bindings::bindings::__u32; 4] +pub aya_bpf_bindings::bindings::bpf_sock_ops::local_port: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock_ops::lost_out: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock_ops::mss_cache: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock_ops::op: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock_ops::packets_out: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock_ops::rate_delivered: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock_ops::rate_interval_us: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock_ops::rcv_nxt: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock_ops::remote_ip4: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock_ops::remote_ip6: [aya_bpf_bindings::bindings::__u32; 4] +pub aya_bpf_bindings::bindings::bpf_sock_ops::remote_port: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock_ops::retrans_out: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock_ops::rtt_min: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock_ops::sacked_out: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock_ops::segs_in: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock_ops::segs_out: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock_ops::sk_txhash: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock_ops::skb_hwtstamp: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_sock_ops::skb_len: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock_ops::skb_tcp_flags: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock_ops::snd_cwnd: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock_ops::snd_nxt: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock_ops::snd_ssthresh: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock_ops::snd_una: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock_ops::srtt_us: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock_ops::state: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sock_ops::total_retrans: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_sock_ops +pub fn aya_bpf_bindings::bindings::bpf_sock_ops::clone(&self) -> aya_bpf_bindings::bindings::bpf_sock_ops +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_sock_ops +impl !core::marker::Send for aya_bpf_bindings::bindings::bpf_sock_ops +impl !core::marker::Sync for aya_bpf_bindings::bindings::bpf_sock_ops +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_sock_ops +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_sock_ops +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_sock_ops +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_sock_ops where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_sock_ops::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_sock_ops where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_sock_ops::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_sock_ops::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_sock_ops where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_sock_ops::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_sock_ops::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_sock_ops where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sock_ops::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_sock_ops where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sock_ops::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_sock_ops where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sock_ops::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_sock_ops +pub fn aya_bpf_bindings::bindings::bpf_sock_ops::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_sock_tuple +pub aya_bpf_bindings::bindings::bpf_sock_tuple::__bindgen_anon_1: aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_sock_tuple +pub fn aya_bpf_bindings::bindings::bpf_sock_tuple::clone(&self) -> aya_bpf_bindings::bindings::bpf_sock_tuple +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_sock_tuple +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_sock_tuple +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_sock_tuple +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_sock_tuple +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_sock_tuple +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_sock_tuple +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_sock_tuple where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_sock_tuple::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_sock_tuple where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_sock_tuple::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_sock_tuple::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_sock_tuple where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_sock_tuple::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_sock_tuple::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_sock_tuple where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sock_tuple::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_sock_tuple where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sock_tuple::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_sock_tuple where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sock_tuple::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_sock_tuple +pub fn aya_bpf_bindings::bindings::bpf_sock_tuple::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_1::daddr: aya_bpf_bindings::bindings::__be32 +pub aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_1::dport: aya_bpf_bindings::bindings::__be16 +pub aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_1::saddr: aya_bpf_bindings::bindings::__be32 +pub aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_1::sport: aya_bpf_bindings::bindings::__be16 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_1::clone(&self) -> aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_1 +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_1::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_1 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_1 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_1 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_1 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_1 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_1 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_1::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_1 +pub fn aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_2 +pub aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_2::daddr: [aya_bpf_bindings::bindings::__be32; 4] +pub aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_2::dport: aya_bpf_bindings::bindings::__be16 +pub aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_2::saddr: [aya_bpf_bindings::bindings::__be32; 4] +pub aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_2::sport: aya_bpf_bindings::bindings::__be16 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_2::clone(&self) -> aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_2 +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_2::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_2 +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_2 +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_2 +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_2 +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_2 +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_2 +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_2 where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_2::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_2 where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_2::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_2::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_2 where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_2::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_2::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_2 where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_2::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_2::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_2::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_2 +pub fn aya_bpf_bindings::bindings::bpf_sock_tuple__bindgen_ty_1__bindgen_ty_2::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_sockopt +pub aya_bpf_bindings::bindings::bpf_sockopt::__bindgen_anon_1: aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_sockopt::__bindgen_anon_2: aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_2 +pub aya_bpf_bindings::bindings::bpf_sockopt::__bindgen_anon_3: aya_bpf_bindings::bindings::bpf_sockopt__bindgen_ty_3 +pub aya_bpf_bindings::bindings::bpf_sockopt::level: aya_bpf_bindings::bindings::__s32 +pub aya_bpf_bindings::bindings::bpf_sockopt::optlen: aya_bpf_bindings::bindings::__s32 +pub aya_bpf_bindings::bindings::bpf_sockopt::optname: aya_bpf_bindings::bindings::__s32 +pub aya_bpf_bindings::bindings::bpf_sockopt::retval: aya_bpf_bindings::bindings::__s32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_sockopt +pub fn aya_bpf_bindings::bindings::bpf_sockopt::clone(&self) -> aya_bpf_bindings::bindings::bpf_sockopt +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_sockopt +impl !core::marker::Send for aya_bpf_bindings::bindings::bpf_sockopt +impl !core::marker::Sync for aya_bpf_bindings::bindings::bpf_sockopt +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_sockopt +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_sockopt +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_sockopt +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_sockopt where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_sockopt::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_sockopt where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_sockopt::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_sockopt::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_sockopt where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_sockopt::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_sockopt::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_sockopt where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sockopt::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_sockopt where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sockopt::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_sockopt where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sockopt::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_sockopt +pub fn aya_bpf_bindings::bindings::bpf_sockopt::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_spin_lock +pub aya_bpf_bindings::bindings::bpf_spin_lock::val: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_spin_lock +pub fn aya_bpf_bindings::bindings::bpf_spin_lock::clone(&self) -> aya_bpf_bindings::bindings::bpf_spin_lock +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_spin_lock +pub fn aya_bpf_bindings::bindings::bpf_spin_lock::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_spin_lock +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_spin_lock +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_spin_lock +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_spin_lock +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_spin_lock +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_spin_lock +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_spin_lock where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_spin_lock::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_spin_lock where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_spin_lock::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_spin_lock::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_spin_lock where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_spin_lock::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_spin_lock::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_spin_lock where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_spin_lock::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_spin_lock where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_spin_lock::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_spin_lock where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_spin_lock::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_spin_lock +pub fn aya_bpf_bindings::bindings::bpf_spin_lock::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_stack_build_id +pub aya_bpf_bindings::bindings::bpf_stack_build_id::__bindgen_anon_1: aya_bpf_bindings::bindings::bpf_stack_build_id__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_stack_build_id::build_id: [aya_bpf_cty::c_uchar; 20] +pub aya_bpf_bindings::bindings::bpf_stack_build_id::status: aya_bpf_bindings::bindings::__s32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_stack_build_id +pub fn aya_bpf_bindings::bindings::bpf_stack_build_id::clone(&self) -> aya_bpf_bindings::bindings::bpf_stack_build_id +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_stack_build_id +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_stack_build_id +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_stack_build_id +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_stack_build_id +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_stack_build_id +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_stack_build_id +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_stack_build_id where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_stack_build_id::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_stack_build_id where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_stack_build_id::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_stack_build_id::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_stack_build_id where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_stack_build_id::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_stack_build_id::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_stack_build_id where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_stack_build_id::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_stack_build_id where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_stack_build_id::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_stack_build_id where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_stack_build_id::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_stack_build_id +pub fn aya_bpf_bindings::bindings::bpf_stack_build_id::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_sysctl +pub aya_bpf_bindings::bindings::bpf_sysctl::file_pos: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_sysctl::write: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_sysctl +pub fn aya_bpf_bindings::bindings::bpf_sysctl::clone(&self) -> aya_bpf_bindings::bindings::bpf_sysctl +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_sysctl +pub fn aya_bpf_bindings::bindings::bpf_sysctl::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_sysctl +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_sysctl +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_sysctl +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_sysctl +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_sysctl +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_sysctl +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_sysctl where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_sysctl::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_sysctl where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_sysctl::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_sysctl::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_sysctl where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_sysctl::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_sysctl::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_sysctl where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sysctl::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_sysctl where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sysctl::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_sysctl where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_sysctl::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_sysctl +pub fn aya_bpf_bindings::bindings::bpf_sysctl::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_tcp_sock +pub aya_bpf_bindings::bindings::bpf_tcp_sock::bytes_acked: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_tcp_sock::bytes_received: aya_bpf_bindings::bindings::__u64 +pub aya_bpf_bindings::bindings::bpf_tcp_sock::data_segs_in: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_tcp_sock::data_segs_out: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_tcp_sock::delivered: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_tcp_sock::delivered_ce: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_tcp_sock::dsack_dups: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_tcp_sock::ecn_flags: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_tcp_sock::icsk_retransmits: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_tcp_sock::lost_out: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_tcp_sock::mss_cache: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_tcp_sock::packets_out: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_tcp_sock::rate_delivered: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_tcp_sock::rate_interval_us: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_tcp_sock::rcv_nxt: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_tcp_sock::retrans_out: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_tcp_sock::rtt_min: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_tcp_sock::sacked_out: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_tcp_sock::segs_in: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_tcp_sock::segs_out: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_tcp_sock::snd_cwnd: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_tcp_sock::snd_nxt: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_tcp_sock::snd_ssthresh: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_tcp_sock::snd_una: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_tcp_sock::srtt_us: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_tcp_sock::total_retrans: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_tcp_sock +pub fn aya_bpf_bindings::bindings::bpf_tcp_sock::clone(&self) -> aya_bpf_bindings::bindings::bpf_tcp_sock +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_tcp_sock +pub fn aya_bpf_bindings::bindings::bpf_tcp_sock::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_tcp_sock +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_tcp_sock +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_tcp_sock +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_tcp_sock +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_tcp_sock +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_tcp_sock +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_tcp_sock where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_tcp_sock::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_tcp_sock where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_tcp_sock::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_tcp_sock::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_tcp_sock where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_tcp_sock::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_tcp_sock::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_tcp_sock where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_tcp_sock::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_tcp_sock where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_tcp_sock::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_tcp_sock where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_tcp_sock::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_tcp_sock +pub fn aya_bpf_bindings::bindings::bpf_tcp_sock::from(t: T) -> T +#[repr(C)] #[repr(align(8))] pub struct aya_bpf_bindings::bindings::bpf_timer +pub aya_bpf_bindings::bindings::bpf_timer::_bitfield_1: aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 16]> +pub aya_bpf_bindings::bindings::bpf_timer::_bitfield_align_1: [u8; 0] +impl aya_bpf_bindings::bindings::bpf_timer +pub fn aya_bpf_bindings::bindings::bpf_timer::new_bitfield_1() -> aya_bpf_bindings::bindings::__BindgenBitfieldUnit<[u8; 16]> +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_timer +pub fn aya_bpf_bindings::bindings::bpf_timer::clone(&self) -> aya_bpf_bindings::bindings::bpf_timer +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_timer +pub fn aya_bpf_bindings::bindings::bpf_timer::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_timer +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_timer +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_timer +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_timer +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_timer +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_timer +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_timer where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_timer::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_timer where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_timer::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_timer::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_timer where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_timer::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_timer::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_timer where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_timer::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_timer where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_timer::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_timer where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_timer::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_timer +pub fn aya_bpf_bindings::bindings::bpf_timer::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_tunnel_key +pub aya_bpf_bindings::bindings::bpf_tunnel_key::__bindgen_anon_1: aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_tunnel_key::__bindgen_anon_2: aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_2 +pub aya_bpf_bindings::bindings::bpf_tunnel_key::__bindgen_anon_3: aya_bpf_bindings::bindings::bpf_tunnel_key__bindgen_ty_3 +pub aya_bpf_bindings::bindings::bpf_tunnel_key::tunnel_id: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_tunnel_key::tunnel_label: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_tunnel_key::tunnel_tos: aya_bpf_bindings::bindings::__u8 +pub aya_bpf_bindings::bindings::bpf_tunnel_key::tunnel_ttl: aya_bpf_bindings::bindings::__u8 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_tunnel_key +pub fn aya_bpf_bindings::bindings::bpf_tunnel_key::clone(&self) -> aya_bpf_bindings::bindings::bpf_tunnel_key +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_tunnel_key +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_tunnel_key +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_tunnel_key +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_tunnel_key +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_tunnel_key +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_tunnel_key +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_tunnel_key where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_tunnel_key::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_tunnel_key where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_tunnel_key::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_tunnel_key::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_tunnel_key where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_tunnel_key::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_tunnel_key::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_tunnel_key where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_tunnel_key::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_tunnel_key where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_tunnel_key::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_tunnel_key where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_tunnel_key::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_tunnel_key +pub fn aya_bpf_bindings::bindings::bpf_tunnel_key::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_xdp_sock +pub aya_bpf_bindings::bindings::bpf_xdp_sock::queue_id: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_xdp_sock +pub fn aya_bpf_bindings::bindings::bpf_xdp_sock::clone(&self) -> aya_bpf_bindings::bindings::bpf_xdp_sock +impl core::fmt::Debug for aya_bpf_bindings::bindings::bpf_xdp_sock +pub fn aya_bpf_bindings::bindings::bpf_xdp_sock::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_xdp_sock +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_xdp_sock +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_xdp_sock +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_xdp_sock +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_xdp_sock +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_xdp_sock +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_xdp_sock where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_xdp_sock::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_xdp_sock where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_xdp_sock::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_xdp_sock::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_xdp_sock where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_xdp_sock::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_xdp_sock::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_xdp_sock where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_xdp_sock::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_xdp_sock where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_xdp_sock::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_xdp_sock where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_xdp_sock::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_xdp_sock +pub fn aya_bpf_bindings::bindings::bpf_xdp_sock::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::bpf_xfrm_state +pub aya_bpf_bindings::bindings::bpf_xfrm_state::__bindgen_anon_1: aya_bpf_bindings::bindings::bpf_xfrm_state__bindgen_ty_1 +pub aya_bpf_bindings::bindings::bpf_xfrm_state::ext: aya_bpf_bindings::bindings::__u16 +pub aya_bpf_bindings::bindings::bpf_xfrm_state::family: aya_bpf_bindings::bindings::__u16 +pub aya_bpf_bindings::bindings::bpf_xfrm_state::reqid: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::bpf_xfrm_state::spi: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::bpf_xfrm_state +pub fn aya_bpf_bindings::bindings::bpf_xfrm_state::clone(&self) -> aya_bpf_bindings::bindings::bpf_xfrm_state +impl core::marker::Copy for aya_bpf_bindings::bindings::bpf_xfrm_state +impl core::marker::Send for aya_bpf_bindings::bindings::bpf_xfrm_state +impl core::marker::Sync for aya_bpf_bindings::bindings::bpf_xfrm_state +impl core::marker::Unpin for aya_bpf_bindings::bindings::bpf_xfrm_state +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::bpf_xfrm_state +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::bpf_xfrm_state +impl core::convert::Into for aya_bpf_bindings::bindings::bpf_xfrm_state where U: core::convert::From +pub fn aya_bpf_bindings::bindings::bpf_xfrm_state::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::bpf_xfrm_state where U: core::convert::Into +pub type aya_bpf_bindings::bindings::bpf_xfrm_state::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::bpf_xfrm_state::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::bpf_xfrm_state where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::bpf_xfrm_state::Error = >::Error +pub fn aya_bpf_bindings::bindings::bpf_xfrm_state::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::bpf_xfrm_state where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_xfrm_state::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::bpf_xfrm_state where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_xfrm_state::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::bpf_xfrm_state where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::bpf_xfrm_state::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::bpf_xfrm_state +pub fn aya_bpf_bindings::bindings::bpf_xfrm_state::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::btf_ptr +pub aya_bpf_bindings::bindings::btf_ptr::flags: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::btf_ptr::ptr: *mut aya_bpf_cty::c_void +pub aya_bpf_bindings::bindings::btf_ptr::type_id: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::btf_ptr +pub fn aya_bpf_bindings::bindings::btf_ptr::clone(&self) -> aya_bpf_bindings::bindings::btf_ptr +impl core::fmt::Debug for aya_bpf_bindings::bindings::btf_ptr +pub fn aya_bpf_bindings::bindings::btf_ptr::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::btf_ptr +impl !core::marker::Send for aya_bpf_bindings::bindings::btf_ptr +impl !core::marker::Sync for aya_bpf_bindings::bindings::btf_ptr +impl core::marker::Unpin for aya_bpf_bindings::bindings::btf_ptr +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::btf_ptr +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::btf_ptr +impl core::convert::Into for aya_bpf_bindings::bindings::btf_ptr where U: core::convert::From +pub fn aya_bpf_bindings::bindings::btf_ptr::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::btf_ptr where U: core::convert::Into +pub type aya_bpf_bindings::bindings::btf_ptr::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::btf_ptr::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::btf_ptr where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::btf_ptr::Error = >::Error +pub fn aya_bpf_bindings::bindings::btf_ptr::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::btf_ptr where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::btf_ptr::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::btf_ptr where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::btf_ptr::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::btf_ptr where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::btf_ptr::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::btf_ptr +pub fn aya_bpf_bindings::bindings::btf_ptr::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::cgroup +impl core::clone::Clone for aya_bpf_bindings::bindings::cgroup +pub fn aya_bpf_bindings::bindings::cgroup::clone(&self) -> aya_bpf_bindings::bindings::cgroup +impl core::fmt::Debug for aya_bpf_bindings::bindings::cgroup +pub fn aya_bpf_bindings::bindings::cgroup::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::cgroup +impl core::marker::Send for aya_bpf_bindings::bindings::cgroup +impl core::marker::Sync for aya_bpf_bindings::bindings::cgroup +impl core::marker::Unpin for aya_bpf_bindings::bindings::cgroup +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::cgroup +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::cgroup +impl core::convert::Into for aya_bpf_bindings::bindings::cgroup where U: core::convert::From +pub fn aya_bpf_bindings::bindings::cgroup::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::cgroup where U: core::convert::Into +pub type aya_bpf_bindings::bindings::cgroup::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::cgroup::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::cgroup where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::cgroup::Error = >::Error +pub fn aya_bpf_bindings::bindings::cgroup::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::cgroup where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::cgroup::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::cgroup where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::cgroup::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::cgroup where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::cgroup::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::cgroup +pub fn aya_bpf_bindings::bindings::cgroup::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::file +impl core::clone::Clone for aya_bpf_bindings::bindings::file +pub fn aya_bpf_bindings::bindings::file::clone(&self) -> aya_bpf_bindings::bindings::file +impl core::fmt::Debug for aya_bpf_bindings::bindings::file +pub fn aya_bpf_bindings::bindings::file::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::file +impl core::marker::Send for aya_bpf_bindings::bindings::file +impl core::marker::Sync for aya_bpf_bindings::bindings::file +impl core::marker::Unpin for aya_bpf_bindings::bindings::file +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::file +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::file +impl core::convert::Into for aya_bpf_bindings::bindings::file where U: core::convert::From +pub fn aya_bpf_bindings::bindings::file::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::file where U: core::convert::Into +pub type aya_bpf_bindings::bindings::file::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::file::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::file where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::file::Error = >::Error +pub fn aya_bpf_bindings::bindings::file::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::file where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::file::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::file where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::file::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::file where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::file::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::file +pub fn aya_bpf_bindings::bindings::file::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::inode +impl core::clone::Clone for aya_bpf_bindings::bindings::inode +pub fn aya_bpf_bindings::bindings::inode::clone(&self) -> aya_bpf_bindings::bindings::inode +impl core::fmt::Debug for aya_bpf_bindings::bindings::inode +pub fn aya_bpf_bindings::bindings::inode::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::inode +impl core::marker::Send for aya_bpf_bindings::bindings::inode +impl core::marker::Sync for aya_bpf_bindings::bindings::inode +impl core::marker::Unpin for aya_bpf_bindings::bindings::inode +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::inode +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::inode +impl core::convert::Into for aya_bpf_bindings::bindings::inode where U: core::convert::From +pub fn aya_bpf_bindings::bindings::inode::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::inode where U: core::convert::Into +pub type aya_bpf_bindings::bindings::inode::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::inode::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::inode where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::inode::Error = >::Error +pub fn aya_bpf_bindings::bindings::inode::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::inode where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::inode::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::inode where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::inode::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::inode where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::inode::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::inode +pub fn aya_bpf_bindings::bindings::inode::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::iphdr +impl core::clone::Clone for aya_bpf_bindings::bindings::iphdr +pub fn aya_bpf_bindings::bindings::iphdr::clone(&self) -> aya_bpf_bindings::bindings::iphdr +impl core::fmt::Debug for aya_bpf_bindings::bindings::iphdr +pub fn aya_bpf_bindings::bindings::iphdr::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::iphdr +impl core::marker::Send for aya_bpf_bindings::bindings::iphdr +impl core::marker::Sync for aya_bpf_bindings::bindings::iphdr +impl core::marker::Unpin for aya_bpf_bindings::bindings::iphdr +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::iphdr +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::iphdr +impl core::convert::Into for aya_bpf_bindings::bindings::iphdr where U: core::convert::From +pub fn aya_bpf_bindings::bindings::iphdr::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::iphdr where U: core::convert::Into +pub type aya_bpf_bindings::bindings::iphdr::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::iphdr::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::iphdr where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::iphdr::Error = >::Error +pub fn aya_bpf_bindings::bindings::iphdr::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::iphdr where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::iphdr::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::iphdr where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::iphdr::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::iphdr where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::iphdr::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::iphdr +pub fn aya_bpf_bindings::bindings::iphdr::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::ipv6hdr +impl core::clone::Clone for aya_bpf_bindings::bindings::ipv6hdr +pub fn aya_bpf_bindings::bindings::ipv6hdr::clone(&self) -> aya_bpf_bindings::bindings::ipv6hdr +impl core::fmt::Debug for aya_bpf_bindings::bindings::ipv6hdr +pub fn aya_bpf_bindings::bindings::ipv6hdr::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::ipv6hdr +impl core::marker::Send for aya_bpf_bindings::bindings::ipv6hdr +impl core::marker::Sync for aya_bpf_bindings::bindings::ipv6hdr +impl core::marker::Unpin for aya_bpf_bindings::bindings::ipv6hdr +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::ipv6hdr +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::ipv6hdr +impl core::convert::Into for aya_bpf_bindings::bindings::ipv6hdr where U: core::convert::From +pub fn aya_bpf_bindings::bindings::ipv6hdr::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::ipv6hdr where U: core::convert::Into +pub type aya_bpf_bindings::bindings::ipv6hdr::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::ipv6hdr::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::ipv6hdr where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::ipv6hdr::Error = >::Error +pub fn aya_bpf_bindings::bindings::ipv6hdr::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::ipv6hdr where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::ipv6hdr::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::ipv6hdr where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::ipv6hdr::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::ipv6hdr where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::ipv6hdr::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::ipv6hdr +pub fn aya_bpf_bindings::bindings::ipv6hdr::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::linux_binprm +impl core::clone::Clone for aya_bpf_bindings::bindings::linux_binprm +pub fn aya_bpf_bindings::bindings::linux_binprm::clone(&self) -> aya_bpf_bindings::bindings::linux_binprm +impl core::fmt::Debug for aya_bpf_bindings::bindings::linux_binprm +pub fn aya_bpf_bindings::bindings::linux_binprm::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::linux_binprm +impl core::marker::Send for aya_bpf_bindings::bindings::linux_binprm +impl core::marker::Sync for aya_bpf_bindings::bindings::linux_binprm +impl core::marker::Unpin for aya_bpf_bindings::bindings::linux_binprm +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::linux_binprm +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::linux_binprm +impl core::convert::Into for aya_bpf_bindings::bindings::linux_binprm where U: core::convert::From +pub fn aya_bpf_bindings::bindings::linux_binprm::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::linux_binprm where U: core::convert::Into +pub type aya_bpf_bindings::bindings::linux_binprm::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::linux_binprm::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::linux_binprm where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::linux_binprm::Error = >::Error +pub fn aya_bpf_bindings::bindings::linux_binprm::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::linux_binprm where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::linux_binprm::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::linux_binprm where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::linux_binprm::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::linux_binprm where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::linux_binprm::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::linux_binprm +pub fn aya_bpf_bindings::bindings::linux_binprm::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::mptcp_sock +impl core::clone::Clone for aya_bpf_bindings::bindings::mptcp_sock +pub fn aya_bpf_bindings::bindings::mptcp_sock::clone(&self) -> aya_bpf_bindings::bindings::mptcp_sock +impl core::fmt::Debug for aya_bpf_bindings::bindings::mptcp_sock +pub fn aya_bpf_bindings::bindings::mptcp_sock::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::mptcp_sock +impl core::marker::Send for aya_bpf_bindings::bindings::mptcp_sock +impl core::marker::Sync for aya_bpf_bindings::bindings::mptcp_sock +impl core::marker::Unpin for aya_bpf_bindings::bindings::mptcp_sock +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::mptcp_sock +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::mptcp_sock +impl core::convert::Into for aya_bpf_bindings::bindings::mptcp_sock where U: core::convert::From +pub fn aya_bpf_bindings::bindings::mptcp_sock::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::mptcp_sock where U: core::convert::Into +pub type aya_bpf_bindings::bindings::mptcp_sock::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::mptcp_sock::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::mptcp_sock where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::mptcp_sock::Error = >::Error +pub fn aya_bpf_bindings::bindings::mptcp_sock::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::mptcp_sock where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::mptcp_sock::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::mptcp_sock where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::mptcp_sock::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::mptcp_sock where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::mptcp_sock::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::mptcp_sock +pub fn aya_bpf_bindings::bindings::mptcp_sock::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::path +impl core::clone::Clone for aya_bpf_bindings::bindings::path +pub fn aya_bpf_bindings::bindings::path::clone(&self) -> aya_bpf_bindings::bindings::path +impl core::fmt::Debug for aya_bpf_bindings::bindings::path +pub fn aya_bpf_bindings::bindings::path::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::path +impl core::marker::Send for aya_bpf_bindings::bindings::path +impl core::marker::Sync for aya_bpf_bindings::bindings::path +impl core::marker::Unpin for aya_bpf_bindings::bindings::path +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::path +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::path +impl core::convert::Into for aya_bpf_bindings::bindings::path where U: core::convert::From +pub fn aya_bpf_bindings::bindings::path::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::path where U: core::convert::Into +pub type aya_bpf_bindings::bindings::path::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::path::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::path where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::path::Error = >::Error +pub fn aya_bpf_bindings::bindings::path::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::path where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::path::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::path where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::path::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::path where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::path::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::path +pub fn aya_bpf_bindings::bindings::path::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::pt_regs +pub aya_bpf_bindings::bindings::pt_regs::cs: aya_bpf_cty::od::c_ulong +pub aya_bpf_bindings::bindings::pt_regs::eflags: aya_bpf_cty::od::c_ulong +pub aya_bpf_bindings::bindings::pt_regs::orig_rax: aya_bpf_cty::od::c_ulong +pub aya_bpf_bindings::bindings::pt_regs::r10: aya_bpf_cty::od::c_ulong +pub aya_bpf_bindings::bindings::pt_regs::r11: aya_bpf_cty::od::c_ulong +pub aya_bpf_bindings::bindings::pt_regs::r12: aya_bpf_cty::od::c_ulong +pub aya_bpf_bindings::bindings::pt_regs::r13: aya_bpf_cty::od::c_ulong +pub aya_bpf_bindings::bindings::pt_regs::r14: aya_bpf_cty::od::c_ulong +pub aya_bpf_bindings::bindings::pt_regs::r15: aya_bpf_cty::od::c_ulong +pub aya_bpf_bindings::bindings::pt_regs::r8: aya_bpf_cty::od::c_ulong +pub aya_bpf_bindings::bindings::pt_regs::r9: aya_bpf_cty::od::c_ulong +pub aya_bpf_bindings::bindings::pt_regs::rax: aya_bpf_cty::od::c_ulong +pub aya_bpf_bindings::bindings::pt_regs::rbp: aya_bpf_cty::od::c_ulong +pub aya_bpf_bindings::bindings::pt_regs::rbx: aya_bpf_cty::od::c_ulong +pub aya_bpf_bindings::bindings::pt_regs::rcx: aya_bpf_cty::od::c_ulong +pub aya_bpf_bindings::bindings::pt_regs::rdi: aya_bpf_cty::od::c_ulong +pub aya_bpf_bindings::bindings::pt_regs::rdx: aya_bpf_cty::od::c_ulong +pub aya_bpf_bindings::bindings::pt_regs::rip: aya_bpf_cty::od::c_ulong +pub aya_bpf_bindings::bindings::pt_regs::rsi: aya_bpf_cty::od::c_ulong +pub aya_bpf_bindings::bindings::pt_regs::rsp: aya_bpf_cty::od::c_ulong +pub aya_bpf_bindings::bindings::pt_regs::ss: aya_bpf_cty::od::c_ulong +impl core::clone::Clone for aya_bpf_bindings::bindings::pt_regs +pub fn aya_bpf_bindings::bindings::pt_regs::clone(&self) -> aya_bpf_bindings::bindings::pt_regs +impl core::fmt::Debug for aya_bpf_bindings::bindings::pt_regs +pub fn aya_bpf_bindings::bindings::pt_regs::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::pt_regs +impl core::marker::Send for aya_bpf_bindings::bindings::pt_regs +impl core::marker::Sync for aya_bpf_bindings::bindings::pt_regs +impl core::marker::Unpin for aya_bpf_bindings::bindings::pt_regs +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::pt_regs +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::pt_regs +impl core::convert::Into for aya_bpf_bindings::bindings::pt_regs where U: core::convert::From +pub fn aya_bpf_bindings::bindings::pt_regs::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::pt_regs where U: core::convert::Into +pub type aya_bpf_bindings::bindings::pt_regs::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::pt_regs::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::pt_regs where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::pt_regs::Error = >::Error +pub fn aya_bpf_bindings::bindings::pt_regs::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::pt_regs where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::pt_regs::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::pt_regs where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::pt_regs::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::pt_regs where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::pt_regs::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::pt_regs +pub fn aya_bpf_bindings::bindings::pt_regs::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::seq_file +impl core::clone::Clone for aya_bpf_bindings::bindings::seq_file +pub fn aya_bpf_bindings::bindings::seq_file::clone(&self) -> aya_bpf_bindings::bindings::seq_file +impl core::fmt::Debug for aya_bpf_bindings::bindings::seq_file +pub fn aya_bpf_bindings::bindings::seq_file::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::seq_file +impl core::marker::Send for aya_bpf_bindings::bindings::seq_file +impl core::marker::Sync for aya_bpf_bindings::bindings::seq_file +impl core::marker::Unpin for aya_bpf_bindings::bindings::seq_file +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::seq_file +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::seq_file +impl core::convert::Into for aya_bpf_bindings::bindings::seq_file where U: core::convert::From +pub fn aya_bpf_bindings::bindings::seq_file::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::seq_file where U: core::convert::Into +pub type aya_bpf_bindings::bindings::seq_file::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::seq_file::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::seq_file where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::seq_file::Error = >::Error +pub fn aya_bpf_bindings::bindings::seq_file::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::seq_file where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::seq_file::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::seq_file where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::seq_file::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::seq_file where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::seq_file::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::seq_file +pub fn aya_bpf_bindings::bindings::seq_file::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::sk_msg_md +pub aya_bpf_bindings::bindings::sk_msg_md::__bindgen_anon_1: aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_1 +pub aya_bpf_bindings::bindings::sk_msg_md::__bindgen_anon_2: aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_2 +pub aya_bpf_bindings::bindings::sk_msg_md::__bindgen_anon_3: aya_bpf_bindings::bindings::sk_msg_md__bindgen_ty_3 +pub aya_bpf_bindings::bindings::sk_msg_md::family: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::sk_msg_md::local_ip4: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::sk_msg_md::local_ip6: [aya_bpf_bindings::bindings::__u32; 4] +pub aya_bpf_bindings::bindings::sk_msg_md::local_port: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::sk_msg_md::remote_ip4: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::sk_msg_md::remote_ip6: [aya_bpf_bindings::bindings::__u32; 4] +pub aya_bpf_bindings::bindings::sk_msg_md::remote_port: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::sk_msg_md::size: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::sk_msg_md +pub fn aya_bpf_bindings::bindings::sk_msg_md::clone(&self) -> aya_bpf_bindings::bindings::sk_msg_md +impl core::marker::Copy for aya_bpf_bindings::bindings::sk_msg_md +impl !core::marker::Send for aya_bpf_bindings::bindings::sk_msg_md +impl !core::marker::Sync for aya_bpf_bindings::bindings::sk_msg_md +impl core::marker::Unpin for aya_bpf_bindings::bindings::sk_msg_md +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::sk_msg_md +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::sk_msg_md +impl core::convert::Into for aya_bpf_bindings::bindings::sk_msg_md where U: core::convert::From +pub fn aya_bpf_bindings::bindings::sk_msg_md::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::sk_msg_md where U: core::convert::Into +pub type aya_bpf_bindings::bindings::sk_msg_md::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::sk_msg_md::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::sk_msg_md where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::sk_msg_md::Error = >::Error +pub fn aya_bpf_bindings::bindings::sk_msg_md::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::sk_msg_md where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::sk_msg_md::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::sk_msg_md where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::sk_msg_md::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::sk_msg_md where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::sk_msg_md::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::sk_msg_md +pub fn aya_bpf_bindings::bindings::sk_msg_md::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::sk_reuseport_md +pub aya_bpf_bindings::bindings::sk_reuseport_md::__bindgen_anon_1: aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_1 +pub aya_bpf_bindings::bindings::sk_reuseport_md::__bindgen_anon_2: aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_2 +pub aya_bpf_bindings::bindings::sk_reuseport_md::__bindgen_anon_3: aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_3 +pub aya_bpf_bindings::bindings::sk_reuseport_md::__bindgen_anon_4: aya_bpf_bindings::bindings::sk_reuseport_md__bindgen_ty_4 +pub aya_bpf_bindings::bindings::sk_reuseport_md::bind_inany: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::sk_reuseport_md::eth_protocol: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::sk_reuseport_md::hash: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::sk_reuseport_md::ip_protocol: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::sk_reuseport_md::len: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::sk_reuseport_md +pub fn aya_bpf_bindings::bindings::sk_reuseport_md::clone(&self) -> aya_bpf_bindings::bindings::sk_reuseport_md +impl core::marker::Copy for aya_bpf_bindings::bindings::sk_reuseport_md +impl !core::marker::Send for aya_bpf_bindings::bindings::sk_reuseport_md +impl !core::marker::Sync for aya_bpf_bindings::bindings::sk_reuseport_md +impl core::marker::Unpin for aya_bpf_bindings::bindings::sk_reuseport_md +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::sk_reuseport_md +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::sk_reuseport_md +impl core::convert::Into for aya_bpf_bindings::bindings::sk_reuseport_md where U: core::convert::From +pub fn aya_bpf_bindings::bindings::sk_reuseport_md::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::sk_reuseport_md where U: core::convert::Into +pub type aya_bpf_bindings::bindings::sk_reuseport_md::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::sk_reuseport_md::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::sk_reuseport_md where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::sk_reuseport_md::Error = >::Error +pub fn aya_bpf_bindings::bindings::sk_reuseport_md::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::sk_reuseport_md where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::sk_reuseport_md::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::sk_reuseport_md where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::sk_reuseport_md::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::sk_reuseport_md where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::sk_reuseport_md::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::sk_reuseport_md +pub fn aya_bpf_bindings::bindings::sk_reuseport_md::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::sockaddr +pub aya_bpf_bindings::bindings::sockaddr::sa_data: [aya_bpf_cty::ad::c_char; 14] +pub aya_bpf_bindings::bindings::sockaddr::sa_family: aya_bpf_bindings::bindings::sa_family_t +impl core::clone::Clone for aya_bpf_bindings::bindings::sockaddr +pub fn aya_bpf_bindings::bindings::sockaddr::clone(&self) -> aya_bpf_bindings::bindings::sockaddr +impl core::fmt::Debug for aya_bpf_bindings::bindings::sockaddr +pub fn aya_bpf_bindings::bindings::sockaddr::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::sockaddr +impl core::marker::Send for aya_bpf_bindings::bindings::sockaddr +impl core::marker::Sync for aya_bpf_bindings::bindings::sockaddr +impl core::marker::Unpin for aya_bpf_bindings::bindings::sockaddr +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::sockaddr +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::sockaddr +impl core::convert::Into for aya_bpf_bindings::bindings::sockaddr where U: core::convert::From +pub fn aya_bpf_bindings::bindings::sockaddr::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::sockaddr where U: core::convert::Into +pub type aya_bpf_bindings::bindings::sockaddr::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::sockaddr::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::sockaddr where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::sockaddr::Error = >::Error +pub fn aya_bpf_bindings::bindings::sockaddr::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::sockaddr where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::sockaddr::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::sockaddr where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::sockaddr::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::sockaddr where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::sockaddr::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::sockaddr +pub fn aya_bpf_bindings::bindings::sockaddr::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::socket +impl core::clone::Clone for aya_bpf_bindings::bindings::socket +pub fn aya_bpf_bindings::bindings::socket::clone(&self) -> aya_bpf_bindings::bindings::socket +impl core::fmt::Debug for aya_bpf_bindings::bindings::socket +pub fn aya_bpf_bindings::bindings::socket::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::socket +impl core::marker::Send for aya_bpf_bindings::bindings::socket +impl core::marker::Sync for aya_bpf_bindings::bindings::socket +impl core::marker::Unpin for aya_bpf_bindings::bindings::socket +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::socket +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::socket +impl core::convert::Into for aya_bpf_bindings::bindings::socket where U: core::convert::From +pub fn aya_bpf_bindings::bindings::socket::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::socket where U: core::convert::Into +pub type aya_bpf_bindings::bindings::socket::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::socket::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::socket where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::socket::Error = >::Error +pub fn aya_bpf_bindings::bindings::socket::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::socket where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::socket::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::socket where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::socket::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::socket where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::socket::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::socket +pub fn aya_bpf_bindings::bindings::socket::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::task_struct +impl core::clone::Clone for aya_bpf_bindings::bindings::task_struct +pub fn aya_bpf_bindings::bindings::task_struct::clone(&self) -> aya_bpf_bindings::bindings::task_struct +impl core::fmt::Debug for aya_bpf_bindings::bindings::task_struct +pub fn aya_bpf_bindings::bindings::task_struct::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::task_struct +impl core::marker::Send for aya_bpf_bindings::bindings::task_struct +impl core::marker::Sync for aya_bpf_bindings::bindings::task_struct +impl core::marker::Unpin for aya_bpf_bindings::bindings::task_struct +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::task_struct +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::task_struct +impl core::convert::Into for aya_bpf_bindings::bindings::task_struct where U: core::convert::From +pub fn aya_bpf_bindings::bindings::task_struct::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::task_struct where U: core::convert::Into +pub type aya_bpf_bindings::bindings::task_struct::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::task_struct::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::task_struct where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::task_struct::Error = >::Error +pub fn aya_bpf_bindings::bindings::task_struct::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::task_struct where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::task_struct::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::task_struct where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::task_struct::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::task_struct where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::task_struct::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::task_struct +pub fn aya_bpf_bindings::bindings::task_struct::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::tcp6_sock +impl core::clone::Clone for aya_bpf_bindings::bindings::tcp6_sock +pub fn aya_bpf_bindings::bindings::tcp6_sock::clone(&self) -> aya_bpf_bindings::bindings::tcp6_sock +impl core::fmt::Debug for aya_bpf_bindings::bindings::tcp6_sock +pub fn aya_bpf_bindings::bindings::tcp6_sock::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::tcp6_sock +impl core::marker::Send for aya_bpf_bindings::bindings::tcp6_sock +impl core::marker::Sync for aya_bpf_bindings::bindings::tcp6_sock +impl core::marker::Unpin for aya_bpf_bindings::bindings::tcp6_sock +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::tcp6_sock +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::tcp6_sock +impl core::convert::Into for aya_bpf_bindings::bindings::tcp6_sock where U: core::convert::From +pub fn aya_bpf_bindings::bindings::tcp6_sock::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::tcp6_sock where U: core::convert::Into +pub type aya_bpf_bindings::bindings::tcp6_sock::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::tcp6_sock::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::tcp6_sock where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::tcp6_sock::Error = >::Error +pub fn aya_bpf_bindings::bindings::tcp6_sock::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::tcp6_sock where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::tcp6_sock::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::tcp6_sock where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::tcp6_sock::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::tcp6_sock where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::tcp6_sock::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::tcp6_sock +pub fn aya_bpf_bindings::bindings::tcp6_sock::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::tcp_request_sock +impl core::clone::Clone for aya_bpf_bindings::bindings::tcp_request_sock +pub fn aya_bpf_bindings::bindings::tcp_request_sock::clone(&self) -> aya_bpf_bindings::bindings::tcp_request_sock +impl core::fmt::Debug for aya_bpf_bindings::bindings::tcp_request_sock +pub fn aya_bpf_bindings::bindings::tcp_request_sock::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::tcp_request_sock +impl core::marker::Send for aya_bpf_bindings::bindings::tcp_request_sock +impl core::marker::Sync for aya_bpf_bindings::bindings::tcp_request_sock +impl core::marker::Unpin for aya_bpf_bindings::bindings::tcp_request_sock +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::tcp_request_sock +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::tcp_request_sock +impl core::convert::Into for aya_bpf_bindings::bindings::tcp_request_sock where U: core::convert::From +pub fn aya_bpf_bindings::bindings::tcp_request_sock::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::tcp_request_sock where U: core::convert::Into +pub type aya_bpf_bindings::bindings::tcp_request_sock::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::tcp_request_sock::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::tcp_request_sock where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::tcp_request_sock::Error = >::Error +pub fn aya_bpf_bindings::bindings::tcp_request_sock::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::tcp_request_sock where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::tcp_request_sock::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::tcp_request_sock where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::tcp_request_sock::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::tcp_request_sock where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::tcp_request_sock::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::tcp_request_sock +pub fn aya_bpf_bindings::bindings::tcp_request_sock::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::tcp_sock +impl core::clone::Clone for aya_bpf_bindings::bindings::tcp_sock +pub fn aya_bpf_bindings::bindings::tcp_sock::clone(&self) -> aya_bpf_bindings::bindings::tcp_sock +impl core::fmt::Debug for aya_bpf_bindings::bindings::tcp_sock +pub fn aya_bpf_bindings::bindings::tcp_sock::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::tcp_sock +impl core::marker::Send for aya_bpf_bindings::bindings::tcp_sock +impl core::marker::Sync for aya_bpf_bindings::bindings::tcp_sock +impl core::marker::Unpin for aya_bpf_bindings::bindings::tcp_sock +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::tcp_sock +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::tcp_sock +impl core::convert::Into for aya_bpf_bindings::bindings::tcp_sock where U: core::convert::From +pub fn aya_bpf_bindings::bindings::tcp_sock::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::tcp_sock where U: core::convert::Into +pub type aya_bpf_bindings::bindings::tcp_sock::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::tcp_sock::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::tcp_sock where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::tcp_sock::Error = >::Error +pub fn aya_bpf_bindings::bindings::tcp_sock::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::tcp_sock where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::tcp_sock::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::tcp_sock where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::tcp_sock::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::tcp_sock where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::tcp_sock::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::tcp_sock +pub fn aya_bpf_bindings::bindings::tcp_sock::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::tcp_timewait_sock +impl core::clone::Clone for aya_bpf_bindings::bindings::tcp_timewait_sock +pub fn aya_bpf_bindings::bindings::tcp_timewait_sock::clone(&self) -> aya_bpf_bindings::bindings::tcp_timewait_sock +impl core::fmt::Debug for aya_bpf_bindings::bindings::tcp_timewait_sock +pub fn aya_bpf_bindings::bindings::tcp_timewait_sock::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::tcp_timewait_sock +impl core::marker::Send for aya_bpf_bindings::bindings::tcp_timewait_sock +impl core::marker::Sync for aya_bpf_bindings::bindings::tcp_timewait_sock +impl core::marker::Unpin for aya_bpf_bindings::bindings::tcp_timewait_sock +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::tcp_timewait_sock +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::tcp_timewait_sock +impl core::convert::Into for aya_bpf_bindings::bindings::tcp_timewait_sock where U: core::convert::From +pub fn aya_bpf_bindings::bindings::tcp_timewait_sock::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::tcp_timewait_sock where U: core::convert::Into +pub type aya_bpf_bindings::bindings::tcp_timewait_sock::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::tcp_timewait_sock::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::tcp_timewait_sock where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::tcp_timewait_sock::Error = >::Error +pub fn aya_bpf_bindings::bindings::tcp_timewait_sock::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::tcp_timewait_sock where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::tcp_timewait_sock::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::tcp_timewait_sock where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::tcp_timewait_sock::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::tcp_timewait_sock where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::tcp_timewait_sock::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::tcp_timewait_sock +pub fn aya_bpf_bindings::bindings::tcp_timewait_sock::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::tcphdr +impl core::clone::Clone for aya_bpf_bindings::bindings::tcphdr +pub fn aya_bpf_bindings::bindings::tcphdr::clone(&self) -> aya_bpf_bindings::bindings::tcphdr +impl core::fmt::Debug for aya_bpf_bindings::bindings::tcphdr +pub fn aya_bpf_bindings::bindings::tcphdr::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::tcphdr +impl core::marker::Send for aya_bpf_bindings::bindings::tcphdr +impl core::marker::Sync for aya_bpf_bindings::bindings::tcphdr +impl core::marker::Unpin for aya_bpf_bindings::bindings::tcphdr +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::tcphdr +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::tcphdr +impl core::convert::Into for aya_bpf_bindings::bindings::tcphdr where U: core::convert::From +pub fn aya_bpf_bindings::bindings::tcphdr::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::tcphdr where U: core::convert::Into +pub type aya_bpf_bindings::bindings::tcphdr::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::tcphdr::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::tcphdr where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::tcphdr::Error = >::Error +pub fn aya_bpf_bindings::bindings::tcphdr::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::tcphdr where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::tcphdr::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::tcphdr where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::tcphdr::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::tcphdr where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::tcphdr::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::tcphdr +pub fn aya_bpf_bindings::bindings::tcphdr::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::udp6_sock +impl core::clone::Clone for aya_bpf_bindings::bindings::udp6_sock +pub fn aya_bpf_bindings::bindings::udp6_sock::clone(&self) -> aya_bpf_bindings::bindings::udp6_sock +impl core::fmt::Debug for aya_bpf_bindings::bindings::udp6_sock +pub fn aya_bpf_bindings::bindings::udp6_sock::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::udp6_sock +impl core::marker::Send for aya_bpf_bindings::bindings::udp6_sock +impl core::marker::Sync for aya_bpf_bindings::bindings::udp6_sock +impl core::marker::Unpin for aya_bpf_bindings::bindings::udp6_sock +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::udp6_sock +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::udp6_sock +impl core::convert::Into for aya_bpf_bindings::bindings::udp6_sock where U: core::convert::From +pub fn aya_bpf_bindings::bindings::udp6_sock::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::udp6_sock where U: core::convert::Into +pub type aya_bpf_bindings::bindings::udp6_sock::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::udp6_sock::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::udp6_sock where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::udp6_sock::Error = >::Error +pub fn aya_bpf_bindings::bindings::udp6_sock::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::udp6_sock where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::udp6_sock::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::udp6_sock where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::udp6_sock::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::udp6_sock where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::udp6_sock::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::udp6_sock +pub fn aya_bpf_bindings::bindings::udp6_sock::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::unix_sock +impl core::clone::Clone for aya_bpf_bindings::bindings::unix_sock +pub fn aya_bpf_bindings::bindings::unix_sock::clone(&self) -> aya_bpf_bindings::bindings::unix_sock +impl core::fmt::Debug for aya_bpf_bindings::bindings::unix_sock +pub fn aya_bpf_bindings::bindings::unix_sock::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::unix_sock +impl core::marker::Send for aya_bpf_bindings::bindings::unix_sock +impl core::marker::Sync for aya_bpf_bindings::bindings::unix_sock +impl core::marker::Unpin for aya_bpf_bindings::bindings::unix_sock +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::unix_sock +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::unix_sock +impl core::convert::Into for aya_bpf_bindings::bindings::unix_sock where U: core::convert::From +pub fn aya_bpf_bindings::bindings::unix_sock::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::unix_sock where U: core::convert::Into +pub type aya_bpf_bindings::bindings::unix_sock::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::unix_sock::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::unix_sock where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::unix_sock::Error = >::Error +pub fn aya_bpf_bindings::bindings::unix_sock::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::unix_sock where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::unix_sock::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::unix_sock where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::unix_sock::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::unix_sock where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::unix_sock::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::unix_sock +pub fn aya_bpf_bindings::bindings::unix_sock::from(t: T) -> T +#[repr(C)] pub struct aya_bpf_bindings::bindings::xdp_md +pub aya_bpf_bindings::bindings::xdp_md::data: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::xdp_md::data_end: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::xdp_md::data_meta: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::xdp_md::egress_ifindex: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::xdp_md::ingress_ifindex: aya_bpf_bindings::bindings::__u32 +pub aya_bpf_bindings::bindings::xdp_md::rx_queue_index: aya_bpf_bindings::bindings::__u32 +impl core::clone::Clone for aya_bpf_bindings::bindings::xdp_md +pub fn aya_bpf_bindings::bindings::xdp_md::clone(&self) -> aya_bpf_bindings::bindings::xdp_md +impl core::fmt::Debug for aya_bpf_bindings::bindings::xdp_md +pub fn aya_bpf_bindings::bindings::xdp_md::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_bpf_bindings::bindings::xdp_md +impl core::marker::Send for aya_bpf_bindings::bindings::xdp_md +impl core::marker::Sync for aya_bpf_bindings::bindings::xdp_md +impl core::marker::Unpin for aya_bpf_bindings::bindings::xdp_md +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf_bindings::bindings::xdp_md +impl core::panic::unwind_safe::UnwindSafe for aya_bpf_bindings::bindings::xdp_md +impl core::convert::Into for aya_bpf_bindings::bindings::xdp_md where U: core::convert::From +pub fn aya_bpf_bindings::bindings::xdp_md::into(self) -> U +impl core::convert::TryFrom for aya_bpf_bindings::bindings::xdp_md where U: core::convert::Into +pub type aya_bpf_bindings::bindings::xdp_md::Error = core::convert::Infallible +pub fn aya_bpf_bindings::bindings::xdp_md::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf_bindings::bindings::xdp_md where U: core::convert::TryFrom +pub type aya_bpf_bindings::bindings::xdp_md::Error = >::Error +pub fn aya_bpf_bindings::bindings::xdp_md::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf_bindings::bindings::xdp_md where T: 'static + core::marker::Sized +pub fn aya_bpf_bindings::bindings::xdp_md::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf_bindings::bindings::xdp_md where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::xdp_md::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf_bindings::bindings::xdp_md where T: core::marker::Sized +pub fn aya_bpf_bindings::bindings::xdp_md::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf_bindings::bindings::xdp_md +pub fn aya_bpf_bindings::bindings::xdp_md::from(t: T) -> T +pub const aya_bpf_bindings::bindings::BPF_ABS: u32 = 32u32 +pub const aya_bpf_bindings::bindings::BPF_ADD: u32 = 0u32 +pub const aya_bpf_bindings::bindings::BPF_ADJ_ROOM_ENCAP_L2_MASK: aya_bpf_bindings::bindings::_bindgen_ty_16 = 255u32 +pub const aya_bpf_bindings::bindings::BPF_ADJ_ROOM_ENCAP_L2_SHIFT: aya_bpf_bindings::bindings::_bindgen_ty_16 = 56u32 +pub const aya_bpf_bindings::bindings::BPF_ALU: u32 = 4u32 +pub const aya_bpf_bindings::bindings::BPF_ALU64: u32 = 7u32 +pub const aya_bpf_bindings::bindings::BPF_AND: u32 = 80u32 +pub const aya_bpf_bindings::bindings::BPF_ANY: aya_bpf_bindings::bindings::_bindgen_ty_2 = 0u32 +pub const aya_bpf_bindings::bindings::BPF_ARSH: u32 = 192u32 +pub const aya_bpf_bindings::bindings::BPF_ATOMIC: u32 = 192u32 +pub const aya_bpf_bindings::bindings::BPF_B: u32 = 16u32 +pub const aya_bpf_bindings::bindings::BPF_BUILD_ID_SIZE: u32 = 20u32 +pub const aya_bpf_bindings::bindings::BPF_CALL: u32 = 128u32 +pub const aya_bpf_bindings::bindings::BPF_CMPXCHG: u32 = 241u32 +pub const aya_bpf_bindings::bindings::BPF_CSUM_LEVEL_DEC: aya_bpf_bindings::bindings::_bindgen_ty_14 = 2u32 +pub const aya_bpf_bindings::bindings::BPF_CSUM_LEVEL_INC: aya_bpf_bindings::bindings::_bindgen_ty_14 = 1u32 +pub const aya_bpf_bindings::bindings::BPF_CSUM_LEVEL_QUERY: aya_bpf_bindings::bindings::_bindgen_ty_14 = 0u32 +pub const aya_bpf_bindings::bindings::BPF_CSUM_LEVEL_RESET: aya_bpf_bindings::bindings::_bindgen_ty_14 = 3u32 +pub const aya_bpf_bindings::bindings::BPF_DEVCG_ACC_MKNOD: aya_bpf_bindings::bindings::_bindgen_ty_33 = 1u32 +pub const aya_bpf_bindings::bindings::BPF_DEVCG_ACC_READ: aya_bpf_bindings::bindings::_bindgen_ty_33 = 2u32 +pub const aya_bpf_bindings::bindings::BPF_DEVCG_ACC_WRITE: aya_bpf_bindings::bindings::_bindgen_ty_33 = 4u32 +pub const aya_bpf_bindings::bindings::BPF_DEVCG_DEV_BLOCK: aya_bpf_bindings::bindings::_bindgen_ty_34 = 1u32 +pub const aya_bpf_bindings::bindings::BPF_DEVCG_DEV_CHAR: aya_bpf_bindings::bindings::_bindgen_ty_34 = 2u32 +pub const aya_bpf_bindings::bindings::BPF_DIV: u32 = 48u32 +pub const aya_bpf_bindings::bindings::BPF_DW: u32 = 24u32 +pub const aya_bpf_bindings::bindings::BPF_END: u32 = 208u32 +pub const aya_bpf_bindings::bindings::BPF_EXIST: aya_bpf_bindings::bindings::_bindgen_ty_2 = 2u32 +pub const aya_bpf_bindings::bindings::BPF_EXIT: u32 = 144u32 +pub const aya_bpf_bindings::bindings::BPF_FETCH: u32 = 1u32 +pub const aya_bpf_bindings::bindings::BPF_FIB_LKUP_RET_BLACKHOLE: aya_bpf_bindings::bindings::_bindgen_ty_36 = 1u32 +pub const aya_bpf_bindings::bindings::BPF_FIB_LKUP_RET_FRAG_NEEDED: aya_bpf_bindings::bindings::_bindgen_ty_36 = 8u32 +pub const aya_bpf_bindings::bindings::BPF_FIB_LKUP_RET_FWD_DISABLED: aya_bpf_bindings::bindings::_bindgen_ty_36 = 5u32 +pub const aya_bpf_bindings::bindings::BPF_FIB_LKUP_RET_NOT_FWDED: aya_bpf_bindings::bindings::_bindgen_ty_36 = 4u32 +pub const aya_bpf_bindings::bindings::BPF_FIB_LKUP_RET_NO_NEIGH: aya_bpf_bindings::bindings::_bindgen_ty_36 = 7u32 +pub const aya_bpf_bindings::bindings::BPF_FIB_LKUP_RET_PROHIBIT: aya_bpf_bindings::bindings::_bindgen_ty_36 = 3u32 +pub const aya_bpf_bindings::bindings::BPF_FIB_LKUP_RET_SUCCESS: aya_bpf_bindings::bindings::_bindgen_ty_36 = 0u32 +pub const aya_bpf_bindings::bindings::BPF_FIB_LKUP_RET_UNREACHABLE: aya_bpf_bindings::bindings::_bindgen_ty_36 = 2u32 +pub const aya_bpf_bindings::bindings::BPF_FIB_LKUP_RET_UNSUPP_LWT: aya_bpf_bindings::bindings::_bindgen_ty_36 = 6u32 +pub const aya_bpf_bindings::bindings::BPF_FIB_LOOKUP_DIRECT: aya_bpf_bindings::bindings::_bindgen_ty_35 = 1u32 +pub const aya_bpf_bindings::bindings::BPF_FIB_LOOKUP_OUTPUT: aya_bpf_bindings::bindings::_bindgen_ty_35 = 2u32 +pub const aya_bpf_bindings::bindings::BPF_FIB_LOOKUP_SKIP_NEIGH: aya_bpf_bindings::bindings::_bindgen_ty_35 = 4u32 +pub const aya_bpf_bindings::bindings::BPF_FLOW_DISSECTOR_F_PARSE_1ST_FRAG: aya_bpf_bindings::bindings::_bindgen_ty_37 = 1u32 +pub const aya_bpf_bindings::bindings::BPF_FLOW_DISSECTOR_F_STOP_AT_ENCAP: aya_bpf_bindings::bindings::_bindgen_ty_37 = 4u32 +pub const aya_bpf_bindings::bindings::BPF_FLOW_DISSECTOR_F_STOP_AT_FLOW_LABEL: aya_bpf_bindings::bindings::_bindgen_ty_37 = 2u32 +pub const aya_bpf_bindings::bindings::BPF_FROM_BE: u32 = 8u32 +pub const aya_bpf_bindings::bindings::BPF_FROM_LE: u32 = 0u32 +pub const aya_bpf_bindings::bindings::BPF_F_ADJ_ROOM_DECAP_L3_IPV4: aya_bpf_bindings::bindings::_bindgen_ty_15 = 128u32 +pub const aya_bpf_bindings::bindings::BPF_F_ADJ_ROOM_DECAP_L3_IPV6: aya_bpf_bindings::bindings::_bindgen_ty_15 = 256u32 +pub const aya_bpf_bindings::bindings::BPF_F_ADJ_ROOM_ENCAP_L2_ETH: aya_bpf_bindings::bindings::_bindgen_ty_15 = 64u32 +pub const aya_bpf_bindings::bindings::BPF_F_ADJ_ROOM_ENCAP_L3_IPV4: aya_bpf_bindings::bindings::_bindgen_ty_15 = 2u32 +pub const aya_bpf_bindings::bindings::BPF_F_ADJ_ROOM_ENCAP_L3_IPV6: aya_bpf_bindings::bindings::_bindgen_ty_15 = 4u32 +pub const aya_bpf_bindings::bindings::BPF_F_ADJ_ROOM_ENCAP_L4_GRE: aya_bpf_bindings::bindings::_bindgen_ty_15 = 8u32 +pub const aya_bpf_bindings::bindings::BPF_F_ADJ_ROOM_ENCAP_L4_UDP: aya_bpf_bindings::bindings::_bindgen_ty_15 = 16u32 +pub const aya_bpf_bindings::bindings::BPF_F_ADJ_ROOM_FIXED_GSO: aya_bpf_bindings::bindings::_bindgen_ty_15 = 1u32 +pub const aya_bpf_bindings::bindings::BPF_F_ADJ_ROOM_NO_CSUM_RESET: aya_bpf_bindings::bindings::_bindgen_ty_15 = 32u32 +pub const aya_bpf_bindings::bindings::BPF_F_ALLOW_MULTI: u32 = 2u32 +pub const aya_bpf_bindings::bindings::BPF_F_ALLOW_OVERRIDE: u32 = 1u32 +pub const aya_bpf_bindings::bindings::BPF_F_ANY_ALIGNMENT: u32 = 2u32 +pub const aya_bpf_bindings::bindings::BPF_F_BPRM_SECUREEXEC: aya_bpf_bindings::bindings::_bindgen_ty_24 = 1u32 +pub const aya_bpf_bindings::bindings::BPF_F_BROADCAST: aya_bpf_bindings::bindings::_bindgen_ty_25 = 8u32 +pub const aya_bpf_bindings::bindings::BPF_F_CLONE: aya_bpf_bindings::bindings::_bindgen_ty_3 = 512u32 +pub const aya_bpf_bindings::bindings::BPF_F_CTXLEN_MASK: aya_bpf_bindings::bindings::_bindgen_ty_12 = 4_503_595_332_403_200u64 +pub const aya_bpf_bindings::bindings::BPF_F_CURRENT_CPU: aya_bpf_bindings::bindings::_bindgen_ty_12 = 4_294_967_295u64 +pub const aya_bpf_bindings::bindings::BPF_F_CURRENT_NETNS: aya_bpf_bindings::bindings::_bindgen_ty_13 = -1i32 +pub const aya_bpf_bindings::bindings::BPF_F_DONT_FRAGMENT: aya_bpf_bindings::bindings::_bindgen_ty_10 = 4u32 +pub const aya_bpf_bindings::bindings::BPF_F_EXCLUDE_INGRESS: aya_bpf_bindings::bindings::_bindgen_ty_25 = 16u32 +pub const aya_bpf_bindings::bindings::BPF_F_FAST_STACK_CMP: aya_bpf_bindings::bindings::_bindgen_ty_9 = 512u32 +pub const aya_bpf_bindings::bindings::BPF_F_GET_BRANCH_RECORDS_SIZE: aya_bpf_bindings::bindings::_bindgen_ty_19 = 1u32 +pub const aya_bpf_bindings::bindings::BPF_F_HDR_FIELD_MASK: aya_bpf_bindings::bindings::_bindgen_ty_5 = 15u32 +pub const aya_bpf_bindings::bindings::BPF_F_INDEX_MASK: aya_bpf_bindings::bindings::_bindgen_ty_12 = 4_294_967_295u64 +pub const aya_bpf_bindings::bindings::BPF_F_INGRESS: aya_bpf_bindings::bindings::_bindgen_ty_7 = 1u32 +pub const aya_bpf_bindings::bindings::BPF_F_INNER_MAP: aya_bpf_bindings::bindings::_bindgen_ty_3 = 4_096u32 +pub const aya_bpf_bindings::bindings::BPF_F_INVALIDATE_HASH: aya_bpf_bindings::bindings::_bindgen_ty_4 = 2u32 +pub const aya_bpf_bindings::bindings::BPF_F_KPROBE_MULTI_RETURN: u32 = 1u32 +pub const aya_bpf_bindings::bindings::BPF_F_LINK: aya_bpf_bindings::bindings::_bindgen_ty_3 = 8_192u32 +pub const aya_bpf_bindings::bindings::BPF_F_LOCK: aya_bpf_bindings::bindings::_bindgen_ty_2 = 4u32 +pub const aya_bpf_bindings::bindings::BPF_F_MARK_ENFORCE: aya_bpf_bindings::bindings::_bindgen_ty_6 = 64u32 +pub const aya_bpf_bindings::bindings::BPF_F_MARK_MANGLED_0: aya_bpf_bindings::bindings::_bindgen_ty_6 = 32u32 +pub const aya_bpf_bindings::bindings::BPF_F_MMAPABLE: aya_bpf_bindings::bindings::_bindgen_ty_3 = 1_024u32 +pub const aya_bpf_bindings::bindings::BPF_F_NO_COMMON_LRU: aya_bpf_bindings::bindings::_bindgen_ty_3 = 2u32 +pub const aya_bpf_bindings::bindings::BPF_F_NO_PREALLOC: aya_bpf_bindings::bindings::_bindgen_ty_3 = 1u32 +pub const aya_bpf_bindings::bindings::BPF_F_NO_TUNNEL_KEY: aya_bpf_bindings::bindings::_bindgen_ty_10 = 16u32 +pub const aya_bpf_bindings::bindings::BPF_F_NUMA_NODE: aya_bpf_bindings::bindings::_bindgen_ty_3 = 4u32 +pub const aya_bpf_bindings::bindings::BPF_F_PATH_FD: aya_bpf_bindings::bindings::_bindgen_ty_3 = 16_384u32 +pub const aya_bpf_bindings::bindings::BPF_F_PRESERVE_ELEMS: aya_bpf_bindings::bindings::_bindgen_ty_3 = 2_048u32 +pub const aya_bpf_bindings::bindings::BPF_F_PSEUDO_HDR: aya_bpf_bindings::bindings::_bindgen_ty_6 = 16u32 +pub const aya_bpf_bindings::bindings::BPF_F_QUERY_EFFECTIVE: u32 = 1u32 +pub const aya_bpf_bindings::bindings::BPF_F_RDONLY: aya_bpf_bindings::bindings::_bindgen_ty_3 = 8u32 +pub const aya_bpf_bindings::bindings::BPF_F_RDONLY_PROG: aya_bpf_bindings::bindings::_bindgen_ty_3 = 128u32 +pub const aya_bpf_bindings::bindings::BPF_F_RECOMPUTE_CSUM: aya_bpf_bindings::bindings::_bindgen_ty_4 = 1u32 +pub const aya_bpf_bindings::bindings::BPF_F_REPLACE: u32 = 4u32 +pub const aya_bpf_bindings::bindings::BPF_F_REUSE_STACKID: aya_bpf_bindings::bindings::_bindgen_ty_9 = 1_024u32 +pub const aya_bpf_bindings::bindings::BPF_F_SEQ_NUMBER: aya_bpf_bindings::bindings::_bindgen_ty_10 = 8u32 +pub const aya_bpf_bindings::bindings::BPF_F_SKIP_FIELD_MASK: aya_bpf_bindings::bindings::_bindgen_ty_9 = 255u32 +pub const aya_bpf_bindings::bindings::BPF_F_SLEEPABLE: u32 = 16u32 +pub const aya_bpf_bindings::bindings::BPF_F_STACK_BUILD_ID: aya_bpf_bindings::bindings::_bindgen_ty_3 = 32u32 +pub const aya_bpf_bindings::bindings::BPF_F_STRICT_ALIGNMENT: u32 = 1u32 +pub const aya_bpf_bindings::bindings::BPF_F_SYSCTL_BASE_NAME: aya_bpf_bindings::bindings::_bindgen_ty_17 = 1u32 +pub const aya_bpf_bindings::bindings::BPF_F_TEST_RND_HI32: u32 = 4u32 +pub const aya_bpf_bindings::bindings::BPF_F_TEST_RUN_ON_CPU: u32 = 1u32 +pub const aya_bpf_bindings::bindings::BPF_F_TEST_STATE_FREQ: u32 = 8u32 +pub const aya_bpf_bindings::bindings::BPF_F_TEST_XDP_LIVE_FRAMES: u32 = 2u32 +pub const aya_bpf_bindings::bindings::BPF_F_TIMER_ABS: aya_bpf_bindings::bindings::_bindgen_ty_39 = 1u32 +pub const aya_bpf_bindings::bindings::BPF_F_TUNINFO_FLAGS: aya_bpf_bindings::bindings::_bindgen_ty_11 = 16u32 +pub const aya_bpf_bindings::bindings::BPF_F_TUNINFO_IPV6: aya_bpf_bindings::bindings::_bindgen_ty_8 = 1u32 +pub const aya_bpf_bindings::bindings::BPF_F_USER_BUILD_ID: aya_bpf_bindings::bindings::_bindgen_ty_9 = 2_048u32 +pub const aya_bpf_bindings::bindings::BPF_F_USER_STACK: aya_bpf_bindings::bindings::_bindgen_ty_9 = 256u32 +pub const aya_bpf_bindings::bindings::BPF_F_WRONLY: aya_bpf_bindings::bindings::_bindgen_ty_3 = 16u32 +pub const aya_bpf_bindings::bindings::BPF_F_WRONLY_PROG: aya_bpf_bindings::bindings::_bindgen_ty_3 = 256u32 +pub const aya_bpf_bindings::bindings::BPF_F_XDP_DEV_BOUND_ONLY: u32 = 64u32 +pub const aya_bpf_bindings::bindings::BPF_F_XDP_HAS_FRAGS: u32 = 32u32 +pub const aya_bpf_bindings::bindings::BPF_F_ZERO_CSUM_TX: aya_bpf_bindings::bindings::_bindgen_ty_10 = 2u32 +pub const aya_bpf_bindings::bindings::BPF_F_ZERO_SEED: aya_bpf_bindings::bindings::_bindgen_ty_3 = 64u32 +pub const aya_bpf_bindings::bindings::BPF_H: u32 = 8u32 +pub const aya_bpf_bindings::bindings::BPF_IMM: u32 = 0u32 +pub const aya_bpf_bindings::bindings::BPF_IND: u32 = 64u32 +pub const aya_bpf_bindings::bindings::BPF_JA: u32 = 0u32 +pub const aya_bpf_bindings::bindings::BPF_JEQ: u32 = 16u32 +pub const aya_bpf_bindings::bindings::BPF_JGE: u32 = 48u32 +pub const aya_bpf_bindings::bindings::BPF_JGT: u32 = 32u32 +pub const aya_bpf_bindings::bindings::BPF_JLE: u32 = 176u32 +pub const aya_bpf_bindings::bindings::BPF_JLT: u32 = 160u32 +pub const aya_bpf_bindings::bindings::BPF_JMP: u32 = 5u32 +pub const aya_bpf_bindings::bindings::BPF_JMP32: u32 = 6u32 +pub const aya_bpf_bindings::bindings::BPF_JNE: u32 = 80u32 +pub const aya_bpf_bindings::bindings::BPF_JSET: u32 = 64u32 +pub const aya_bpf_bindings::bindings::BPF_JSGE: u32 = 112u32 +pub const aya_bpf_bindings::bindings::BPF_JSGT: u32 = 96u32 +pub const aya_bpf_bindings::bindings::BPF_JSLE: u32 = 208u32 +pub const aya_bpf_bindings::bindings::BPF_JSLT: u32 = 192u32 +pub const aya_bpf_bindings::bindings::BPF_K: u32 = 0u32 +pub const aya_bpf_bindings::bindings::BPF_LD: u32 = 0u32 +pub const aya_bpf_bindings::bindings::BPF_LDX: u32 = 1u32 +pub const aya_bpf_bindings::bindings::BPF_LEN: u32 = 128u32 +pub const aya_bpf_bindings::bindings::BPF_LOCAL_STORAGE_GET_F_CREATE: aya_bpf_bindings::bindings::_bindgen_ty_18 = 1u32 +pub const aya_bpf_bindings::bindings::BPF_LSH: u32 = 96u32 +pub const aya_bpf_bindings::bindings::BPF_MAXINSNS: u32 = 4_096u32 +pub const aya_bpf_bindings::bindings::BPF_MEM: u32 = 96u32 +pub const aya_bpf_bindings::bindings::BPF_MISC: u32 = 7u32 +pub const aya_bpf_bindings::bindings::BPF_MOD: u32 = 144u32 +pub const aya_bpf_bindings::bindings::BPF_MOV: u32 = 176u32 +pub const aya_bpf_bindings::bindings::BPF_MSH: u32 = 160u32 +pub const aya_bpf_bindings::bindings::BPF_MUL: u32 = 32u32 +pub const aya_bpf_bindings::bindings::BPF_NEG: u32 = 128u32 +pub const aya_bpf_bindings::bindings::BPF_NOEXIST: aya_bpf_bindings::bindings::_bindgen_ty_2 = 1u32 +pub const aya_bpf_bindings::bindings::BPF_OBJ_NAME_LEN: u32 = 16u32 +pub const aya_bpf_bindings::bindings::BPF_OR: u32 = 64u32 +pub const aya_bpf_bindings::bindings::BPF_PSEUDO_BTF_ID: u32 = 3u32 +pub const aya_bpf_bindings::bindings::BPF_PSEUDO_CALL: u32 = 1u32 +pub const aya_bpf_bindings::bindings::BPF_PSEUDO_FUNC: u32 = 4u32 +pub const aya_bpf_bindings::bindings::BPF_PSEUDO_KFUNC_CALL: u32 = 2u32 +pub const aya_bpf_bindings::bindings::BPF_PSEUDO_MAP_FD: u32 = 1u32 +pub const aya_bpf_bindings::bindings::BPF_PSEUDO_MAP_IDX: u32 = 5u32 +pub const aya_bpf_bindings::bindings::BPF_PSEUDO_MAP_IDX_VALUE: u32 = 6u32 +pub const aya_bpf_bindings::bindings::BPF_PSEUDO_MAP_VALUE: u32 = 2u32 +pub const aya_bpf_bindings::bindings::BPF_RB_AVAIL_DATA: aya_bpf_bindings::bindings::_bindgen_ty_21 = 0u32 +pub const aya_bpf_bindings::bindings::BPF_RB_CONS_POS: aya_bpf_bindings::bindings::_bindgen_ty_21 = 2u32 +pub const aya_bpf_bindings::bindings::BPF_RB_FORCE_WAKEUP: aya_bpf_bindings::bindings::_bindgen_ty_20 = 2u32 +pub const aya_bpf_bindings::bindings::BPF_RB_NO_WAKEUP: aya_bpf_bindings::bindings::_bindgen_ty_20 = 1u32 +pub const aya_bpf_bindings::bindings::BPF_RB_PROD_POS: aya_bpf_bindings::bindings::_bindgen_ty_21 = 3u32 +pub const aya_bpf_bindings::bindings::BPF_RB_RING_SIZE: aya_bpf_bindings::bindings::_bindgen_ty_21 = 1u32 +pub const aya_bpf_bindings::bindings::BPF_REG_0: aya_bpf_bindings::bindings::_bindgen_ty_1 = 0u32 +pub const aya_bpf_bindings::bindings::BPF_REG_1: aya_bpf_bindings::bindings::_bindgen_ty_1 = 1u32 +pub const aya_bpf_bindings::bindings::BPF_REG_10: aya_bpf_bindings::bindings::_bindgen_ty_1 = 10u32 +pub const aya_bpf_bindings::bindings::BPF_REG_2: aya_bpf_bindings::bindings::_bindgen_ty_1 = 2u32 +pub const aya_bpf_bindings::bindings::BPF_REG_3: aya_bpf_bindings::bindings::_bindgen_ty_1 = 3u32 +pub const aya_bpf_bindings::bindings::BPF_REG_4: aya_bpf_bindings::bindings::_bindgen_ty_1 = 4u32 +pub const aya_bpf_bindings::bindings::BPF_REG_5: aya_bpf_bindings::bindings::_bindgen_ty_1 = 5u32 +pub const aya_bpf_bindings::bindings::BPF_REG_6: aya_bpf_bindings::bindings::_bindgen_ty_1 = 6u32 +pub const aya_bpf_bindings::bindings::BPF_REG_7: aya_bpf_bindings::bindings::_bindgen_ty_1 = 7u32 +pub const aya_bpf_bindings::bindings::BPF_REG_8: aya_bpf_bindings::bindings::_bindgen_ty_1 = 8u32 +pub const aya_bpf_bindings::bindings::BPF_REG_9: aya_bpf_bindings::bindings::_bindgen_ty_1 = 9u32 +pub const aya_bpf_bindings::bindings::BPF_RET: u32 = 6u32 +pub const aya_bpf_bindings::bindings::BPF_RINGBUF_BUSY_BIT: aya_bpf_bindings::bindings::_bindgen_ty_22 = 2_147_483_648u32 +pub const aya_bpf_bindings::bindings::BPF_RINGBUF_DISCARD_BIT: aya_bpf_bindings::bindings::_bindgen_ty_22 = 1_073_741_824u32 +pub const aya_bpf_bindings::bindings::BPF_RINGBUF_HDR_SZ: aya_bpf_bindings::bindings::_bindgen_ty_22 = 8u32 +pub const aya_bpf_bindings::bindings::BPF_RSH: u32 = 112u32 +pub const aya_bpf_bindings::bindings::BPF_SK_LOOKUP_F_NO_REUSEPORT: aya_bpf_bindings::bindings::_bindgen_ty_23 = 2u32 +pub const aya_bpf_bindings::bindings::BPF_SK_LOOKUP_F_REPLACE: aya_bpf_bindings::bindings::_bindgen_ty_23 = 1u32 +pub const aya_bpf_bindings::bindings::BPF_SK_STORAGE_GET_F_CREATE: aya_bpf_bindings::bindings::_bindgen_ty_18 = 1u32 +pub const aya_bpf_bindings::bindings::BPF_SOCK_OPS_ACTIVE_ESTABLISHED_CB: aya_bpf_bindings::bindings::_bindgen_ty_28 = 4u32 +pub const aya_bpf_bindings::bindings::BPF_SOCK_OPS_ALL_CB_FLAGS: aya_bpf_bindings::bindings::_bindgen_ty_27 = 127u32 +pub const aya_bpf_bindings::bindings::BPF_SOCK_OPS_BASE_RTT: aya_bpf_bindings::bindings::_bindgen_ty_28 = 7u32 +pub const aya_bpf_bindings::bindings::BPF_SOCK_OPS_HDR_OPT_LEN_CB: aya_bpf_bindings::bindings::_bindgen_ty_28 = 14u32 +pub const aya_bpf_bindings::bindings::BPF_SOCK_OPS_NEEDS_ECN: aya_bpf_bindings::bindings::_bindgen_ty_28 = 6u32 +pub const aya_bpf_bindings::bindings::BPF_SOCK_OPS_PARSE_ALL_HDR_OPT_CB_FLAG: aya_bpf_bindings::bindings::_bindgen_ty_27 = 16u32 +pub const aya_bpf_bindings::bindings::BPF_SOCK_OPS_PARSE_HDR_OPT_CB: aya_bpf_bindings::bindings::_bindgen_ty_28 = 13u32 +pub const aya_bpf_bindings::bindings::BPF_SOCK_OPS_PARSE_UNKNOWN_HDR_OPT_CB_FLAG: aya_bpf_bindings::bindings::_bindgen_ty_27 = 32u32 +pub const aya_bpf_bindings::bindings::BPF_SOCK_OPS_PASSIVE_ESTABLISHED_CB: aya_bpf_bindings::bindings::_bindgen_ty_28 = 5u32 +pub const aya_bpf_bindings::bindings::BPF_SOCK_OPS_RETRANS_CB: aya_bpf_bindings::bindings::_bindgen_ty_28 = 9u32 +pub const aya_bpf_bindings::bindings::BPF_SOCK_OPS_RETRANS_CB_FLAG: aya_bpf_bindings::bindings::_bindgen_ty_27 = 2u32 +pub const aya_bpf_bindings::bindings::BPF_SOCK_OPS_RTO_CB: aya_bpf_bindings::bindings::_bindgen_ty_28 = 8u32 +pub const aya_bpf_bindings::bindings::BPF_SOCK_OPS_RTO_CB_FLAG: aya_bpf_bindings::bindings::_bindgen_ty_27 = 1u32 +pub const aya_bpf_bindings::bindings::BPF_SOCK_OPS_RTT_CB: aya_bpf_bindings::bindings::_bindgen_ty_28 = 12u32 +pub const aya_bpf_bindings::bindings::BPF_SOCK_OPS_RTT_CB_FLAG: aya_bpf_bindings::bindings::_bindgen_ty_27 = 8u32 +pub const aya_bpf_bindings::bindings::BPF_SOCK_OPS_RWND_INIT: aya_bpf_bindings::bindings::_bindgen_ty_28 = 2u32 +pub const aya_bpf_bindings::bindings::BPF_SOCK_OPS_STATE_CB: aya_bpf_bindings::bindings::_bindgen_ty_28 = 10u32 +pub const aya_bpf_bindings::bindings::BPF_SOCK_OPS_STATE_CB_FLAG: aya_bpf_bindings::bindings::_bindgen_ty_27 = 4u32 +pub const aya_bpf_bindings::bindings::BPF_SOCK_OPS_TCP_CONNECT_CB: aya_bpf_bindings::bindings::_bindgen_ty_28 = 3u32 +pub const aya_bpf_bindings::bindings::BPF_SOCK_OPS_TCP_LISTEN_CB: aya_bpf_bindings::bindings::_bindgen_ty_28 = 11u32 +pub const aya_bpf_bindings::bindings::BPF_SOCK_OPS_TIMEOUT_INIT: aya_bpf_bindings::bindings::_bindgen_ty_28 = 1u32 +pub const aya_bpf_bindings::bindings::BPF_SOCK_OPS_VOID: aya_bpf_bindings::bindings::_bindgen_ty_28 = 0u32 +pub const aya_bpf_bindings::bindings::BPF_SOCK_OPS_WRITE_HDR_OPT_CB: aya_bpf_bindings::bindings::_bindgen_ty_28 = 15u32 +pub const aya_bpf_bindings::bindings::BPF_SOCK_OPS_WRITE_HDR_OPT_CB_FLAG: aya_bpf_bindings::bindings::_bindgen_ty_27 = 64u32 +pub const aya_bpf_bindings::bindings::BPF_ST: u32 = 2u32 +pub const aya_bpf_bindings::bindings::BPF_STX: u32 = 3u32 +pub const aya_bpf_bindings::bindings::BPF_SUB: u32 = 16u32 +pub const aya_bpf_bindings::bindings::BPF_TAG_SIZE: u32 = 8u32 +pub const aya_bpf_bindings::bindings::BPF_TCP_CLOSE: aya_bpf_bindings::bindings::_bindgen_ty_29 = 7u32 +pub const aya_bpf_bindings::bindings::BPF_TCP_CLOSE_WAIT: aya_bpf_bindings::bindings::_bindgen_ty_29 = 8u32 +pub const aya_bpf_bindings::bindings::BPF_TCP_CLOSING: aya_bpf_bindings::bindings::_bindgen_ty_29 = 11u32 +pub const aya_bpf_bindings::bindings::BPF_TCP_ESTABLISHED: aya_bpf_bindings::bindings::_bindgen_ty_29 = 1u32 +pub const aya_bpf_bindings::bindings::BPF_TCP_FIN_WAIT1: aya_bpf_bindings::bindings::_bindgen_ty_29 = 4u32 +pub const aya_bpf_bindings::bindings::BPF_TCP_FIN_WAIT2: aya_bpf_bindings::bindings::_bindgen_ty_29 = 5u32 +pub const aya_bpf_bindings::bindings::BPF_TCP_LAST_ACK: aya_bpf_bindings::bindings::_bindgen_ty_29 = 9u32 +pub const aya_bpf_bindings::bindings::BPF_TCP_LISTEN: aya_bpf_bindings::bindings::_bindgen_ty_29 = 10u32 +pub const aya_bpf_bindings::bindings::BPF_TCP_MAX_STATES: aya_bpf_bindings::bindings::_bindgen_ty_29 = 13u32 +pub const aya_bpf_bindings::bindings::BPF_TCP_NEW_SYN_RECV: aya_bpf_bindings::bindings::_bindgen_ty_29 = 12u32 +pub const aya_bpf_bindings::bindings::BPF_TCP_SYN_RECV: aya_bpf_bindings::bindings::_bindgen_ty_29 = 3u32 +pub const aya_bpf_bindings::bindings::BPF_TCP_SYN_SENT: aya_bpf_bindings::bindings::_bindgen_ty_29 = 2u32 +pub const aya_bpf_bindings::bindings::BPF_TCP_TIME_WAIT: aya_bpf_bindings::bindings::_bindgen_ty_29 = 6u32 +pub const aya_bpf_bindings::bindings::BPF_TO_BE: u32 = 8u32 +pub const aya_bpf_bindings::bindings::BPF_TO_LE: u32 = 0u32 +pub const aya_bpf_bindings::bindings::BPF_W: u32 = 0u32 +pub const aya_bpf_bindings::bindings::BPF_X: u32 = 8u32 +pub const aya_bpf_bindings::bindings::BPF_XADD: u32 = 192u32 +pub const aya_bpf_bindings::bindings::BPF_XCHG: u32 = 225u32 +pub const aya_bpf_bindings::bindings::BPF_XOR: u32 = 160u32 +pub const aya_bpf_bindings::bindings::SOL_SOCKET: u32 = 1u32 +pub const aya_bpf_bindings::bindings::SO_ACCEPTCONN: u32 = 30u32 +pub const aya_bpf_bindings::bindings::SO_ATTACH_BPF: u32 = 50u32 +pub const aya_bpf_bindings::bindings::SO_ATTACH_FILTER: u32 = 26u32 +pub const aya_bpf_bindings::bindings::SO_ATTACH_REUSEPORT_CBPF: u32 = 51u32 +pub const aya_bpf_bindings::bindings::SO_ATTACH_REUSEPORT_EBPF: u32 = 52u32 +pub const aya_bpf_bindings::bindings::SO_BINDTODEVICE: u32 = 25u32 +pub const aya_bpf_bindings::bindings::SO_BINDTOIFINDEX: u32 = 62u32 +pub const aya_bpf_bindings::bindings::SO_BPF_EXTENSIONS: u32 = 48u32 +pub const aya_bpf_bindings::bindings::SO_BROADCAST: u32 = 6u32 +pub const aya_bpf_bindings::bindings::SO_BSDCOMPAT: u32 = 14u32 +pub const aya_bpf_bindings::bindings::SO_BUSY_POLL: u32 = 46u32 +pub const aya_bpf_bindings::bindings::SO_CNX_ADVICE: u32 = 53u32 +pub const aya_bpf_bindings::bindings::SO_COOKIE: u32 = 57u32 +pub const aya_bpf_bindings::bindings::SO_DEBUG: u32 = 1u32 +pub const aya_bpf_bindings::bindings::SO_DETACH_BPF: u32 = 27u32 +pub const aya_bpf_bindings::bindings::SO_DETACH_FILTER: u32 = 27u32 +pub const aya_bpf_bindings::bindings::SO_DETACH_REUSEPORT_BPF: u32 = 68u32 +pub const aya_bpf_bindings::bindings::SO_DOMAIN: u32 = 39u32 +pub const aya_bpf_bindings::bindings::SO_DONTROUTE: u32 = 5u32 +pub const aya_bpf_bindings::bindings::SO_ERROR: u32 = 4u32 +pub const aya_bpf_bindings::bindings::SO_GET_FILTER: u32 = 26u32 +pub const aya_bpf_bindings::bindings::SO_INCOMING_CPU: u32 = 49u32 +pub const aya_bpf_bindings::bindings::SO_INCOMING_NAPI_ID: u32 = 56u32 +pub const aya_bpf_bindings::bindings::SO_KEEPALIVE: u32 = 9u32 +pub const aya_bpf_bindings::bindings::SO_LINGER: u32 = 13u32 +pub const aya_bpf_bindings::bindings::SO_LOCK_FILTER: u32 = 44u32 +pub const aya_bpf_bindings::bindings::SO_MARK: u32 = 36u32 +pub const aya_bpf_bindings::bindings::SO_MAX_PACING_RATE: u32 = 47u32 +pub const aya_bpf_bindings::bindings::SO_MEMINFO: u32 = 55u32 +pub const aya_bpf_bindings::bindings::SO_NOFCS: u32 = 43u32 +pub const aya_bpf_bindings::bindings::SO_NO_CHECK: u32 = 11u32 +pub const aya_bpf_bindings::bindings::SO_OOBINLINE: u32 = 10u32 +pub const aya_bpf_bindings::bindings::SO_PASSCRED: u32 = 16u32 +pub const aya_bpf_bindings::bindings::SO_PASSSEC: u32 = 34u32 +pub const aya_bpf_bindings::bindings::SO_PEEK_OFF: u32 = 42u32 +pub const aya_bpf_bindings::bindings::SO_PEERCRED: u32 = 17u32 +pub const aya_bpf_bindings::bindings::SO_PEERGROUPS: u32 = 59u32 +pub const aya_bpf_bindings::bindings::SO_PEERNAME: u32 = 28u32 +pub const aya_bpf_bindings::bindings::SO_PEERSEC: u32 = 31u32 +pub const aya_bpf_bindings::bindings::SO_PRIORITY: u32 = 12u32 +pub const aya_bpf_bindings::bindings::SO_PROTOCOL: u32 = 38u32 +pub const aya_bpf_bindings::bindings::SO_RCVBUF: u32 = 8u32 +pub const aya_bpf_bindings::bindings::SO_RCVBUFFORCE: u32 = 33u32 +pub const aya_bpf_bindings::bindings::SO_RCVLOWAT: u32 = 18u32 +pub const aya_bpf_bindings::bindings::SO_RCVTIMEO: u32 = 20u32 +pub const aya_bpf_bindings::bindings::SO_RCVTIMEO_NEW: u32 = 66u32 +pub const aya_bpf_bindings::bindings::SO_RCVTIMEO_OLD: u32 = 20u32 +pub const aya_bpf_bindings::bindings::SO_REUSEADDR: u32 = 2u32 +pub const aya_bpf_bindings::bindings::SO_REUSEPORT: u32 = 15u32 +pub const aya_bpf_bindings::bindings::SO_RXQ_OVFL: u32 = 40u32 +pub const aya_bpf_bindings::bindings::SO_SECURITY_AUTHENTICATION: u32 = 22u32 +pub const aya_bpf_bindings::bindings::SO_SECURITY_ENCRYPTION_NETWORK: u32 = 24u32 +pub const aya_bpf_bindings::bindings::SO_SECURITY_ENCRYPTION_TRANSPORT: u32 = 23u32 +pub const aya_bpf_bindings::bindings::SO_SELECT_ERR_QUEUE: u32 = 45u32 +pub const aya_bpf_bindings::bindings::SO_SNDBUF: u32 = 7u32 +pub const aya_bpf_bindings::bindings::SO_SNDBUFFORCE: u32 = 32u32 +pub const aya_bpf_bindings::bindings::SO_SNDLOWAT: u32 = 19u32 +pub const aya_bpf_bindings::bindings::SO_SNDTIMEO: u32 = 21u32 +pub const aya_bpf_bindings::bindings::SO_SNDTIMEO_NEW: u32 = 67u32 +pub const aya_bpf_bindings::bindings::SO_SNDTIMEO_OLD: u32 = 21u32 +pub const aya_bpf_bindings::bindings::SO_TIMESTAMP: u32 = 29u32 +pub const aya_bpf_bindings::bindings::SO_TIMESTAMPING: u32 = 37u32 +pub const aya_bpf_bindings::bindings::SO_TIMESTAMPING_NEW: u32 = 65u32 +pub const aya_bpf_bindings::bindings::SO_TIMESTAMPING_OLD: u32 = 37u32 +pub const aya_bpf_bindings::bindings::SO_TIMESTAMPNS: u32 = 35u32 +pub const aya_bpf_bindings::bindings::SO_TIMESTAMPNS_NEW: u32 = 64u32 +pub const aya_bpf_bindings::bindings::SO_TIMESTAMPNS_OLD: u32 = 35u32 +pub const aya_bpf_bindings::bindings::SO_TIMESTAMP_NEW: u32 = 63u32 +pub const aya_bpf_bindings::bindings::SO_TIMESTAMP_OLD: u32 = 29u32 +pub const aya_bpf_bindings::bindings::SO_TXTIME: u32 = 61u32 +pub const aya_bpf_bindings::bindings::SO_TYPE: u32 = 3u32 +pub const aya_bpf_bindings::bindings::SO_WIFI_STATUS: u32 = 41u32 +pub const aya_bpf_bindings::bindings::SO_ZEROCOPY: u32 = 60u32 +pub const aya_bpf_bindings::bindings::TC_ACT_EXT_VAL_MASK: i32 = 268_435_455i32 +pub const aya_bpf_bindings::bindings::TC_ACT_OK: _ +pub const aya_bpf_bindings::bindings::TC_ACT_PIPE: _ +pub const aya_bpf_bindings::bindings::TC_ACT_QUEUED: _ +pub const aya_bpf_bindings::bindings::TC_ACT_RECLASSIFY: _ +pub const aya_bpf_bindings::bindings::TC_ACT_REDIRECT: _ +pub const aya_bpf_bindings::bindings::TC_ACT_REPEAT: _ +pub const aya_bpf_bindings::bindings::TC_ACT_SHOT: _ +pub const aya_bpf_bindings::bindings::TC_ACT_STOLEN: _ +pub const aya_bpf_bindings::bindings::TC_ACT_TRAP: _ +pub const aya_bpf_bindings::bindings::TC_ACT_UNSPEC: i32 = -1i32 +pub const aya_bpf_bindings::bindings::TC_ACT_VALUE_MAX: _ +pub const aya_bpf_bindings::bindings::__MAX_BPF_REG: aya_bpf_bindings::bindings::_bindgen_ty_1 = 11u32 +pub type aya_bpf_bindings::bindings::__be16 = aya_bpf_bindings::bindings::__u16 +pub type aya_bpf_bindings::bindings::__be32 = aya_bpf_bindings::bindings::__u32 +pub type aya_bpf_bindings::bindings::__s16 = aya_bpf_cty::c_short +pub type aya_bpf_bindings::bindings::__s32 = aya_bpf_cty::ad::c_int +pub type aya_bpf_bindings::bindings::__s64 = aya_bpf_cty::c_longlong +pub type aya_bpf_bindings::bindings::__u16 = aya_bpf_cty::c_ushort +pub type aya_bpf_bindings::bindings::__u32 = aya_bpf_cty::ad::c_uint +pub type aya_bpf_bindings::bindings::__u64 = aya_bpf_cty::c_ulonglong +pub type aya_bpf_bindings::bindings::__u8 = aya_bpf_cty::c_uchar +pub type aya_bpf_bindings::bindings::__wsum = aya_bpf_bindings::bindings::__u32 +pub type aya_bpf_bindings::bindings::_bindgen_ty_1 = aya_bpf_cty::ad::c_uint +pub type aya_bpf_bindings::bindings::_bindgen_ty_10 = aya_bpf_cty::ad::c_uint +pub type aya_bpf_bindings::bindings::_bindgen_ty_11 = aya_bpf_cty::ad::c_uint +pub type aya_bpf_bindings::bindings::_bindgen_ty_12 = aya_bpf_cty::od::c_ulong +pub type aya_bpf_bindings::bindings::_bindgen_ty_13 = aya_bpf_cty::ad::c_int +pub type aya_bpf_bindings::bindings::_bindgen_ty_14 = aya_bpf_cty::ad::c_uint +pub type aya_bpf_bindings::bindings::_bindgen_ty_15 = aya_bpf_cty::ad::c_uint +pub type aya_bpf_bindings::bindings::_bindgen_ty_16 = aya_bpf_cty::ad::c_uint +pub type aya_bpf_bindings::bindings::_bindgen_ty_17 = aya_bpf_cty::ad::c_uint +pub type aya_bpf_bindings::bindings::_bindgen_ty_18 = aya_bpf_cty::ad::c_uint +pub type aya_bpf_bindings::bindings::_bindgen_ty_19 = aya_bpf_cty::ad::c_uint +pub type aya_bpf_bindings::bindings::_bindgen_ty_2 = aya_bpf_cty::ad::c_uint +pub type aya_bpf_bindings::bindings::_bindgen_ty_20 = aya_bpf_cty::ad::c_uint +pub type aya_bpf_bindings::bindings::_bindgen_ty_21 = aya_bpf_cty::ad::c_uint +pub type aya_bpf_bindings::bindings::_bindgen_ty_22 = aya_bpf_cty::ad::c_uint +pub type aya_bpf_bindings::bindings::_bindgen_ty_23 = aya_bpf_cty::ad::c_uint +pub type aya_bpf_bindings::bindings::_bindgen_ty_24 = aya_bpf_cty::ad::c_uint +pub type aya_bpf_bindings::bindings::_bindgen_ty_25 = aya_bpf_cty::ad::c_uint +pub type aya_bpf_bindings::bindings::_bindgen_ty_27 = aya_bpf_cty::ad::c_uint +pub type aya_bpf_bindings::bindings::_bindgen_ty_28 = aya_bpf_cty::ad::c_uint +pub type aya_bpf_bindings::bindings::_bindgen_ty_29 = aya_bpf_cty::ad::c_uint +pub type aya_bpf_bindings::bindings::_bindgen_ty_3 = aya_bpf_cty::ad::c_uint +pub type aya_bpf_bindings::bindings::_bindgen_ty_33 = aya_bpf_cty::ad::c_uint +pub type aya_bpf_bindings::bindings::_bindgen_ty_34 = aya_bpf_cty::ad::c_uint +pub type aya_bpf_bindings::bindings::_bindgen_ty_35 = aya_bpf_cty::ad::c_uint +pub type aya_bpf_bindings::bindings::_bindgen_ty_36 = aya_bpf_cty::ad::c_uint +pub type aya_bpf_bindings::bindings::_bindgen_ty_37 = aya_bpf_cty::ad::c_uint +pub type aya_bpf_bindings::bindings::_bindgen_ty_39 = aya_bpf_cty::ad::c_uint +pub type aya_bpf_bindings::bindings::_bindgen_ty_4 = aya_bpf_cty::ad::c_uint +pub type aya_bpf_bindings::bindings::_bindgen_ty_5 = aya_bpf_cty::ad::c_uint +pub type aya_bpf_bindings::bindings::_bindgen_ty_6 = aya_bpf_cty::ad::c_uint +pub type aya_bpf_bindings::bindings::_bindgen_ty_7 = aya_bpf_cty::ad::c_uint +pub type aya_bpf_bindings::bindings::_bindgen_ty_8 = aya_bpf_cty::ad::c_uint +pub type aya_bpf_bindings::bindings::_bindgen_ty_9 = aya_bpf_cty::ad::c_uint +pub type aya_bpf_bindings::bindings::sa_family_t = aya_bpf_cty::c_ushort +pub mod aya_bpf_bindings::helpers +pub unsafe fn aya_bpf_bindings::helpers::bpf_bind(ctx: *mut aya_bpf_bindings::bindings::bpf_sock_addr, addr: *mut aya_bpf_bindings::bindings::sockaddr, addr_len: aya_bpf_cty::ad::c_int) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_bprm_opts_set(bprm: *mut aya_bpf_bindings::bindings::linux_binprm, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_btf_find_by_name_kind(name: *mut aya_bpf_cty::ad::c_char, name_sz: aya_bpf_cty::ad::c_int, kind: aya_bpf_bindings::bindings::__u32, flags: aya_bpf_cty::ad::c_int) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_cgrp_storage_delete(map: *mut aya_bpf_cty::c_void, cgroup: *mut aya_bpf_bindings::bindings::cgroup) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_cgrp_storage_get(map: *mut aya_bpf_cty::c_void, cgroup: *mut aya_bpf_bindings::bindings::cgroup, value: *mut aya_bpf_cty::c_void, flags: aya_bpf_bindings::bindings::__u64) -> *mut aya_bpf_cty::c_void +pub unsafe fn aya_bpf_bindings::helpers::bpf_check_mtu(ctx: *mut aya_bpf_cty::c_void, ifindex: aya_bpf_bindings::bindings::__u32, mtu_len: *mut aya_bpf_bindings::bindings::__u32, len_diff: aya_bpf_bindings::bindings::__s32, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_clone_redirect(skb: *mut aya_bpf_bindings::bindings::__sk_buff, ifindex: aya_bpf_bindings::bindings::__u32, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_copy_from_user(dst: *mut aya_bpf_cty::c_void, size: aya_bpf_bindings::bindings::__u32, user_ptr: *const aya_bpf_cty::c_void) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_copy_from_user_task(dst: *mut aya_bpf_cty::c_void, size: aya_bpf_bindings::bindings::__u32, user_ptr: *const aya_bpf_cty::c_void, tsk: *mut aya_bpf_bindings::bindings::task_struct, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_csum_diff(from: *mut aya_bpf_bindings::bindings::__be32, from_size: aya_bpf_bindings::bindings::__u32, to: *mut aya_bpf_bindings::bindings::__be32, to_size: aya_bpf_bindings::bindings::__u32, seed: aya_bpf_bindings::bindings::__wsum) -> aya_bpf_bindings::bindings::__s64 +pub unsafe fn aya_bpf_bindings::helpers::bpf_csum_level(skb: *mut aya_bpf_bindings::bindings::__sk_buff, level: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_csum_update(skb: *mut aya_bpf_bindings::bindings::__sk_buff, csum: aya_bpf_bindings::bindings::__wsum) -> aya_bpf_bindings::bindings::__s64 +pub unsafe fn aya_bpf_bindings::helpers::bpf_current_task_under_cgroup(map: *mut aya_bpf_cty::c_void, index: aya_bpf_bindings::bindings::__u32) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_d_path(path: *mut aya_bpf_bindings::bindings::path, buf: *mut aya_bpf_cty::ad::c_char, sz: aya_bpf_bindings::bindings::__u32) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_dynptr_data(ptr: *const aya_bpf_bindings::bindings::bpf_dynptr, offset: aya_bpf_bindings::bindings::__u32, len: aya_bpf_bindings::bindings::__u32) -> *mut aya_bpf_cty::c_void +pub unsafe fn aya_bpf_bindings::helpers::bpf_dynptr_from_mem(data: *mut aya_bpf_cty::c_void, size: aya_bpf_bindings::bindings::__u32, flags: aya_bpf_bindings::bindings::__u64, ptr: *mut aya_bpf_bindings::bindings::bpf_dynptr) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_dynptr_read(dst: *mut aya_bpf_cty::c_void, len: aya_bpf_bindings::bindings::__u32, src: *const aya_bpf_bindings::bindings::bpf_dynptr, offset: aya_bpf_bindings::bindings::__u32, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_dynptr_write(dst: *const aya_bpf_bindings::bindings::bpf_dynptr, offset: aya_bpf_bindings::bindings::__u32, src: *mut aya_bpf_cty::c_void, len: aya_bpf_bindings::bindings::__u32, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_fib_lookup(ctx: *mut aya_bpf_cty::c_void, params: *mut aya_bpf_bindings::bindings::bpf_fib_lookup, plen: aya_bpf_cty::ad::c_int, flags: aya_bpf_bindings::bindings::__u32) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_find_vma(task: *mut aya_bpf_bindings::bindings::task_struct, addr: aya_bpf_bindings::bindings::__u64, callback_fn: *mut aya_bpf_cty::c_void, callback_ctx: *mut aya_bpf_cty::c_void, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_for_each_map_elem(map: *mut aya_bpf_cty::c_void, callback_fn: *mut aya_bpf_cty::c_void, callback_ctx: *mut aya_bpf_cty::c_void, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_get_attach_cookie(ctx: *mut aya_bpf_cty::c_void) -> aya_bpf_bindings::bindings::__u64 +pub unsafe fn aya_bpf_bindings::helpers::bpf_get_branch_snapshot(entries: *mut aya_bpf_cty::c_void, size: aya_bpf_bindings::bindings::__u32, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_get_cgroup_classid(skb: *mut aya_bpf_bindings::bindings::__sk_buff) -> aya_bpf_bindings::bindings::__u32 +pub unsafe fn aya_bpf_bindings::helpers::bpf_get_current_ancestor_cgroup_id(ancestor_level: aya_bpf_cty::ad::c_int) -> aya_bpf_bindings::bindings::__u64 +pub unsafe fn aya_bpf_bindings::helpers::bpf_get_current_cgroup_id() -> aya_bpf_bindings::bindings::__u64 +pub unsafe fn aya_bpf_bindings::helpers::bpf_get_current_comm(buf: *mut aya_bpf_cty::c_void, size_of_buf: aya_bpf_bindings::bindings::__u32) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_get_current_pid_tgid() -> aya_bpf_bindings::bindings::__u64 +pub unsafe fn aya_bpf_bindings::helpers::bpf_get_current_task() -> aya_bpf_bindings::bindings::__u64 +pub unsafe fn aya_bpf_bindings::helpers::bpf_get_current_task_btf() -> *mut aya_bpf_bindings::bindings::task_struct +pub unsafe fn aya_bpf_bindings::helpers::bpf_get_current_uid_gid() -> aya_bpf_bindings::bindings::__u64 +pub unsafe fn aya_bpf_bindings::helpers::bpf_get_func_arg(ctx: *mut aya_bpf_cty::c_void, n: aya_bpf_bindings::bindings::__u32, value: *mut aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_get_func_arg_cnt(ctx: *mut aya_bpf_cty::c_void) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_get_func_ip(ctx: *mut aya_bpf_cty::c_void) -> aya_bpf_bindings::bindings::__u64 +pub unsafe fn aya_bpf_bindings::helpers::bpf_get_func_ret(ctx: *mut aya_bpf_cty::c_void, value: *mut aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_get_hash_recalc(skb: *mut aya_bpf_bindings::bindings::__sk_buff) -> aya_bpf_bindings::bindings::__u32 +pub unsafe fn aya_bpf_bindings::helpers::bpf_get_listener_sock(sk: *mut aya_bpf_bindings::bindings::bpf_sock) -> *mut aya_bpf_bindings::bindings::bpf_sock +pub unsafe fn aya_bpf_bindings::helpers::bpf_get_local_storage(map: *mut aya_bpf_cty::c_void, flags: aya_bpf_bindings::bindings::__u64) -> *mut aya_bpf_cty::c_void +pub unsafe fn aya_bpf_bindings::helpers::bpf_get_netns_cookie(ctx: *mut aya_bpf_cty::c_void) -> aya_bpf_bindings::bindings::__u64 +pub unsafe fn aya_bpf_bindings::helpers::bpf_get_ns_current_pid_tgid(dev: aya_bpf_bindings::bindings::__u64, ino: aya_bpf_bindings::bindings::__u64, nsdata: *mut aya_bpf_bindings::bindings::bpf_pidns_info, size: aya_bpf_bindings::bindings::__u32) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_get_numa_node_id() -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_get_prandom_u32() -> aya_bpf_bindings::bindings::__u32 +pub unsafe fn aya_bpf_bindings::helpers::bpf_get_retval() -> aya_bpf_cty::ad::c_int +pub unsafe fn aya_bpf_bindings::helpers::bpf_get_route_realm(skb: *mut aya_bpf_bindings::bindings::__sk_buff) -> aya_bpf_bindings::bindings::__u32 +pub unsafe fn aya_bpf_bindings::helpers::bpf_get_smp_processor_id() -> aya_bpf_bindings::bindings::__u32 +pub unsafe fn aya_bpf_bindings::helpers::bpf_get_socket_cookie(ctx: *mut aya_bpf_cty::c_void) -> aya_bpf_bindings::bindings::__u64 +pub unsafe fn aya_bpf_bindings::helpers::bpf_get_socket_uid(skb: *mut aya_bpf_bindings::bindings::__sk_buff) -> aya_bpf_bindings::bindings::__u32 +pub unsafe fn aya_bpf_bindings::helpers::bpf_get_stack(ctx: *mut aya_bpf_cty::c_void, buf: *mut aya_bpf_cty::c_void, size: aya_bpf_bindings::bindings::__u32, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_get_stackid(ctx: *mut aya_bpf_cty::c_void, map: *mut aya_bpf_cty::c_void, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_get_task_stack(task: *mut aya_bpf_bindings::bindings::task_struct, buf: *mut aya_bpf_cty::c_void, size: aya_bpf_bindings::bindings::__u32, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_getsockopt(bpf_socket: *mut aya_bpf_cty::c_void, level: aya_bpf_cty::ad::c_int, optname: aya_bpf_cty::ad::c_int, optval: *mut aya_bpf_cty::c_void, optlen: aya_bpf_cty::ad::c_int) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_ima_file_hash(file: *mut aya_bpf_bindings::bindings::file, dst: *mut aya_bpf_cty::c_void, size: aya_bpf_bindings::bindings::__u32) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_ima_inode_hash(inode: *mut aya_bpf_bindings::bindings::inode, dst: *mut aya_bpf_cty::c_void, size: aya_bpf_bindings::bindings::__u32) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_inode_storage_delete(map: *mut aya_bpf_cty::c_void, inode: *mut aya_bpf_cty::c_void) -> aya_bpf_cty::ad::c_int +pub unsafe fn aya_bpf_bindings::helpers::bpf_inode_storage_get(map: *mut aya_bpf_cty::c_void, inode: *mut aya_bpf_cty::c_void, value: *mut aya_bpf_cty::c_void, flags: aya_bpf_bindings::bindings::__u64) -> *mut aya_bpf_cty::c_void +pub unsafe fn aya_bpf_bindings::helpers::bpf_jiffies64() -> aya_bpf_bindings::bindings::__u64 +pub unsafe fn aya_bpf_bindings::helpers::bpf_kallsyms_lookup_name(name: *const aya_bpf_cty::ad::c_char, name_sz: aya_bpf_cty::ad::c_int, flags: aya_bpf_cty::ad::c_int, res: *mut aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_kptr_xchg(map_value: *mut aya_bpf_cty::c_void, ptr: *mut aya_bpf_cty::c_void) -> *mut aya_bpf_cty::c_void +pub unsafe fn aya_bpf_bindings::helpers::bpf_ktime_get_boot_ns() -> aya_bpf_bindings::bindings::__u64 +pub unsafe fn aya_bpf_bindings::helpers::bpf_ktime_get_coarse_ns() -> aya_bpf_bindings::bindings::__u64 +pub unsafe fn aya_bpf_bindings::helpers::bpf_ktime_get_ns() -> aya_bpf_bindings::bindings::__u64 +pub unsafe fn aya_bpf_bindings::helpers::bpf_ktime_get_tai_ns() -> aya_bpf_bindings::bindings::__u64 +pub unsafe fn aya_bpf_bindings::helpers::bpf_l3_csum_replace(skb: *mut aya_bpf_bindings::bindings::__sk_buff, offset: aya_bpf_bindings::bindings::__u32, from: aya_bpf_bindings::bindings::__u64, to: aya_bpf_bindings::bindings::__u64, size: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_l4_csum_replace(skb: *mut aya_bpf_bindings::bindings::__sk_buff, offset: aya_bpf_bindings::bindings::__u32, from: aya_bpf_bindings::bindings::__u64, to: aya_bpf_bindings::bindings::__u64, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_load_hdr_opt(skops: *mut aya_bpf_bindings::bindings::bpf_sock_ops, searchby_res: *mut aya_bpf_cty::c_void, len: aya_bpf_bindings::bindings::__u32, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_loop(nr_loops: aya_bpf_bindings::bindings::__u32, callback_fn: *mut aya_bpf_cty::c_void, callback_ctx: *mut aya_bpf_cty::c_void, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_lwt_push_encap(skb: *mut aya_bpf_bindings::bindings::__sk_buff, type_: aya_bpf_bindings::bindings::__u32, hdr: *mut aya_bpf_cty::c_void, len: aya_bpf_bindings::bindings::__u32) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_lwt_seg6_action(skb: *mut aya_bpf_bindings::bindings::__sk_buff, action: aya_bpf_bindings::bindings::__u32, param: *mut aya_bpf_cty::c_void, param_len: aya_bpf_bindings::bindings::__u32) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_lwt_seg6_adjust_srh(skb: *mut aya_bpf_bindings::bindings::__sk_buff, offset: aya_bpf_bindings::bindings::__u32, delta: aya_bpf_bindings::bindings::__s32) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_lwt_seg6_store_bytes(skb: *mut aya_bpf_bindings::bindings::__sk_buff, offset: aya_bpf_bindings::bindings::__u32, from: *const aya_bpf_cty::c_void, len: aya_bpf_bindings::bindings::__u32) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_map_delete_elem(map: *mut aya_bpf_cty::c_void, key: *const aya_bpf_cty::c_void) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_map_lookup_elem(map: *mut aya_bpf_cty::c_void, key: *const aya_bpf_cty::c_void) -> *mut aya_bpf_cty::c_void +pub unsafe fn aya_bpf_bindings::helpers::bpf_map_lookup_percpu_elem(map: *mut aya_bpf_cty::c_void, key: *const aya_bpf_cty::c_void, cpu: aya_bpf_bindings::bindings::__u32) -> *mut aya_bpf_cty::c_void +pub unsafe fn aya_bpf_bindings::helpers::bpf_map_peek_elem(map: *mut aya_bpf_cty::c_void, value: *mut aya_bpf_cty::c_void) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_map_pop_elem(map: *mut aya_bpf_cty::c_void, value: *mut aya_bpf_cty::c_void) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_map_push_elem(map: *mut aya_bpf_cty::c_void, value: *const aya_bpf_cty::c_void, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_map_update_elem(map: *mut aya_bpf_cty::c_void, key: *const aya_bpf_cty::c_void, value: *const aya_bpf_cty::c_void, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_msg_apply_bytes(msg: *mut aya_bpf_bindings::bindings::sk_msg_md, bytes: aya_bpf_bindings::bindings::__u32) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_msg_cork_bytes(msg: *mut aya_bpf_bindings::bindings::sk_msg_md, bytes: aya_bpf_bindings::bindings::__u32) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_msg_pop_data(msg: *mut aya_bpf_bindings::bindings::sk_msg_md, start: aya_bpf_bindings::bindings::__u32, len: aya_bpf_bindings::bindings::__u32, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_msg_pull_data(msg: *mut aya_bpf_bindings::bindings::sk_msg_md, start: aya_bpf_bindings::bindings::__u32, end: aya_bpf_bindings::bindings::__u32, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_msg_push_data(msg: *mut aya_bpf_bindings::bindings::sk_msg_md, start: aya_bpf_bindings::bindings::__u32, len: aya_bpf_bindings::bindings::__u32, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_msg_redirect_hash(msg: *mut aya_bpf_bindings::bindings::sk_msg_md, map: *mut aya_bpf_cty::c_void, key: *mut aya_bpf_cty::c_void, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_msg_redirect_map(msg: *mut aya_bpf_bindings::bindings::sk_msg_md, map: *mut aya_bpf_cty::c_void, key: aya_bpf_bindings::bindings::__u32, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_override_return(regs: *mut aya_bpf_bindings::bindings::pt_regs, rc: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_per_cpu_ptr(percpu_ptr: *const aya_bpf_cty::c_void, cpu: aya_bpf_bindings::bindings::__u32) -> *mut aya_bpf_cty::c_void +pub unsafe fn aya_bpf_bindings::helpers::bpf_perf_event_output(ctx: *mut aya_bpf_cty::c_void, map: *mut aya_bpf_cty::c_void, flags: aya_bpf_bindings::bindings::__u64, data: *mut aya_bpf_cty::c_void, size: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_perf_event_read(map: *mut aya_bpf_cty::c_void, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_bindings::bindings::__u64 +pub unsafe fn aya_bpf_bindings::helpers::bpf_perf_event_read_value(map: *mut aya_bpf_cty::c_void, flags: aya_bpf_bindings::bindings::__u64, buf: *mut aya_bpf_bindings::bindings::bpf_perf_event_value, buf_size: aya_bpf_bindings::bindings::__u32) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_perf_prog_read_value(ctx: *mut aya_bpf_bindings::bindings::bpf_perf_event_data, buf: *mut aya_bpf_bindings::bindings::bpf_perf_event_value, buf_size: aya_bpf_bindings::bindings::__u32) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_probe_read(dst: *mut aya_bpf_cty::c_void, size: aya_bpf_bindings::bindings::__u32, unsafe_ptr: *const aya_bpf_cty::c_void) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_probe_read_kernel(dst: *mut aya_bpf_cty::c_void, size: aya_bpf_bindings::bindings::__u32, unsafe_ptr: *const aya_bpf_cty::c_void) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_probe_read_kernel_str(dst: *mut aya_bpf_cty::c_void, size: aya_bpf_bindings::bindings::__u32, unsafe_ptr: *const aya_bpf_cty::c_void) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_probe_read_str(dst: *mut aya_bpf_cty::c_void, size: aya_bpf_bindings::bindings::__u32, unsafe_ptr: *const aya_bpf_cty::c_void) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_probe_read_user(dst: *mut aya_bpf_cty::c_void, size: aya_bpf_bindings::bindings::__u32, unsafe_ptr: *const aya_bpf_cty::c_void) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_probe_read_user_str(dst: *mut aya_bpf_cty::c_void, size: aya_bpf_bindings::bindings::__u32, unsafe_ptr: *const aya_bpf_cty::c_void) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_probe_write_user(dst: *mut aya_bpf_cty::c_void, src: *const aya_bpf_cty::c_void, len: aya_bpf_bindings::bindings::__u32) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_rc_keydown(ctx: *mut aya_bpf_cty::c_void, protocol: aya_bpf_bindings::bindings::__u32, scancode: aya_bpf_bindings::bindings::__u64, toggle: aya_bpf_bindings::bindings::__u32) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_rc_pointer_rel(ctx: *mut aya_bpf_cty::c_void, rel_x: aya_bpf_bindings::bindings::__s32, rel_y: aya_bpf_bindings::bindings::__s32) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_rc_repeat(ctx: *mut aya_bpf_cty::c_void) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_read_branch_records(ctx: *mut aya_bpf_bindings::bindings::bpf_perf_event_data, buf: *mut aya_bpf_cty::c_void, size: aya_bpf_bindings::bindings::__u32, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_redirect(ifindex: aya_bpf_bindings::bindings::__u32, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_redirect_map(map: *mut aya_bpf_cty::c_void, key: aya_bpf_bindings::bindings::__u64, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_redirect_neigh(ifindex: aya_bpf_bindings::bindings::__u32, params: *mut aya_bpf_bindings::bindings::bpf_redir_neigh, plen: aya_bpf_cty::ad::c_int, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_redirect_peer(ifindex: aya_bpf_bindings::bindings::__u32, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_reserve_hdr_opt(skops: *mut aya_bpf_bindings::bindings::bpf_sock_ops, len: aya_bpf_bindings::bindings::__u32, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_ringbuf_discard(data: *mut aya_bpf_cty::c_void, flags: aya_bpf_bindings::bindings::__u64) +pub unsafe fn aya_bpf_bindings::helpers::bpf_ringbuf_discard_dynptr(ptr: *mut aya_bpf_bindings::bindings::bpf_dynptr, flags: aya_bpf_bindings::bindings::__u64) +pub unsafe fn aya_bpf_bindings::helpers::bpf_ringbuf_output(ringbuf: *mut aya_bpf_cty::c_void, data: *mut aya_bpf_cty::c_void, size: aya_bpf_bindings::bindings::__u64, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_ringbuf_query(ringbuf: *mut aya_bpf_cty::c_void, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_bindings::bindings::__u64 +pub unsafe fn aya_bpf_bindings::helpers::bpf_ringbuf_reserve(ringbuf: *mut aya_bpf_cty::c_void, size: aya_bpf_bindings::bindings::__u64, flags: aya_bpf_bindings::bindings::__u64) -> *mut aya_bpf_cty::c_void +pub unsafe fn aya_bpf_bindings::helpers::bpf_ringbuf_reserve_dynptr(ringbuf: *mut aya_bpf_cty::c_void, size: aya_bpf_bindings::bindings::__u32, flags: aya_bpf_bindings::bindings::__u64, ptr: *mut aya_bpf_bindings::bindings::bpf_dynptr) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_ringbuf_submit(data: *mut aya_bpf_cty::c_void, flags: aya_bpf_bindings::bindings::__u64) +pub unsafe fn aya_bpf_bindings::helpers::bpf_ringbuf_submit_dynptr(ptr: *mut aya_bpf_bindings::bindings::bpf_dynptr, flags: aya_bpf_bindings::bindings::__u64) +pub unsafe fn aya_bpf_bindings::helpers::bpf_send_signal(sig: aya_bpf_bindings::bindings::__u32) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_send_signal_thread(sig: aya_bpf_bindings::bindings::__u32) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_seq_printf(m: *mut aya_bpf_bindings::bindings::seq_file, fmt: *const aya_bpf_cty::ad::c_char, fmt_size: aya_bpf_bindings::bindings::__u32, data: *const aya_bpf_cty::c_void, data_len: aya_bpf_bindings::bindings::__u32) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_seq_printf_btf(m: *mut aya_bpf_bindings::bindings::seq_file, ptr: *mut aya_bpf_bindings::bindings::btf_ptr, ptr_size: aya_bpf_bindings::bindings::__u32, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_seq_write(m: *mut aya_bpf_bindings::bindings::seq_file, data: *const aya_bpf_cty::c_void, len: aya_bpf_bindings::bindings::__u32) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_set_hash(skb: *mut aya_bpf_bindings::bindings::__sk_buff, hash: aya_bpf_bindings::bindings::__u32) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_set_hash_invalid(skb: *mut aya_bpf_bindings::bindings::__sk_buff) +pub unsafe fn aya_bpf_bindings::helpers::bpf_set_retval(retval: aya_bpf_cty::ad::c_int) -> aya_bpf_cty::ad::c_int +pub unsafe fn aya_bpf_bindings::helpers::bpf_setsockopt(bpf_socket: *mut aya_bpf_cty::c_void, level: aya_bpf_cty::ad::c_int, optname: aya_bpf_cty::ad::c_int, optval: *mut aya_bpf_cty::c_void, optlen: aya_bpf_cty::ad::c_int) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_sk_ancestor_cgroup_id(sk: *mut aya_bpf_cty::c_void, ancestor_level: aya_bpf_cty::ad::c_int) -> aya_bpf_bindings::bindings::__u64 +pub unsafe fn aya_bpf_bindings::helpers::bpf_sk_assign(ctx: *mut aya_bpf_cty::c_void, sk: *mut aya_bpf_cty::c_void, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_sk_cgroup_id(sk: *mut aya_bpf_cty::c_void) -> aya_bpf_bindings::bindings::__u64 +pub unsafe fn aya_bpf_bindings::helpers::bpf_sk_fullsock(sk: *mut aya_bpf_bindings::bindings::bpf_sock) -> *mut aya_bpf_bindings::bindings::bpf_sock +pub unsafe fn aya_bpf_bindings::helpers::bpf_sk_lookup_tcp(ctx: *mut aya_bpf_cty::c_void, tuple: *mut aya_bpf_bindings::bindings::bpf_sock_tuple, tuple_size: aya_bpf_bindings::bindings::__u32, netns: aya_bpf_bindings::bindings::__u64, flags: aya_bpf_bindings::bindings::__u64) -> *mut aya_bpf_bindings::bindings::bpf_sock +pub unsafe fn aya_bpf_bindings::helpers::bpf_sk_lookup_udp(ctx: *mut aya_bpf_cty::c_void, tuple: *mut aya_bpf_bindings::bindings::bpf_sock_tuple, tuple_size: aya_bpf_bindings::bindings::__u32, netns: aya_bpf_bindings::bindings::__u64, flags: aya_bpf_bindings::bindings::__u64) -> *mut aya_bpf_bindings::bindings::bpf_sock +pub unsafe fn aya_bpf_bindings::helpers::bpf_sk_redirect_hash(skb: *mut aya_bpf_bindings::bindings::__sk_buff, map: *mut aya_bpf_cty::c_void, key: *mut aya_bpf_cty::c_void, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_sk_redirect_map(skb: *mut aya_bpf_bindings::bindings::__sk_buff, map: *mut aya_bpf_cty::c_void, key: aya_bpf_bindings::bindings::__u32, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_sk_release(sock: *mut aya_bpf_cty::c_void) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_sk_select_reuseport(reuse: *mut aya_bpf_bindings::bindings::sk_reuseport_md, map: *mut aya_bpf_cty::c_void, key: *mut aya_bpf_cty::c_void, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_sk_storage_delete(map: *mut aya_bpf_cty::c_void, sk: *mut aya_bpf_cty::c_void) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_sk_storage_get(map: *mut aya_bpf_cty::c_void, sk: *mut aya_bpf_cty::c_void, value: *mut aya_bpf_cty::c_void, flags: aya_bpf_bindings::bindings::__u64) -> *mut aya_bpf_cty::c_void +pub unsafe fn aya_bpf_bindings::helpers::bpf_skb_adjust_room(skb: *mut aya_bpf_bindings::bindings::__sk_buff, len_diff: aya_bpf_bindings::bindings::__s32, mode: aya_bpf_bindings::bindings::__u32, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_skb_ancestor_cgroup_id(skb: *mut aya_bpf_bindings::bindings::__sk_buff, ancestor_level: aya_bpf_cty::ad::c_int) -> aya_bpf_bindings::bindings::__u64 +pub unsafe fn aya_bpf_bindings::helpers::bpf_skb_cgroup_classid(skb: *mut aya_bpf_bindings::bindings::__sk_buff) -> aya_bpf_bindings::bindings::__u64 +pub unsafe fn aya_bpf_bindings::helpers::bpf_skb_cgroup_id(skb: *mut aya_bpf_bindings::bindings::__sk_buff) -> aya_bpf_bindings::bindings::__u64 +pub unsafe fn aya_bpf_bindings::helpers::bpf_skb_change_head(skb: *mut aya_bpf_bindings::bindings::__sk_buff, len: aya_bpf_bindings::bindings::__u32, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_skb_change_proto(skb: *mut aya_bpf_bindings::bindings::__sk_buff, proto: aya_bpf_bindings::bindings::__be16, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_skb_change_tail(skb: *mut aya_bpf_bindings::bindings::__sk_buff, len: aya_bpf_bindings::bindings::__u32, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_skb_change_type(skb: *mut aya_bpf_bindings::bindings::__sk_buff, type_: aya_bpf_bindings::bindings::__u32) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_skb_ecn_set_ce(skb: *mut aya_bpf_bindings::bindings::__sk_buff) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_skb_get_tunnel_key(skb: *mut aya_bpf_bindings::bindings::__sk_buff, key: *mut aya_bpf_bindings::bindings::bpf_tunnel_key, size: aya_bpf_bindings::bindings::__u32, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_skb_get_tunnel_opt(skb: *mut aya_bpf_bindings::bindings::__sk_buff, opt: *mut aya_bpf_cty::c_void, size: aya_bpf_bindings::bindings::__u32) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_skb_get_xfrm_state(skb: *mut aya_bpf_bindings::bindings::__sk_buff, index: aya_bpf_bindings::bindings::__u32, xfrm_state: *mut aya_bpf_bindings::bindings::bpf_xfrm_state, size: aya_bpf_bindings::bindings::__u32, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_skb_load_bytes(skb: *const aya_bpf_cty::c_void, offset: aya_bpf_bindings::bindings::__u32, to: *mut aya_bpf_cty::c_void, len: aya_bpf_bindings::bindings::__u32) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_skb_load_bytes_relative(skb: *const aya_bpf_cty::c_void, offset: aya_bpf_bindings::bindings::__u32, to: *mut aya_bpf_cty::c_void, len: aya_bpf_bindings::bindings::__u32, start_header: aya_bpf_bindings::bindings::__u32) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_skb_output(ctx: *mut aya_bpf_cty::c_void, map: *mut aya_bpf_cty::c_void, flags: aya_bpf_bindings::bindings::__u64, data: *mut aya_bpf_cty::c_void, size: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_skb_pull_data(skb: *mut aya_bpf_bindings::bindings::__sk_buff, len: aya_bpf_bindings::bindings::__u32) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_skb_set_tstamp(skb: *mut aya_bpf_bindings::bindings::__sk_buff, tstamp: aya_bpf_bindings::bindings::__u64, tstamp_type: aya_bpf_bindings::bindings::__u32) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_skb_set_tunnel_key(skb: *mut aya_bpf_bindings::bindings::__sk_buff, key: *mut aya_bpf_bindings::bindings::bpf_tunnel_key, size: aya_bpf_bindings::bindings::__u32, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_skb_set_tunnel_opt(skb: *mut aya_bpf_bindings::bindings::__sk_buff, opt: *mut aya_bpf_cty::c_void, size: aya_bpf_bindings::bindings::__u32) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_skb_store_bytes(skb: *mut aya_bpf_bindings::bindings::__sk_buff, offset: aya_bpf_bindings::bindings::__u32, from: *const aya_bpf_cty::c_void, len: aya_bpf_bindings::bindings::__u32, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_skb_under_cgroup(skb: *mut aya_bpf_bindings::bindings::__sk_buff, map: *mut aya_bpf_cty::c_void, index: aya_bpf_bindings::bindings::__u32) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_skb_vlan_pop(skb: *mut aya_bpf_bindings::bindings::__sk_buff) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_skb_vlan_push(skb: *mut aya_bpf_bindings::bindings::__sk_buff, vlan_proto: aya_bpf_bindings::bindings::__be16, vlan_tci: aya_bpf_bindings::bindings::__u16) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_skc_lookup_tcp(ctx: *mut aya_bpf_cty::c_void, tuple: *mut aya_bpf_bindings::bindings::bpf_sock_tuple, tuple_size: aya_bpf_bindings::bindings::__u32, netns: aya_bpf_bindings::bindings::__u64, flags: aya_bpf_bindings::bindings::__u64) -> *mut aya_bpf_bindings::bindings::bpf_sock +pub unsafe fn aya_bpf_bindings::helpers::bpf_skc_to_mptcp_sock(sk: *mut aya_bpf_cty::c_void) -> *mut aya_bpf_bindings::bindings::mptcp_sock +pub unsafe fn aya_bpf_bindings::helpers::bpf_skc_to_tcp6_sock(sk: *mut aya_bpf_cty::c_void) -> *mut aya_bpf_bindings::bindings::tcp6_sock +pub unsafe fn aya_bpf_bindings::helpers::bpf_skc_to_tcp_request_sock(sk: *mut aya_bpf_cty::c_void) -> *mut aya_bpf_bindings::bindings::tcp_request_sock +pub unsafe fn aya_bpf_bindings::helpers::bpf_skc_to_tcp_sock(sk: *mut aya_bpf_cty::c_void) -> *mut aya_bpf_bindings::bindings::tcp_sock +pub unsafe fn aya_bpf_bindings::helpers::bpf_skc_to_tcp_timewait_sock(sk: *mut aya_bpf_cty::c_void) -> *mut aya_bpf_bindings::bindings::tcp_timewait_sock +pub unsafe fn aya_bpf_bindings::helpers::bpf_skc_to_udp6_sock(sk: *mut aya_bpf_cty::c_void) -> *mut aya_bpf_bindings::bindings::udp6_sock +pub unsafe fn aya_bpf_bindings::helpers::bpf_skc_to_unix_sock(sk: *mut aya_bpf_cty::c_void) -> *mut aya_bpf_bindings::bindings::unix_sock +pub unsafe fn aya_bpf_bindings::helpers::bpf_snprintf(str_: *mut aya_bpf_cty::ad::c_char, str_size: aya_bpf_bindings::bindings::__u32, fmt: *const aya_bpf_cty::ad::c_char, data: *mut aya_bpf_bindings::bindings::__u64, data_len: aya_bpf_bindings::bindings::__u32) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_snprintf_btf(str_: *mut aya_bpf_cty::ad::c_char, str_size: aya_bpf_bindings::bindings::__u32, ptr: *mut aya_bpf_bindings::bindings::btf_ptr, btf_ptr_size: aya_bpf_bindings::bindings::__u32, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_sock_from_file(file: *mut aya_bpf_bindings::bindings::file) -> *mut aya_bpf_bindings::bindings::socket +pub unsafe fn aya_bpf_bindings::helpers::bpf_sock_hash_update(skops: *mut aya_bpf_bindings::bindings::bpf_sock_ops, map: *mut aya_bpf_cty::c_void, key: *mut aya_bpf_cty::c_void, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_sock_map_update(skops: *mut aya_bpf_bindings::bindings::bpf_sock_ops, map: *mut aya_bpf_cty::c_void, key: *mut aya_bpf_cty::c_void, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_sock_ops_cb_flags_set(bpf_sock: *mut aya_bpf_bindings::bindings::bpf_sock_ops, argval: aya_bpf_cty::ad::c_int) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_spin_lock(lock: *mut aya_bpf_bindings::bindings::bpf_spin_lock) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_spin_unlock(lock: *mut aya_bpf_bindings::bindings::bpf_spin_lock) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_store_hdr_opt(skops: *mut aya_bpf_bindings::bindings::bpf_sock_ops, from: *const aya_bpf_cty::c_void, len: aya_bpf_bindings::bindings::__u32, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_strncmp(s1: *const aya_bpf_cty::ad::c_char, s1_sz: aya_bpf_bindings::bindings::__u32, s2: *const aya_bpf_cty::ad::c_char) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_strtol(buf: *const aya_bpf_cty::ad::c_char, buf_len: aya_bpf_cty::od::c_ulong, flags: aya_bpf_bindings::bindings::__u64, res: *mut aya_bpf_cty::od::c_long) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_strtoul(buf: *const aya_bpf_cty::ad::c_char, buf_len: aya_bpf_cty::od::c_ulong, flags: aya_bpf_bindings::bindings::__u64, res: *mut aya_bpf_cty::od::c_ulong) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_sys_bpf(cmd: aya_bpf_bindings::bindings::__u32, attr: *mut aya_bpf_cty::c_void, attr_size: aya_bpf_bindings::bindings::__u32) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_sys_close(fd: aya_bpf_bindings::bindings::__u32) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_sysctl_get_current_value(ctx: *mut aya_bpf_bindings::bindings::bpf_sysctl, buf: *mut aya_bpf_cty::ad::c_char, buf_len: aya_bpf_cty::od::c_ulong) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_sysctl_get_name(ctx: *mut aya_bpf_bindings::bindings::bpf_sysctl, buf: *mut aya_bpf_cty::ad::c_char, buf_len: aya_bpf_cty::od::c_ulong, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_sysctl_get_new_value(ctx: *mut aya_bpf_bindings::bindings::bpf_sysctl, buf: *mut aya_bpf_cty::ad::c_char, buf_len: aya_bpf_cty::od::c_ulong) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_sysctl_set_new_value(ctx: *mut aya_bpf_bindings::bindings::bpf_sysctl, buf: *const aya_bpf_cty::ad::c_char, buf_len: aya_bpf_cty::od::c_ulong) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_tail_call(ctx: *mut aya_bpf_cty::c_void, prog_array_map: *mut aya_bpf_cty::c_void, index: aya_bpf_bindings::bindings::__u32) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_task_pt_regs(task: *mut aya_bpf_bindings::bindings::task_struct) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_task_storage_delete(map: *mut aya_bpf_cty::c_void, task: *mut aya_bpf_bindings::bindings::task_struct) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_task_storage_get(map: *mut aya_bpf_cty::c_void, task: *mut aya_bpf_bindings::bindings::task_struct, value: *mut aya_bpf_cty::c_void, flags: aya_bpf_bindings::bindings::__u64) -> *mut aya_bpf_cty::c_void +pub unsafe fn aya_bpf_bindings::helpers::bpf_tcp_check_syncookie(sk: *mut aya_bpf_cty::c_void, iph: *mut aya_bpf_cty::c_void, iph_len: aya_bpf_bindings::bindings::__u32, th: *mut aya_bpf_bindings::bindings::tcphdr, th_len: aya_bpf_bindings::bindings::__u32) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_tcp_gen_syncookie(sk: *mut aya_bpf_cty::c_void, iph: *mut aya_bpf_cty::c_void, iph_len: aya_bpf_bindings::bindings::__u32, th: *mut aya_bpf_bindings::bindings::tcphdr, th_len: aya_bpf_bindings::bindings::__u32) -> aya_bpf_bindings::bindings::__s64 +pub unsafe fn aya_bpf_bindings::helpers::bpf_tcp_raw_check_syncookie_ipv4(iph: *mut aya_bpf_bindings::bindings::iphdr, th: *mut aya_bpf_bindings::bindings::tcphdr) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_tcp_raw_check_syncookie_ipv6(iph: *mut aya_bpf_bindings::bindings::ipv6hdr, th: *mut aya_bpf_bindings::bindings::tcphdr) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_tcp_raw_gen_syncookie_ipv4(iph: *mut aya_bpf_bindings::bindings::iphdr, th: *mut aya_bpf_bindings::bindings::tcphdr, th_len: aya_bpf_bindings::bindings::__u32) -> aya_bpf_bindings::bindings::__s64 +pub unsafe fn aya_bpf_bindings::helpers::bpf_tcp_raw_gen_syncookie_ipv6(iph: *mut aya_bpf_bindings::bindings::ipv6hdr, th: *mut aya_bpf_bindings::bindings::tcphdr, th_len: aya_bpf_bindings::bindings::__u32) -> aya_bpf_bindings::bindings::__s64 +pub unsafe fn aya_bpf_bindings::helpers::bpf_tcp_send_ack(tp: *mut aya_bpf_cty::c_void, rcv_nxt: aya_bpf_bindings::bindings::__u32) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_tcp_sock(sk: *mut aya_bpf_bindings::bindings::bpf_sock) -> *mut aya_bpf_bindings::bindings::bpf_tcp_sock +pub unsafe fn aya_bpf_bindings::helpers::bpf_this_cpu_ptr(percpu_ptr: *const aya_bpf_cty::c_void) -> *mut aya_bpf_cty::c_void +pub unsafe fn aya_bpf_bindings::helpers::bpf_timer_cancel(timer: *mut aya_bpf_bindings::bindings::bpf_timer) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_timer_init(timer: *mut aya_bpf_bindings::bindings::bpf_timer, map: *mut aya_bpf_cty::c_void, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_timer_set_callback(timer: *mut aya_bpf_bindings::bindings::bpf_timer, callback_fn: *mut aya_bpf_cty::c_void) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_timer_start(timer: *mut aya_bpf_bindings::bindings::bpf_timer, nsecs: aya_bpf_bindings::bindings::__u64, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_trace_vprintk(fmt: *const aya_bpf_cty::ad::c_char, fmt_size: aya_bpf_bindings::bindings::__u32, data: *const aya_bpf_cty::c_void, data_len: aya_bpf_bindings::bindings::__u32) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_user_ringbuf_drain(map: *mut aya_bpf_cty::c_void, callback_fn: *mut aya_bpf_cty::c_void, ctx: *mut aya_bpf_cty::c_void, flags: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_xdp_adjust_head(xdp_md: *mut aya_bpf_bindings::bindings::xdp_md, delta: aya_bpf_cty::ad::c_int) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_xdp_adjust_meta(xdp_md: *mut aya_bpf_bindings::bindings::xdp_md, delta: aya_bpf_cty::ad::c_int) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_xdp_adjust_tail(xdp_md: *mut aya_bpf_bindings::bindings::xdp_md, delta: aya_bpf_cty::ad::c_int) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_xdp_get_buff_len(xdp_md: *mut aya_bpf_bindings::bindings::xdp_md) -> aya_bpf_bindings::bindings::__u64 +pub unsafe fn aya_bpf_bindings::helpers::bpf_xdp_load_bytes(xdp_md: *mut aya_bpf_bindings::bindings::xdp_md, offset: aya_bpf_bindings::bindings::__u32, buf: *mut aya_bpf_cty::c_void, len: aya_bpf_bindings::bindings::__u32) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_xdp_output(ctx: *mut aya_bpf_cty::c_void, map: *mut aya_bpf_cty::c_void, flags: aya_bpf_bindings::bindings::__u64, data: *mut aya_bpf_cty::c_void, size: aya_bpf_bindings::bindings::__u64) -> aya_bpf_cty::od::c_long +pub unsafe fn aya_bpf_bindings::helpers::bpf_xdp_store_bytes(xdp_md: *mut aya_bpf_bindings::bindings::xdp_md, offset: aya_bpf_bindings::bindings::__u32, buf: *mut aya_bpf_cty::c_void, len: aya_bpf_bindings::bindings::__u32) -> aya_bpf_cty::od::c_long diff --git a/xtask/public-api/aya-bpf-cty.txt b/xtask/public-api/aya-bpf-cty.txt new file mode 100644 index 00000000..31f9f262 --- /dev/null +++ b/xtask/public-api/aya-bpf-cty.txt @@ -0,0 +1,30 @@ +pub mod aya_bpf_cty +pub type aya_bpf_cty::c_char = aya_bpf_cty::c_schar +pub type aya_bpf_cty::c_double = f64 +pub type aya_bpf_cty::c_float = f32 +pub type aya_bpf_cty::c_int = i32 +pub type aya_bpf_cty::c_long = i64 +pub type aya_bpf_cty::c_longlong = i64 +pub type aya_bpf_cty::c_schar = i8 +pub type aya_bpf_cty::c_short = i16 +pub type aya_bpf_cty::c_uchar = u8 +pub type aya_bpf_cty::c_uint = u32 +pub type aya_bpf_cty::c_ulong = u64 +pub type aya_bpf_cty::c_ulonglong = u64 +pub type aya_bpf_cty::c_ushort = u16 +pub type aya_bpf_cty::c_void = core::ffi::c_void +pub type aya_bpf_cty::int16_t = i16 +pub type aya_bpf_cty::int32_t = i32 +pub type aya_bpf_cty::int64_t = i64 +pub type aya_bpf_cty::int8_t = i8 +pub type aya_bpf_cty::intmax_t = i64 +pub type aya_bpf_cty::intptr_t = isize +pub type aya_bpf_cty::ptrdiff_t = isize +pub type aya_bpf_cty::size_t = usize +pub type aya_bpf_cty::ssize_t = isize +pub type aya_bpf_cty::uint16_t = u16 +pub type aya_bpf_cty::uint32_t = u32 +pub type aya_bpf_cty::uint64_t = u64 +pub type aya_bpf_cty::uint8_t = u8 +pub type aya_bpf_cty::uintmax_t = u64 +pub type aya_bpf_cty::uintptr_t = usize diff --git a/xtask/public-api/aya-bpf-macros.txt b/xtask/public-api/aya-bpf-macros.txt new file mode 100644 index 00000000..19567b47 --- /dev/null +++ b/xtask/public-api/aya-bpf-macros.txt @@ -0,0 +1,27 @@ +pub mod aya_bpf_macros +pub proc macro aya_bpf_macros::#[btf_tracepoint] +pub proc macro aya_bpf_macros::#[cgroup_device] +pub proc macro aya_bpf_macros::#[cgroup_skb] +pub proc macro aya_bpf_macros::#[cgroup_sock] +pub proc macro aya_bpf_macros::#[cgroup_sock_addr] +pub proc macro aya_bpf_macros::#[cgroup_sockopt] +pub proc macro aya_bpf_macros::#[cgroup_sysctl] +pub proc macro aya_bpf_macros::#[classifier] +pub proc macro aya_bpf_macros::#[fentry] +pub proc macro aya_bpf_macros::#[fexit] +pub proc macro aya_bpf_macros::#[kprobe] +pub proc macro aya_bpf_macros::#[kretprobe] +pub proc macro aya_bpf_macros::#[lsm] +pub proc macro aya_bpf_macros::#[map] +pub proc macro aya_bpf_macros::#[perf_event] +pub proc macro aya_bpf_macros::#[raw_tracepoint] +pub proc macro aya_bpf_macros::#[sk_lookup] +pub proc macro aya_bpf_macros::#[sk_msg] +pub proc macro aya_bpf_macros::#[sock_ops] +pub proc macro aya_bpf_macros::#[socket_filter] +pub proc macro aya_bpf_macros::#[stream_parser] +pub proc macro aya_bpf_macros::#[stream_verdict] +pub proc macro aya_bpf_macros::#[tracepoint] +pub proc macro aya_bpf_macros::#[uprobe] +pub proc macro aya_bpf_macros::#[uretprobe] +pub proc macro aya_bpf_macros::#[xdp] diff --git a/xtask/public-api/aya-bpf.txt b/xtask/public-api/aya-bpf.txt new file mode 100644 index 00000000..4d4aa0f7 --- /dev/null +++ b/xtask/public-api/aya-bpf.txt @@ -0,0 +1,2289 @@ +pub mod aya_bpf +pub use aya_bpf::bindings +pub use aya_bpf::cty +pub use aya_bpf::macros +pub mod aya_bpf::helpers +pub use aya_bpf::helpers::gen +pub macro aya_bpf::helpers::bpf_printk! +#[repr(transparent)] pub struct aya_bpf::helpers::PrintkArg(_) +impl aya_bpf::helpers::PrintkArg +pub fn aya_bpf::helpers::PrintkArg::from_raw(x: u64) -> Self +impl core::convert::From for aya_bpf::helpers::PrintkArg +pub fn aya_bpf::helpers::PrintkArg::from(x: char) -> aya_bpf::helpers::PrintkArg +impl core::convert::From for aya_bpf::helpers::PrintkArg +pub fn aya_bpf::helpers::PrintkArg::from(x: i16) -> aya_bpf::helpers::PrintkArg +impl core::convert::From for aya_bpf::helpers::PrintkArg +pub fn aya_bpf::helpers::PrintkArg::from(x: i32) -> aya_bpf::helpers::PrintkArg +impl core::convert::From for aya_bpf::helpers::PrintkArg +pub fn aya_bpf::helpers::PrintkArg::from(x: i64) -> aya_bpf::helpers::PrintkArg +impl core::convert::From for aya_bpf::helpers::PrintkArg +pub fn aya_bpf::helpers::PrintkArg::from(x: i8) -> aya_bpf::helpers::PrintkArg +impl core::convert::From for aya_bpf::helpers::PrintkArg +pub fn aya_bpf::helpers::PrintkArg::from(x: isize) -> aya_bpf::helpers::PrintkArg +impl core::convert::From for aya_bpf::helpers::PrintkArg +pub fn aya_bpf::helpers::PrintkArg::from(x: u16) -> aya_bpf::helpers::PrintkArg +impl core::convert::From for aya_bpf::helpers::PrintkArg +pub fn aya_bpf::helpers::PrintkArg::from(x: u32) -> aya_bpf::helpers::PrintkArg +impl core::convert::From for aya_bpf::helpers::PrintkArg +pub fn aya_bpf::helpers::PrintkArg::from(x: u64) -> aya_bpf::helpers::PrintkArg +impl core::convert::From for aya_bpf::helpers::PrintkArg +pub fn aya_bpf::helpers::PrintkArg::from(x: u8) -> aya_bpf::helpers::PrintkArg +impl core::convert::From for aya_bpf::helpers::PrintkArg +pub fn aya_bpf::helpers::PrintkArg::from(x: usize) -> aya_bpf::helpers::PrintkArg +impl core::convert::From<*const T> for aya_bpf::helpers::PrintkArg +pub fn aya_bpf::helpers::PrintkArg::from(x: *const T) -> Self +impl core::convert::From<*mut T> for aya_bpf::helpers::PrintkArg +pub fn aya_bpf::helpers::PrintkArg::from(x: *mut T) -> Self +impl core::clone::Clone for aya_bpf::helpers::PrintkArg +pub fn aya_bpf::helpers::PrintkArg::clone(&self) -> aya_bpf::helpers::PrintkArg +impl core::marker::Copy for aya_bpf::helpers::PrintkArg +impl core::marker::Send for aya_bpf::helpers::PrintkArg +impl core::marker::Sync for aya_bpf::helpers::PrintkArg +impl core::marker::Unpin for aya_bpf::helpers::PrintkArg +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::helpers::PrintkArg +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::helpers::PrintkArg +impl core::convert::Into for aya_bpf::helpers::PrintkArg where U: core::convert::From +pub fn aya_bpf::helpers::PrintkArg::into(self) -> U +impl core::convert::TryFrom for aya_bpf::helpers::PrintkArg where U: core::convert::Into +pub type aya_bpf::helpers::PrintkArg::Error = core::convert::Infallible +pub fn aya_bpf::helpers::PrintkArg::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::helpers::PrintkArg where U: core::convert::TryFrom +pub type aya_bpf::helpers::PrintkArg::Error = >::Error +pub fn aya_bpf::helpers::PrintkArg::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::helpers::PrintkArg where T: 'static + core::marker::Sized +pub fn aya_bpf::helpers::PrintkArg::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::helpers::PrintkArg where T: core::marker::Sized +pub fn aya_bpf::helpers::PrintkArg::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::helpers::PrintkArg where T: core::marker::Sized +pub fn aya_bpf::helpers::PrintkArg::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::helpers::PrintkArg +pub fn aya_bpf::helpers::PrintkArg::from(t: T) -> T +pub fn aya_bpf::helpers::bpf_get_current_comm() -> core::result::Result<[u8; 16], aya_bpf_cty::od::c_long> +pub fn aya_bpf::helpers::bpf_get_current_pid_tgid() -> u64 +pub fn aya_bpf::helpers::bpf_get_current_uid_gid() -> u64 +pub unsafe fn aya_bpf::helpers::bpf_probe_read(src: *const T) -> core::result::Result +pub unsafe fn aya_bpf::helpers::bpf_probe_read_buf(src: *const u8, dst: &mut [u8]) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub unsafe fn aya_bpf::helpers::bpf_probe_read_kernel(src: *const T) -> core::result::Result +pub unsafe fn aya_bpf::helpers::bpf_probe_read_kernel_buf(src: *const u8, dst: &mut [u8]) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub unsafe fn aya_bpf::helpers::bpf_probe_read_kernel_str(src: *const u8, dest: &mut [u8]) -> core::result::Result +pub unsafe fn aya_bpf::helpers::bpf_probe_read_kernel_str_bytes(src: *const u8, dest: &mut [u8]) -> core::result::Result<&[u8], aya_bpf_cty::od::c_long> +pub unsafe fn aya_bpf::helpers::bpf_probe_read_str(src: *const u8, dest: &mut [u8]) -> core::result::Result +pub unsafe fn aya_bpf::helpers::bpf_probe_read_user(src: *const T) -> core::result::Result +pub unsafe fn aya_bpf::helpers::bpf_probe_read_user_buf(src: *const u8, dst: &mut [u8]) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub unsafe fn aya_bpf::helpers::bpf_probe_read_user_str(src: *const u8, dest: &mut [u8]) -> core::result::Result +pub unsafe fn aya_bpf::helpers::bpf_probe_read_user_str_bytes(src: *const u8, dest: &mut [u8]) -> core::result::Result<&[u8], aya_bpf_cty::od::c_long> +pub unsafe fn aya_bpf::helpers::bpf_probe_write_user(dst: *mut T, src: *const T) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub mod aya_bpf::maps +pub mod aya_bpf::maps::array +#[repr(transparent)] pub struct aya_bpf::maps::array::Array +impl aya_bpf::maps::array::Array +pub fn aya_bpf::maps::array::Array::get(&self, index: u32) -> core::option::Option<&T> +pub fn aya_bpf::maps::array::Array::get_ptr(&self, index: u32) -> core::option::Option<*const T> +pub fn aya_bpf::maps::array::Array::get_ptr_mut(&self, index: u32) -> core::option::Option<*mut T> +pub const fn aya_bpf::maps::array::Array::pinned(max_entries: u32, flags: u32) -> aya_bpf::maps::array::Array +pub const fn aya_bpf::maps::array::Array::with_max_entries(max_entries: u32, flags: u32) -> aya_bpf::maps::array::Array +impl core::marker::Sync for aya_bpf::maps::array::Array +impl core::marker::Send for aya_bpf::maps::array::Array where T: core::marker::Send +impl core::marker::Unpin for aya_bpf::maps::array::Array where T: core::marker::Unpin +impl !core::panic::unwind_safe::RefUnwindSafe for aya_bpf::maps::array::Array +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::maps::array::Array where T: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya_bpf::maps::array::Array where U: core::convert::From +pub fn aya_bpf::maps::array::Array::into(self) -> U +impl core::convert::TryFrom for aya_bpf::maps::array::Array where U: core::convert::Into +pub type aya_bpf::maps::array::Array::Error = core::convert::Infallible +pub fn aya_bpf::maps::array::Array::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::maps::array::Array where U: core::convert::TryFrom +pub type aya_bpf::maps::array::Array::Error = >::Error +pub fn aya_bpf::maps::array::Array::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::maps::array::Array where T: 'static + core::marker::Sized +pub fn aya_bpf::maps::array::Array::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::maps::array::Array where T: core::marker::Sized +pub fn aya_bpf::maps::array::Array::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::maps::array::Array where T: core::marker::Sized +pub fn aya_bpf::maps::array::Array::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::maps::array::Array +pub fn aya_bpf::maps::array::Array::from(t: T) -> T +pub mod aya_bpf::maps::bloom_filter +#[repr(transparent)] pub struct aya_bpf::maps::bloom_filter::BloomFilter +impl aya_bpf::maps::bloom_filter::BloomFilter +pub fn aya_bpf::maps::bloom_filter::BloomFilter::contains(&mut self, value: &T) -> core::result::Result<(), i64> +pub fn aya_bpf::maps::bloom_filter::BloomFilter::insert(&mut self, value: &T, flags: u64) -> core::result::Result<(), i64> +pub const fn aya_bpf::maps::bloom_filter::BloomFilter::pinned(max_entries: u32, flags: u32) -> aya_bpf::maps::bloom_filter::BloomFilter +pub const fn aya_bpf::maps::bloom_filter::BloomFilter::with_max_entries(max_entries: u32, flags: u32) -> aya_bpf::maps::bloom_filter::BloomFilter +impl core::marker::Send for aya_bpf::maps::bloom_filter::BloomFilter where T: core::marker::Send +impl core::marker::Sync for aya_bpf::maps::bloom_filter::BloomFilter where T: core::marker::Sync +impl core::marker::Unpin for aya_bpf::maps::bloom_filter::BloomFilter where T: core::marker::Unpin +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::maps::bloom_filter::BloomFilter where T: core::panic::unwind_safe::RefUnwindSafe +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::maps::bloom_filter::BloomFilter where T: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya_bpf::maps::bloom_filter::BloomFilter where U: core::convert::From +pub fn aya_bpf::maps::bloom_filter::BloomFilter::into(self) -> U +impl core::convert::TryFrom for aya_bpf::maps::bloom_filter::BloomFilter where U: core::convert::Into +pub type aya_bpf::maps::bloom_filter::BloomFilter::Error = core::convert::Infallible +pub fn aya_bpf::maps::bloom_filter::BloomFilter::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::maps::bloom_filter::BloomFilter where U: core::convert::TryFrom +pub type aya_bpf::maps::bloom_filter::BloomFilter::Error = >::Error +pub fn aya_bpf::maps::bloom_filter::BloomFilter::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::maps::bloom_filter::BloomFilter where T: 'static + core::marker::Sized +pub fn aya_bpf::maps::bloom_filter::BloomFilter::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::maps::bloom_filter::BloomFilter where T: core::marker::Sized +pub fn aya_bpf::maps::bloom_filter::BloomFilter::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::maps::bloom_filter::BloomFilter where T: core::marker::Sized +pub fn aya_bpf::maps::bloom_filter::BloomFilter::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::maps::bloom_filter::BloomFilter +pub fn aya_bpf::maps::bloom_filter::BloomFilter::from(t: T) -> T +pub mod aya_bpf::maps::hash_map +#[repr(transparent)] pub struct aya_bpf::maps::hash_map::HashMap +impl aya_bpf::maps::hash_map::HashMap +pub unsafe fn aya_bpf::maps::hash_map::HashMap::get(&self, key: &K) -> core::option::Option<&V> +pub fn aya_bpf::maps::hash_map::HashMap::get_ptr(&self, key: &K) -> core::option::Option<*const V> +pub fn aya_bpf::maps::hash_map::HashMap::get_ptr_mut(&self, key: &K) -> core::option::Option<*mut V> +pub fn aya_bpf::maps::hash_map::HashMap::insert(&self, key: &K, value: &V, flags: u64) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub const fn aya_bpf::maps::hash_map::HashMap::pinned(max_entries: u32, flags: u32) -> aya_bpf::maps::hash_map::HashMap +pub fn aya_bpf::maps::hash_map::HashMap::remove(&self, key: &K) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub const fn aya_bpf::maps::hash_map::HashMap::with_max_entries(max_entries: u32, flags: u32) -> aya_bpf::maps::hash_map::HashMap +impl core::marker::Sync for aya_bpf::maps::hash_map::HashMap +impl core::marker::Send for aya_bpf::maps::hash_map::HashMap where K: core::marker::Send, V: core::marker::Send +impl core::marker::Unpin for aya_bpf::maps::hash_map::HashMap where K: core::marker::Unpin, V: core::marker::Unpin +impl !core::panic::unwind_safe::RefUnwindSafe for aya_bpf::maps::hash_map::HashMap +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::maps::hash_map::HashMap where K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya_bpf::maps::hash_map::HashMap where U: core::convert::From +pub fn aya_bpf::maps::hash_map::HashMap::into(self) -> U +impl core::convert::TryFrom for aya_bpf::maps::hash_map::HashMap where U: core::convert::Into +pub type aya_bpf::maps::hash_map::HashMap::Error = core::convert::Infallible +pub fn aya_bpf::maps::hash_map::HashMap::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::maps::hash_map::HashMap where U: core::convert::TryFrom +pub type aya_bpf::maps::hash_map::HashMap::Error = >::Error +pub fn aya_bpf::maps::hash_map::HashMap::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::maps::hash_map::HashMap where T: 'static + core::marker::Sized +pub fn aya_bpf::maps::hash_map::HashMap::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::maps::hash_map::HashMap where T: core::marker::Sized +pub fn aya_bpf::maps::hash_map::HashMap::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::maps::hash_map::HashMap where T: core::marker::Sized +pub fn aya_bpf::maps::hash_map::HashMap::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::maps::hash_map::HashMap +pub fn aya_bpf::maps::hash_map::HashMap::from(t: T) -> T +#[repr(transparent)] pub struct aya_bpf::maps::hash_map::LruHashMap +impl aya_bpf::maps::hash_map::LruHashMap +pub unsafe fn aya_bpf::maps::hash_map::LruHashMap::get(&self, key: &K) -> core::option::Option<&V> +pub fn aya_bpf::maps::hash_map::LruHashMap::get_ptr(&self, key: &K) -> core::option::Option<*const V> +pub fn aya_bpf::maps::hash_map::LruHashMap::get_ptr_mut(&self, key: &K) -> core::option::Option<*mut V> +pub fn aya_bpf::maps::hash_map::LruHashMap::insert(&self, key: &K, value: &V, flags: u64) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub const fn aya_bpf::maps::hash_map::LruHashMap::pinned(max_entries: u32, flags: u32) -> aya_bpf::maps::hash_map::LruHashMap +pub fn aya_bpf::maps::hash_map::LruHashMap::remove(&self, key: &K) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub const fn aya_bpf::maps::hash_map::LruHashMap::with_max_entries(max_entries: u32, flags: u32) -> aya_bpf::maps::hash_map::LruHashMap +impl core::marker::Sync for aya_bpf::maps::hash_map::LruHashMap +impl core::marker::Send for aya_bpf::maps::hash_map::LruHashMap where K: core::marker::Send, V: core::marker::Send +impl core::marker::Unpin for aya_bpf::maps::hash_map::LruHashMap where K: core::marker::Unpin, V: core::marker::Unpin +impl !core::panic::unwind_safe::RefUnwindSafe for aya_bpf::maps::hash_map::LruHashMap +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::maps::hash_map::LruHashMap where K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya_bpf::maps::hash_map::LruHashMap where U: core::convert::From +pub fn aya_bpf::maps::hash_map::LruHashMap::into(self) -> U +impl core::convert::TryFrom for aya_bpf::maps::hash_map::LruHashMap where U: core::convert::Into +pub type aya_bpf::maps::hash_map::LruHashMap::Error = core::convert::Infallible +pub fn aya_bpf::maps::hash_map::LruHashMap::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::maps::hash_map::LruHashMap where U: core::convert::TryFrom +pub type aya_bpf::maps::hash_map::LruHashMap::Error = >::Error +pub fn aya_bpf::maps::hash_map::LruHashMap::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::maps::hash_map::LruHashMap where T: 'static + core::marker::Sized +pub fn aya_bpf::maps::hash_map::LruHashMap::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::maps::hash_map::LruHashMap where T: core::marker::Sized +pub fn aya_bpf::maps::hash_map::LruHashMap::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::maps::hash_map::LruHashMap where T: core::marker::Sized +pub fn aya_bpf::maps::hash_map::LruHashMap::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::maps::hash_map::LruHashMap +pub fn aya_bpf::maps::hash_map::LruHashMap::from(t: T) -> T +#[repr(transparent)] pub struct aya_bpf::maps::hash_map::LruPerCpuHashMap +impl aya_bpf::maps::hash_map::LruPerCpuHashMap +pub unsafe fn aya_bpf::maps::hash_map::LruPerCpuHashMap::get(&self, key: &K) -> core::option::Option<&V> +pub fn aya_bpf::maps::hash_map::LruPerCpuHashMap::get_ptr(&self, key: &K) -> core::option::Option<*const V> +pub fn aya_bpf::maps::hash_map::LruPerCpuHashMap::get_ptr_mut(&self, key: &K) -> core::option::Option<*mut V> +pub fn aya_bpf::maps::hash_map::LruPerCpuHashMap::insert(&self, key: &K, value: &V, flags: u64) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub const fn aya_bpf::maps::hash_map::LruPerCpuHashMap::pinned(max_entries: u32, flags: u32) -> aya_bpf::maps::hash_map::LruPerCpuHashMap +pub fn aya_bpf::maps::hash_map::LruPerCpuHashMap::remove(&self, key: &K) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub const fn aya_bpf::maps::hash_map::LruPerCpuHashMap::with_max_entries(max_entries: u32, flags: u32) -> aya_bpf::maps::hash_map::LruPerCpuHashMap +impl core::marker::Sync for aya_bpf::maps::hash_map::LruPerCpuHashMap +impl core::marker::Send for aya_bpf::maps::hash_map::LruPerCpuHashMap where K: core::marker::Send, V: core::marker::Send +impl core::marker::Unpin for aya_bpf::maps::hash_map::LruPerCpuHashMap where K: core::marker::Unpin, V: core::marker::Unpin +impl !core::panic::unwind_safe::RefUnwindSafe for aya_bpf::maps::hash_map::LruPerCpuHashMap +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::maps::hash_map::LruPerCpuHashMap where K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya_bpf::maps::hash_map::LruPerCpuHashMap where U: core::convert::From +pub fn aya_bpf::maps::hash_map::LruPerCpuHashMap::into(self) -> U +impl core::convert::TryFrom for aya_bpf::maps::hash_map::LruPerCpuHashMap where U: core::convert::Into +pub type aya_bpf::maps::hash_map::LruPerCpuHashMap::Error = core::convert::Infallible +pub fn aya_bpf::maps::hash_map::LruPerCpuHashMap::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::maps::hash_map::LruPerCpuHashMap where U: core::convert::TryFrom +pub type aya_bpf::maps::hash_map::LruPerCpuHashMap::Error = >::Error +pub fn aya_bpf::maps::hash_map::LruPerCpuHashMap::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::maps::hash_map::LruPerCpuHashMap where T: 'static + core::marker::Sized +pub fn aya_bpf::maps::hash_map::LruPerCpuHashMap::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::maps::hash_map::LruPerCpuHashMap where T: core::marker::Sized +pub fn aya_bpf::maps::hash_map::LruPerCpuHashMap::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::maps::hash_map::LruPerCpuHashMap where T: core::marker::Sized +pub fn aya_bpf::maps::hash_map::LruPerCpuHashMap::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::maps::hash_map::LruPerCpuHashMap +pub fn aya_bpf::maps::hash_map::LruPerCpuHashMap::from(t: T) -> T +#[repr(transparent)] pub struct aya_bpf::maps::hash_map::PerCpuHashMap +impl aya_bpf::maps::hash_map::PerCpuHashMap +pub unsafe fn aya_bpf::maps::hash_map::PerCpuHashMap::get(&self, key: &K) -> core::option::Option<&V> +pub fn aya_bpf::maps::hash_map::PerCpuHashMap::get_ptr(&self, key: &K) -> core::option::Option<*const V> +pub fn aya_bpf::maps::hash_map::PerCpuHashMap::get_ptr_mut(&self, key: &K) -> core::option::Option<*mut V> +pub fn aya_bpf::maps::hash_map::PerCpuHashMap::insert(&self, key: &K, value: &V, flags: u64) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub const fn aya_bpf::maps::hash_map::PerCpuHashMap::pinned(max_entries: u32, flags: u32) -> aya_bpf::maps::hash_map::PerCpuHashMap +pub fn aya_bpf::maps::hash_map::PerCpuHashMap::remove(&self, key: &K) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub const fn aya_bpf::maps::hash_map::PerCpuHashMap::with_max_entries(max_entries: u32, flags: u32) -> aya_bpf::maps::hash_map::PerCpuHashMap +impl core::marker::Sync for aya_bpf::maps::hash_map::PerCpuHashMap +impl core::marker::Send for aya_bpf::maps::hash_map::PerCpuHashMap where K: core::marker::Send, V: core::marker::Send +impl core::marker::Unpin for aya_bpf::maps::hash_map::PerCpuHashMap where K: core::marker::Unpin, V: core::marker::Unpin +impl !core::panic::unwind_safe::RefUnwindSafe for aya_bpf::maps::hash_map::PerCpuHashMap +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::maps::hash_map::PerCpuHashMap where K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya_bpf::maps::hash_map::PerCpuHashMap where U: core::convert::From +pub fn aya_bpf::maps::hash_map::PerCpuHashMap::into(self) -> U +impl core::convert::TryFrom for aya_bpf::maps::hash_map::PerCpuHashMap where U: core::convert::Into +pub type aya_bpf::maps::hash_map::PerCpuHashMap::Error = core::convert::Infallible +pub fn aya_bpf::maps::hash_map::PerCpuHashMap::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::maps::hash_map::PerCpuHashMap where U: core::convert::TryFrom +pub type aya_bpf::maps::hash_map::PerCpuHashMap::Error = >::Error +pub fn aya_bpf::maps::hash_map::PerCpuHashMap::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::maps::hash_map::PerCpuHashMap where T: 'static + core::marker::Sized +pub fn aya_bpf::maps::hash_map::PerCpuHashMap::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::maps::hash_map::PerCpuHashMap where T: core::marker::Sized +pub fn aya_bpf::maps::hash_map::PerCpuHashMap::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::maps::hash_map::PerCpuHashMap where T: core::marker::Sized +pub fn aya_bpf::maps::hash_map::PerCpuHashMap::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::maps::hash_map::PerCpuHashMap +pub fn aya_bpf::maps::hash_map::PerCpuHashMap::from(t: T) -> T +pub mod aya_bpf::maps::lpm_trie +#[repr(packed)] pub struct aya_bpf::maps::lpm_trie::Key +pub aya_bpf::maps::lpm_trie::Key::data: K +pub aya_bpf::maps::lpm_trie::Key::prefix_len: u32 +impl aya_bpf::maps::lpm_trie::Key +pub fn aya_bpf::maps::lpm_trie::Key::new(prefix_len: u32, data: K) -> Self +impl core::marker::Send for aya_bpf::maps::lpm_trie::Key where K: core::marker::Send +impl core::marker::Sync for aya_bpf::maps::lpm_trie::Key where K: core::marker::Sync +impl core::marker::Unpin for aya_bpf::maps::lpm_trie::Key where K: core::marker::Unpin +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::maps::lpm_trie::Key where K: core::panic::unwind_safe::RefUnwindSafe +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::maps::lpm_trie::Key where K: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya_bpf::maps::lpm_trie::Key where U: core::convert::From +pub fn aya_bpf::maps::lpm_trie::Key::into(self) -> U +impl core::convert::TryFrom for aya_bpf::maps::lpm_trie::Key where U: core::convert::Into +pub type aya_bpf::maps::lpm_trie::Key::Error = core::convert::Infallible +pub fn aya_bpf::maps::lpm_trie::Key::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::maps::lpm_trie::Key where U: core::convert::TryFrom +pub type aya_bpf::maps::lpm_trie::Key::Error = >::Error +pub fn aya_bpf::maps::lpm_trie::Key::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::maps::lpm_trie::Key where T: 'static + core::marker::Sized +pub fn aya_bpf::maps::lpm_trie::Key::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::maps::lpm_trie::Key where T: core::marker::Sized +pub fn aya_bpf::maps::lpm_trie::Key::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::maps::lpm_trie::Key where T: core::marker::Sized +pub fn aya_bpf::maps::lpm_trie::Key::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::maps::lpm_trie::Key +pub fn aya_bpf::maps::lpm_trie::Key::from(t: T) -> T +#[repr(transparent)] pub struct aya_bpf::maps::lpm_trie::LpmTrie +impl aya_bpf::maps::lpm_trie::LpmTrie +pub fn aya_bpf::maps::lpm_trie::LpmTrie::get(&self, key: &aya_bpf::maps::lpm_trie::Key) -> core::option::Option<&V> +pub fn aya_bpf::maps::lpm_trie::LpmTrie::insert(&self, key: &aya_bpf::maps::lpm_trie::Key, value: &V, flags: u64) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub const fn aya_bpf::maps::lpm_trie::LpmTrie::pinned(max_entries: u32, flags: u32) -> aya_bpf::maps::lpm_trie::LpmTrie +pub fn aya_bpf::maps::lpm_trie::LpmTrie::remove(&self, key: &aya_bpf::maps::lpm_trie::Key) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub const fn aya_bpf::maps::lpm_trie::LpmTrie::with_max_entries(max_entries: u32, flags: u32) -> aya_bpf::maps::lpm_trie::LpmTrie +impl core::marker::Sync for aya_bpf::maps::lpm_trie::LpmTrie +impl core::marker::Send for aya_bpf::maps::lpm_trie::LpmTrie where K: core::marker::Send, V: core::marker::Send +impl core::marker::Unpin for aya_bpf::maps::lpm_trie::LpmTrie where K: core::marker::Unpin, V: core::marker::Unpin +impl !core::panic::unwind_safe::RefUnwindSafe for aya_bpf::maps::lpm_trie::LpmTrie +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::maps::lpm_trie::LpmTrie where K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya_bpf::maps::lpm_trie::LpmTrie where U: core::convert::From +pub fn aya_bpf::maps::lpm_trie::LpmTrie::into(self) -> U +impl core::convert::TryFrom for aya_bpf::maps::lpm_trie::LpmTrie where U: core::convert::Into +pub type aya_bpf::maps::lpm_trie::LpmTrie::Error = core::convert::Infallible +pub fn aya_bpf::maps::lpm_trie::LpmTrie::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::maps::lpm_trie::LpmTrie where U: core::convert::TryFrom +pub type aya_bpf::maps::lpm_trie::LpmTrie::Error = >::Error +pub fn aya_bpf::maps::lpm_trie::LpmTrie::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::maps::lpm_trie::LpmTrie where T: 'static + core::marker::Sized +pub fn aya_bpf::maps::lpm_trie::LpmTrie::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::maps::lpm_trie::LpmTrie where T: core::marker::Sized +pub fn aya_bpf::maps::lpm_trie::LpmTrie::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::maps::lpm_trie::LpmTrie where T: core::marker::Sized +pub fn aya_bpf::maps::lpm_trie::LpmTrie::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::maps::lpm_trie::LpmTrie +pub fn aya_bpf::maps::lpm_trie::LpmTrie::from(t: T) -> T +pub mod aya_bpf::maps::per_cpu_array +#[repr(transparent)] pub struct aya_bpf::maps::per_cpu_array::PerCpuArray +impl aya_bpf::maps::per_cpu_array::PerCpuArray +pub fn aya_bpf::maps::per_cpu_array::PerCpuArray::get(&self, index: u32) -> core::option::Option<&T> +pub fn aya_bpf::maps::per_cpu_array::PerCpuArray::get_ptr(&self, index: u32) -> core::option::Option<*const T> +pub fn aya_bpf::maps::per_cpu_array::PerCpuArray::get_ptr_mut(&self, index: u32) -> core::option::Option<*mut T> +pub const fn aya_bpf::maps::per_cpu_array::PerCpuArray::pinned(max_entries: u32, flags: u32) -> aya_bpf::maps::per_cpu_array::PerCpuArray +pub const fn aya_bpf::maps::per_cpu_array::PerCpuArray::with_max_entries(max_entries: u32, flags: u32) -> aya_bpf::maps::per_cpu_array::PerCpuArray +impl core::marker::Sync for aya_bpf::maps::per_cpu_array::PerCpuArray +impl core::marker::Send for aya_bpf::maps::per_cpu_array::PerCpuArray where T: core::marker::Send +impl core::marker::Unpin for aya_bpf::maps::per_cpu_array::PerCpuArray where T: core::marker::Unpin +impl !core::panic::unwind_safe::RefUnwindSafe for aya_bpf::maps::per_cpu_array::PerCpuArray +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::maps::per_cpu_array::PerCpuArray where T: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya_bpf::maps::per_cpu_array::PerCpuArray where U: core::convert::From +pub fn aya_bpf::maps::per_cpu_array::PerCpuArray::into(self) -> U +impl core::convert::TryFrom for aya_bpf::maps::per_cpu_array::PerCpuArray where U: core::convert::Into +pub type aya_bpf::maps::per_cpu_array::PerCpuArray::Error = core::convert::Infallible +pub fn aya_bpf::maps::per_cpu_array::PerCpuArray::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::maps::per_cpu_array::PerCpuArray where U: core::convert::TryFrom +pub type aya_bpf::maps::per_cpu_array::PerCpuArray::Error = >::Error +pub fn aya_bpf::maps::per_cpu_array::PerCpuArray::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::maps::per_cpu_array::PerCpuArray where T: 'static + core::marker::Sized +pub fn aya_bpf::maps::per_cpu_array::PerCpuArray::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::maps::per_cpu_array::PerCpuArray where T: core::marker::Sized +pub fn aya_bpf::maps::per_cpu_array::PerCpuArray::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::maps::per_cpu_array::PerCpuArray where T: core::marker::Sized +pub fn aya_bpf::maps::per_cpu_array::PerCpuArray::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::maps::per_cpu_array::PerCpuArray +pub fn aya_bpf::maps::per_cpu_array::PerCpuArray::from(t: T) -> T +pub mod aya_bpf::maps::perf +#[repr(transparent)] pub struct aya_bpf::maps::perf::PerfEventArray +impl aya_bpf::maps::PerfEventArray +pub const fn aya_bpf::maps::PerfEventArray::new(flags: u32) -> aya_bpf::maps::PerfEventArray +pub fn aya_bpf::maps::PerfEventArray::output(&self, ctx: &C, data: &T, flags: u32) +pub fn aya_bpf::maps::PerfEventArray::output_at_index(&self, ctx: &C, index: u32, data: &T, flags: u32) +pub const fn aya_bpf::maps::PerfEventArray::pinned(max_entries: u32, flags: u32) -> aya_bpf::maps::PerfEventArray +pub const fn aya_bpf::maps::PerfEventArray::with_max_entries(max_entries: u32, flags: u32) -> aya_bpf::maps::PerfEventArray +impl core::marker::Sync for aya_bpf::maps::PerfEventArray +impl core::marker::Send for aya_bpf::maps::PerfEventArray where T: core::marker::Send +impl core::marker::Unpin for aya_bpf::maps::PerfEventArray where T: core::marker::Unpin +impl !core::panic::unwind_safe::RefUnwindSafe for aya_bpf::maps::PerfEventArray +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::maps::PerfEventArray where T: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya_bpf::maps::PerfEventArray where U: core::convert::From +pub fn aya_bpf::maps::PerfEventArray::into(self) -> U +impl core::convert::TryFrom for aya_bpf::maps::PerfEventArray where U: core::convert::Into +pub type aya_bpf::maps::PerfEventArray::Error = core::convert::Infallible +pub fn aya_bpf::maps::PerfEventArray::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::maps::PerfEventArray where U: core::convert::TryFrom +pub type aya_bpf::maps::PerfEventArray::Error = >::Error +pub fn aya_bpf::maps::PerfEventArray::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::maps::PerfEventArray where T: 'static + core::marker::Sized +pub fn aya_bpf::maps::PerfEventArray::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::maps::PerfEventArray where T: core::marker::Sized +pub fn aya_bpf::maps::PerfEventArray::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::maps::PerfEventArray where T: core::marker::Sized +pub fn aya_bpf::maps::PerfEventArray::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::maps::PerfEventArray +pub fn aya_bpf::maps::PerfEventArray::from(t: T) -> T +#[repr(transparent)] pub struct aya_bpf::maps::perf::PerfEventByteArray +impl aya_bpf::maps::PerfEventByteArray +pub const fn aya_bpf::maps::PerfEventByteArray::new(flags: u32) -> aya_bpf::maps::PerfEventByteArray +pub fn aya_bpf::maps::PerfEventByteArray::output(&self, ctx: &C, data: &[u8], flags: u32) +pub fn aya_bpf::maps::PerfEventByteArray::output_at_index(&self, ctx: &C, index: u32, data: &[u8], flags: u32) +pub const fn aya_bpf::maps::PerfEventByteArray::pinned(max_entries: u32, flags: u32) -> aya_bpf::maps::PerfEventByteArray +pub const fn aya_bpf::maps::PerfEventByteArray::with_max_entries(max_entries: u32, flags: u32) -> aya_bpf::maps::PerfEventByteArray +impl core::marker::Sync for aya_bpf::maps::PerfEventByteArray +impl core::marker::Send for aya_bpf::maps::PerfEventByteArray +impl core::marker::Unpin for aya_bpf::maps::PerfEventByteArray +impl !core::panic::unwind_safe::RefUnwindSafe for aya_bpf::maps::PerfEventByteArray +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::maps::PerfEventByteArray +impl core::convert::Into for aya_bpf::maps::PerfEventByteArray where U: core::convert::From +pub fn aya_bpf::maps::PerfEventByteArray::into(self) -> U +impl core::convert::TryFrom for aya_bpf::maps::PerfEventByteArray where U: core::convert::Into +pub type aya_bpf::maps::PerfEventByteArray::Error = core::convert::Infallible +pub fn aya_bpf::maps::PerfEventByteArray::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::maps::PerfEventByteArray where U: core::convert::TryFrom +pub type aya_bpf::maps::PerfEventByteArray::Error = >::Error +pub fn aya_bpf::maps::PerfEventByteArray::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::maps::PerfEventByteArray where T: 'static + core::marker::Sized +pub fn aya_bpf::maps::PerfEventByteArray::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::maps::PerfEventByteArray where T: core::marker::Sized +pub fn aya_bpf::maps::PerfEventByteArray::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::maps::PerfEventByteArray where T: core::marker::Sized +pub fn aya_bpf::maps::PerfEventByteArray::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::maps::PerfEventByteArray +pub fn aya_bpf::maps::PerfEventByteArray::from(t: T) -> T +pub mod aya_bpf::maps::program_array +#[repr(transparent)] pub struct aya_bpf::maps::program_array::ProgramArray +impl aya_bpf::maps::program_array::ProgramArray +pub const fn aya_bpf::maps::program_array::ProgramArray::pinned(max_entries: u32, flags: u32) -> aya_bpf::maps::program_array::ProgramArray +pub unsafe fn aya_bpf::maps::program_array::ProgramArray::tail_call(&self, ctx: &C, index: u32) -> core::result::Result +pub const fn aya_bpf::maps::program_array::ProgramArray::with_max_entries(max_entries: u32, flags: u32) -> aya_bpf::maps::program_array::ProgramArray +impl core::marker::Sync for aya_bpf::maps::program_array::ProgramArray +impl core::marker::Send for aya_bpf::maps::program_array::ProgramArray +impl core::marker::Unpin for aya_bpf::maps::program_array::ProgramArray +impl !core::panic::unwind_safe::RefUnwindSafe for aya_bpf::maps::program_array::ProgramArray +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::maps::program_array::ProgramArray +impl core::convert::Into for aya_bpf::maps::program_array::ProgramArray where U: core::convert::From +pub fn aya_bpf::maps::program_array::ProgramArray::into(self) -> U +impl core::convert::TryFrom for aya_bpf::maps::program_array::ProgramArray where U: core::convert::Into +pub type aya_bpf::maps::program_array::ProgramArray::Error = core::convert::Infallible +pub fn aya_bpf::maps::program_array::ProgramArray::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::maps::program_array::ProgramArray where U: core::convert::TryFrom +pub type aya_bpf::maps::program_array::ProgramArray::Error = >::Error +pub fn aya_bpf::maps::program_array::ProgramArray::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::maps::program_array::ProgramArray where T: 'static + core::marker::Sized +pub fn aya_bpf::maps::program_array::ProgramArray::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::maps::program_array::ProgramArray where T: core::marker::Sized +pub fn aya_bpf::maps::program_array::ProgramArray::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::maps::program_array::ProgramArray where T: core::marker::Sized +pub fn aya_bpf::maps::program_array::ProgramArray::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::maps::program_array::ProgramArray +pub fn aya_bpf::maps::program_array::ProgramArray::from(t: T) -> T +pub mod aya_bpf::maps::queue +#[repr(transparent)] pub struct aya_bpf::maps::queue::Queue +impl aya_bpf::maps::queue::Queue +pub const fn aya_bpf::maps::queue::Queue::pinned(max_entries: u32, flags: u32) -> aya_bpf::maps::queue::Queue +pub fn aya_bpf::maps::queue::Queue::pop(&self) -> core::option::Option +pub fn aya_bpf::maps::queue::Queue::push(&self, value: &T, flags: u64) -> core::result::Result<(), i64> +pub const fn aya_bpf::maps::queue::Queue::with_max_entries(max_entries: u32, flags: u32) -> aya_bpf::maps::queue::Queue +impl core::marker::Sync for aya_bpf::maps::queue::Queue +impl core::marker::Send for aya_bpf::maps::queue::Queue where T: core::marker::Send +impl core::marker::Unpin for aya_bpf::maps::queue::Queue where T: core::marker::Unpin +impl !core::panic::unwind_safe::RefUnwindSafe for aya_bpf::maps::queue::Queue +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::maps::queue::Queue where T: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya_bpf::maps::queue::Queue where U: core::convert::From +pub fn aya_bpf::maps::queue::Queue::into(self) -> U +impl core::convert::TryFrom for aya_bpf::maps::queue::Queue where U: core::convert::Into +pub type aya_bpf::maps::queue::Queue::Error = core::convert::Infallible +pub fn aya_bpf::maps::queue::Queue::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::maps::queue::Queue where U: core::convert::TryFrom +pub type aya_bpf::maps::queue::Queue::Error = >::Error +pub fn aya_bpf::maps::queue::Queue::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::maps::queue::Queue where T: 'static + core::marker::Sized +pub fn aya_bpf::maps::queue::Queue::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::maps::queue::Queue where T: core::marker::Sized +pub fn aya_bpf::maps::queue::Queue::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::maps::queue::Queue where T: core::marker::Sized +pub fn aya_bpf::maps::queue::Queue::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::maps::queue::Queue +pub fn aya_bpf::maps::queue::Queue::from(t: T) -> T +pub mod aya_bpf::maps::sock_hash +#[repr(transparent)] pub struct aya_bpf::maps::sock_hash::SockHash +impl aya_bpf::maps::sock_hash::SockHash +pub const fn aya_bpf::maps::sock_hash::SockHash::pinned(max_entries: u32, flags: u32) -> aya_bpf::maps::sock_hash::SockHash +pub fn aya_bpf::maps::sock_hash::SockHash::redirect_msg(&self, ctx: &aya_bpf::programs::sk_msg::SkMsgContext, key: &mut K, flags: u64) -> i64 +pub fn aya_bpf::maps::sock_hash::SockHash::redirect_sk_lookup(&mut self, ctx: &aya_bpf::programs::sk_lookup::SkLookupContext, key: impl core::borrow::Borrow, flags: u64) -> core::result::Result<(), u32> +pub fn aya_bpf::maps::sock_hash::SockHash::redirect_skb(&self, ctx: &aya_bpf::programs::sk_buff::SkBuffContext, key: &mut K, flags: u64) -> i64 +pub fn aya_bpf::maps::sock_hash::SockHash::update(&self, key: &mut K, sk_ops: &mut aya_bpf_bindings::x86_64::bindings::bpf_sock_ops, flags: u64) -> core::result::Result<(), i64> +pub const fn aya_bpf::maps::sock_hash::SockHash::with_max_entries(max_entries: u32, flags: u32) -> aya_bpf::maps::sock_hash::SockHash +impl core::marker::Sync for aya_bpf::maps::sock_hash::SockHash +impl core::marker::Send for aya_bpf::maps::sock_hash::SockHash where K: core::marker::Send +impl core::marker::Unpin for aya_bpf::maps::sock_hash::SockHash where K: core::marker::Unpin +impl !core::panic::unwind_safe::RefUnwindSafe for aya_bpf::maps::sock_hash::SockHash +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::maps::sock_hash::SockHash where K: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya_bpf::maps::sock_hash::SockHash where U: core::convert::From +pub fn aya_bpf::maps::sock_hash::SockHash::into(self) -> U +impl core::convert::TryFrom for aya_bpf::maps::sock_hash::SockHash where U: core::convert::Into +pub type aya_bpf::maps::sock_hash::SockHash::Error = core::convert::Infallible +pub fn aya_bpf::maps::sock_hash::SockHash::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::maps::sock_hash::SockHash where U: core::convert::TryFrom +pub type aya_bpf::maps::sock_hash::SockHash::Error = >::Error +pub fn aya_bpf::maps::sock_hash::SockHash::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::maps::sock_hash::SockHash where T: 'static + core::marker::Sized +pub fn aya_bpf::maps::sock_hash::SockHash::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::maps::sock_hash::SockHash where T: core::marker::Sized +pub fn aya_bpf::maps::sock_hash::SockHash::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::maps::sock_hash::SockHash where T: core::marker::Sized +pub fn aya_bpf::maps::sock_hash::SockHash::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::maps::sock_hash::SockHash +pub fn aya_bpf::maps::sock_hash::SockHash::from(t: T) -> T +pub mod aya_bpf::maps::sock_map +#[repr(transparent)] pub struct aya_bpf::maps::sock_map::SockMap +impl aya_bpf::maps::sock_map::SockMap +pub const fn aya_bpf::maps::sock_map::SockMap::pinned(max_entries: u32, flags: u32) -> aya_bpf::maps::sock_map::SockMap +pub unsafe fn aya_bpf::maps::sock_map::SockMap::redirect_msg(&self, ctx: &aya_bpf::programs::sk_msg::SkMsgContext, index: u32, flags: u64) -> i64 +pub fn aya_bpf::maps::sock_map::SockMap::redirect_sk_lookup(&mut self, ctx: &aya_bpf::programs::sk_lookup::SkLookupContext, index: u32, flags: u64) -> core::result::Result<(), u32> +pub unsafe fn aya_bpf::maps::sock_map::SockMap::redirect_skb(&self, ctx: &aya_bpf::programs::sk_buff::SkBuffContext, index: u32, flags: u64) -> i64 +pub unsafe fn aya_bpf::maps::sock_map::SockMap::update(&self, index: u32, sk_ops: *mut aya_bpf_bindings::x86_64::bindings::bpf_sock_ops, flags: u64) -> core::result::Result<(), i64> +pub const fn aya_bpf::maps::sock_map::SockMap::with_max_entries(max_entries: u32, flags: u32) -> aya_bpf::maps::sock_map::SockMap +impl core::marker::Sync for aya_bpf::maps::sock_map::SockMap +impl core::marker::Send for aya_bpf::maps::sock_map::SockMap +impl core::marker::Unpin for aya_bpf::maps::sock_map::SockMap +impl !core::panic::unwind_safe::RefUnwindSafe for aya_bpf::maps::sock_map::SockMap +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::maps::sock_map::SockMap +impl core::convert::Into for aya_bpf::maps::sock_map::SockMap where U: core::convert::From +pub fn aya_bpf::maps::sock_map::SockMap::into(self) -> U +impl core::convert::TryFrom for aya_bpf::maps::sock_map::SockMap where U: core::convert::Into +pub type aya_bpf::maps::sock_map::SockMap::Error = core::convert::Infallible +pub fn aya_bpf::maps::sock_map::SockMap::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::maps::sock_map::SockMap where U: core::convert::TryFrom +pub type aya_bpf::maps::sock_map::SockMap::Error = >::Error +pub fn aya_bpf::maps::sock_map::SockMap::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::maps::sock_map::SockMap where T: 'static + core::marker::Sized +pub fn aya_bpf::maps::sock_map::SockMap::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::maps::sock_map::SockMap where T: core::marker::Sized +pub fn aya_bpf::maps::sock_map::SockMap::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::maps::sock_map::SockMap where T: core::marker::Sized +pub fn aya_bpf::maps::sock_map::SockMap::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::maps::sock_map::SockMap +pub fn aya_bpf::maps::sock_map::SockMap::from(t: T) -> T +pub mod aya_bpf::maps::stack +#[repr(transparent)] pub struct aya_bpf::maps::stack::Stack +impl aya_bpf::maps::stack::Stack +pub const fn aya_bpf::maps::stack::Stack::pinned(max_entries: u32, flags: u32) -> aya_bpf::maps::stack::Stack +pub fn aya_bpf::maps::stack::Stack::pop(&mut self) -> core::option::Option +pub fn aya_bpf::maps::stack::Stack::push(&mut self, value: &T, flags: u64) -> core::result::Result<(), i64> +pub const fn aya_bpf::maps::stack::Stack::with_max_entries(max_entries: u32, flags: u32) -> aya_bpf::maps::stack::Stack +impl core::marker::Send for aya_bpf::maps::stack::Stack where T: core::marker::Send +impl core::marker::Sync for aya_bpf::maps::stack::Stack where T: core::marker::Sync +impl core::marker::Unpin for aya_bpf::maps::stack::Stack where T: core::marker::Unpin +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::maps::stack::Stack where T: core::panic::unwind_safe::RefUnwindSafe +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::maps::stack::Stack where T: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya_bpf::maps::stack::Stack where U: core::convert::From +pub fn aya_bpf::maps::stack::Stack::into(self) -> U +impl core::convert::TryFrom for aya_bpf::maps::stack::Stack where U: core::convert::Into +pub type aya_bpf::maps::stack::Stack::Error = core::convert::Infallible +pub fn aya_bpf::maps::stack::Stack::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::maps::stack::Stack where U: core::convert::TryFrom +pub type aya_bpf::maps::stack::Stack::Error = >::Error +pub fn aya_bpf::maps::stack::Stack::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::maps::stack::Stack where T: 'static + core::marker::Sized +pub fn aya_bpf::maps::stack::Stack::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::maps::stack::Stack where T: core::marker::Sized +pub fn aya_bpf::maps::stack::Stack::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::maps::stack::Stack where T: core::marker::Sized +pub fn aya_bpf::maps::stack::Stack::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::maps::stack::Stack +pub fn aya_bpf::maps::stack::Stack::from(t: T) -> T +pub mod aya_bpf::maps::stack_trace +#[repr(transparent)] pub struct aya_bpf::maps::stack_trace::StackTrace +impl aya_bpf::maps::stack_trace::StackTrace +pub unsafe fn aya_bpf::maps::stack_trace::StackTrace::get_stackid(&self, ctx: &C, flags: u64) -> core::result::Result +pub const fn aya_bpf::maps::stack_trace::StackTrace::pinned(max_entries: u32, flags: u32) -> aya_bpf::maps::stack_trace::StackTrace +pub const fn aya_bpf::maps::stack_trace::StackTrace::with_max_entries(max_entries: u32, flags: u32) -> aya_bpf::maps::stack_trace::StackTrace +impl core::marker::Sync for aya_bpf::maps::stack_trace::StackTrace +impl core::marker::Send for aya_bpf::maps::stack_trace::StackTrace +impl core::marker::Unpin for aya_bpf::maps::stack_trace::StackTrace +impl !core::panic::unwind_safe::RefUnwindSafe for aya_bpf::maps::stack_trace::StackTrace +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::maps::stack_trace::StackTrace +impl core::convert::Into for aya_bpf::maps::stack_trace::StackTrace where U: core::convert::From +pub fn aya_bpf::maps::stack_trace::StackTrace::into(self) -> U +impl core::convert::TryFrom for aya_bpf::maps::stack_trace::StackTrace where U: core::convert::Into +pub type aya_bpf::maps::stack_trace::StackTrace::Error = core::convert::Infallible +pub fn aya_bpf::maps::stack_trace::StackTrace::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::maps::stack_trace::StackTrace where U: core::convert::TryFrom +pub type aya_bpf::maps::stack_trace::StackTrace::Error = >::Error +pub fn aya_bpf::maps::stack_trace::StackTrace::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::maps::stack_trace::StackTrace where T: 'static + core::marker::Sized +pub fn aya_bpf::maps::stack_trace::StackTrace::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::maps::stack_trace::StackTrace where T: core::marker::Sized +pub fn aya_bpf::maps::stack_trace::StackTrace::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::maps::stack_trace::StackTrace where T: core::marker::Sized +pub fn aya_bpf::maps::stack_trace::StackTrace::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::maps::stack_trace::StackTrace +pub fn aya_bpf::maps::stack_trace::StackTrace::from(t: T) -> T +#[repr(transparent)] pub struct aya_bpf::maps::Array +impl aya_bpf::maps::array::Array +pub fn aya_bpf::maps::array::Array::get(&self, index: u32) -> core::option::Option<&T> +pub fn aya_bpf::maps::array::Array::get_ptr(&self, index: u32) -> core::option::Option<*const T> +pub fn aya_bpf::maps::array::Array::get_ptr_mut(&self, index: u32) -> core::option::Option<*mut T> +pub const fn aya_bpf::maps::array::Array::pinned(max_entries: u32, flags: u32) -> aya_bpf::maps::array::Array +pub const fn aya_bpf::maps::array::Array::with_max_entries(max_entries: u32, flags: u32) -> aya_bpf::maps::array::Array +impl core::marker::Sync for aya_bpf::maps::array::Array +impl core::marker::Send for aya_bpf::maps::array::Array where T: core::marker::Send +impl core::marker::Unpin for aya_bpf::maps::array::Array where T: core::marker::Unpin +impl !core::panic::unwind_safe::RefUnwindSafe for aya_bpf::maps::array::Array +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::maps::array::Array where T: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya_bpf::maps::array::Array where U: core::convert::From +pub fn aya_bpf::maps::array::Array::into(self) -> U +impl core::convert::TryFrom for aya_bpf::maps::array::Array where U: core::convert::Into +pub type aya_bpf::maps::array::Array::Error = core::convert::Infallible +pub fn aya_bpf::maps::array::Array::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::maps::array::Array where U: core::convert::TryFrom +pub type aya_bpf::maps::array::Array::Error = >::Error +pub fn aya_bpf::maps::array::Array::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::maps::array::Array where T: 'static + core::marker::Sized +pub fn aya_bpf::maps::array::Array::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::maps::array::Array where T: core::marker::Sized +pub fn aya_bpf::maps::array::Array::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::maps::array::Array where T: core::marker::Sized +pub fn aya_bpf::maps::array::Array::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::maps::array::Array +pub fn aya_bpf::maps::array::Array::from(t: T) -> T +#[repr(transparent)] pub struct aya_bpf::maps::BloomFilter +impl aya_bpf::maps::bloom_filter::BloomFilter +pub fn aya_bpf::maps::bloom_filter::BloomFilter::contains(&mut self, value: &T) -> core::result::Result<(), i64> +pub fn aya_bpf::maps::bloom_filter::BloomFilter::insert(&mut self, value: &T, flags: u64) -> core::result::Result<(), i64> +pub const fn aya_bpf::maps::bloom_filter::BloomFilter::pinned(max_entries: u32, flags: u32) -> aya_bpf::maps::bloom_filter::BloomFilter +pub const fn aya_bpf::maps::bloom_filter::BloomFilter::with_max_entries(max_entries: u32, flags: u32) -> aya_bpf::maps::bloom_filter::BloomFilter +impl core::marker::Send for aya_bpf::maps::bloom_filter::BloomFilter where T: core::marker::Send +impl core::marker::Sync for aya_bpf::maps::bloom_filter::BloomFilter where T: core::marker::Sync +impl core::marker::Unpin for aya_bpf::maps::bloom_filter::BloomFilter where T: core::marker::Unpin +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::maps::bloom_filter::BloomFilter where T: core::panic::unwind_safe::RefUnwindSafe +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::maps::bloom_filter::BloomFilter where T: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya_bpf::maps::bloom_filter::BloomFilter where U: core::convert::From +pub fn aya_bpf::maps::bloom_filter::BloomFilter::into(self) -> U +impl core::convert::TryFrom for aya_bpf::maps::bloom_filter::BloomFilter where U: core::convert::Into +pub type aya_bpf::maps::bloom_filter::BloomFilter::Error = core::convert::Infallible +pub fn aya_bpf::maps::bloom_filter::BloomFilter::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::maps::bloom_filter::BloomFilter where U: core::convert::TryFrom +pub type aya_bpf::maps::bloom_filter::BloomFilter::Error = >::Error +pub fn aya_bpf::maps::bloom_filter::BloomFilter::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::maps::bloom_filter::BloomFilter where T: 'static + core::marker::Sized +pub fn aya_bpf::maps::bloom_filter::BloomFilter::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::maps::bloom_filter::BloomFilter where T: core::marker::Sized +pub fn aya_bpf::maps::bloom_filter::BloomFilter::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::maps::bloom_filter::BloomFilter where T: core::marker::Sized +pub fn aya_bpf::maps::bloom_filter::BloomFilter::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::maps::bloom_filter::BloomFilter +pub fn aya_bpf::maps::bloom_filter::BloomFilter::from(t: T) -> T +#[repr(transparent)] pub struct aya_bpf::maps::HashMap +impl aya_bpf::maps::hash_map::HashMap +pub unsafe fn aya_bpf::maps::hash_map::HashMap::get(&self, key: &K) -> core::option::Option<&V> +pub fn aya_bpf::maps::hash_map::HashMap::get_ptr(&self, key: &K) -> core::option::Option<*const V> +pub fn aya_bpf::maps::hash_map::HashMap::get_ptr_mut(&self, key: &K) -> core::option::Option<*mut V> +pub fn aya_bpf::maps::hash_map::HashMap::insert(&self, key: &K, value: &V, flags: u64) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub const fn aya_bpf::maps::hash_map::HashMap::pinned(max_entries: u32, flags: u32) -> aya_bpf::maps::hash_map::HashMap +pub fn aya_bpf::maps::hash_map::HashMap::remove(&self, key: &K) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub const fn aya_bpf::maps::hash_map::HashMap::with_max_entries(max_entries: u32, flags: u32) -> aya_bpf::maps::hash_map::HashMap +impl core::marker::Sync for aya_bpf::maps::hash_map::HashMap +impl core::marker::Send for aya_bpf::maps::hash_map::HashMap where K: core::marker::Send, V: core::marker::Send +impl core::marker::Unpin for aya_bpf::maps::hash_map::HashMap where K: core::marker::Unpin, V: core::marker::Unpin +impl !core::panic::unwind_safe::RefUnwindSafe for aya_bpf::maps::hash_map::HashMap +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::maps::hash_map::HashMap where K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya_bpf::maps::hash_map::HashMap where U: core::convert::From +pub fn aya_bpf::maps::hash_map::HashMap::into(self) -> U +impl core::convert::TryFrom for aya_bpf::maps::hash_map::HashMap where U: core::convert::Into +pub type aya_bpf::maps::hash_map::HashMap::Error = core::convert::Infallible +pub fn aya_bpf::maps::hash_map::HashMap::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::maps::hash_map::HashMap where U: core::convert::TryFrom +pub type aya_bpf::maps::hash_map::HashMap::Error = >::Error +pub fn aya_bpf::maps::hash_map::HashMap::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::maps::hash_map::HashMap where T: 'static + core::marker::Sized +pub fn aya_bpf::maps::hash_map::HashMap::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::maps::hash_map::HashMap where T: core::marker::Sized +pub fn aya_bpf::maps::hash_map::HashMap::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::maps::hash_map::HashMap where T: core::marker::Sized +pub fn aya_bpf::maps::hash_map::HashMap::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::maps::hash_map::HashMap +pub fn aya_bpf::maps::hash_map::HashMap::from(t: T) -> T +#[repr(transparent)] pub struct aya_bpf::maps::LpmTrie +impl aya_bpf::maps::lpm_trie::LpmTrie +pub fn aya_bpf::maps::lpm_trie::LpmTrie::get(&self, key: &aya_bpf::maps::lpm_trie::Key) -> core::option::Option<&V> +pub fn aya_bpf::maps::lpm_trie::LpmTrie::insert(&self, key: &aya_bpf::maps::lpm_trie::Key, value: &V, flags: u64) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub const fn aya_bpf::maps::lpm_trie::LpmTrie::pinned(max_entries: u32, flags: u32) -> aya_bpf::maps::lpm_trie::LpmTrie +pub fn aya_bpf::maps::lpm_trie::LpmTrie::remove(&self, key: &aya_bpf::maps::lpm_trie::Key) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub const fn aya_bpf::maps::lpm_trie::LpmTrie::with_max_entries(max_entries: u32, flags: u32) -> aya_bpf::maps::lpm_trie::LpmTrie +impl core::marker::Sync for aya_bpf::maps::lpm_trie::LpmTrie +impl core::marker::Send for aya_bpf::maps::lpm_trie::LpmTrie where K: core::marker::Send, V: core::marker::Send +impl core::marker::Unpin for aya_bpf::maps::lpm_trie::LpmTrie where K: core::marker::Unpin, V: core::marker::Unpin +impl !core::panic::unwind_safe::RefUnwindSafe for aya_bpf::maps::lpm_trie::LpmTrie +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::maps::lpm_trie::LpmTrie where K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya_bpf::maps::lpm_trie::LpmTrie where U: core::convert::From +pub fn aya_bpf::maps::lpm_trie::LpmTrie::into(self) -> U +impl core::convert::TryFrom for aya_bpf::maps::lpm_trie::LpmTrie where U: core::convert::Into +pub type aya_bpf::maps::lpm_trie::LpmTrie::Error = core::convert::Infallible +pub fn aya_bpf::maps::lpm_trie::LpmTrie::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::maps::lpm_trie::LpmTrie where U: core::convert::TryFrom +pub type aya_bpf::maps::lpm_trie::LpmTrie::Error = >::Error +pub fn aya_bpf::maps::lpm_trie::LpmTrie::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::maps::lpm_trie::LpmTrie where T: 'static + core::marker::Sized +pub fn aya_bpf::maps::lpm_trie::LpmTrie::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::maps::lpm_trie::LpmTrie where T: core::marker::Sized +pub fn aya_bpf::maps::lpm_trie::LpmTrie::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::maps::lpm_trie::LpmTrie where T: core::marker::Sized +pub fn aya_bpf::maps::lpm_trie::LpmTrie::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::maps::lpm_trie::LpmTrie +pub fn aya_bpf::maps::lpm_trie::LpmTrie::from(t: T) -> T +#[repr(transparent)] pub struct aya_bpf::maps::LruHashMap +impl aya_bpf::maps::hash_map::LruHashMap +pub unsafe fn aya_bpf::maps::hash_map::LruHashMap::get(&self, key: &K) -> core::option::Option<&V> +pub fn aya_bpf::maps::hash_map::LruHashMap::get_ptr(&self, key: &K) -> core::option::Option<*const V> +pub fn aya_bpf::maps::hash_map::LruHashMap::get_ptr_mut(&self, key: &K) -> core::option::Option<*mut V> +pub fn aya_bpf::maps::hash_map::LruHashMap::insert(&self, key: &K, value: &V, flags: u64) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub const fn aya_bpf::maps::hash_map::LruHashMap::pinned(max_entries: u32, flags: u32) -> aya_bpf::maps::hash_map::LruHashMap +pub fn aya_bpf::maps::hash_map::LruHashMap::remove(&self, key: &K) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub const fn aya_bpf::maps::hash_map::LruHashMap::with_max_entries(max_entries: u32, flags: u32) -> aya_bpf::maps::hash_map::LruHashMap +impl core::marker::Sync for aya_bpf::maps::hash_map::LruHashMap +impl core::marker::Send for aya_bpf::maps::hash_map::LruHashMap where K: core::marker::Send, V: core::marker::Send +impl core::marker::Unpin for aya_bpf::maps::hash_map::LruHashMap where K: core::marker::Unpin, V: core::marker::Unpin +impl !core::panic::unwind_safe::RefUnwindSafe for aya_bpf::maps::hash_map::LruHashMap +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::maps::hash_map::LruHashMap where K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya_bpf::maps::hash_map::LruHashMap where U: core::convert::From +pub fn aya_bpf::maps::hash_map::LruHashMap::into(self) -> U +impl core::convert::TryFrom for aya_bpf::maps::hash_map::LruHashMap where U: core::convert::Into +pub type aya_bpf::maps::hash_map::LruHashMap::Error = core::convert::Infallible +pub fn aya_bpf::maps::hash_map::LruHashMap::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::maps::hash_map::LruHashMap where U: core::convert::TryFrom +pub type aya_bpf::maps::hash_map::LruHashMap::Error = >::Error +pub fn aya_bpf::maps::hash_map::LruHashMap::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::maps::hash_map::LruHashMap where T: 'static + core::marker::Sized +pub fn aya_bpf::maps::hash_map::LruHashMap::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::maps::hash_map::LruHashMap where T: core::marker::Sized +pub fn aya_bpf::maps::hash_map::LruHashMap::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::maps::hash_map::LruHashMap where T: core::marker::Sized +pub fn aya_bpf::maps::hash_map::LruHashMap::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::maps::hash_map::LruHashMap +pub fn aya_bpf::maps::hash_map::LruHashMap::from(t: T) -> T +#[repr(transparent)] pub struct aya_bpf::maps::LruPerCpuHashMap +impl aya_bpf::maps::hash_map::LruPerCpuHashMap +pub unsafe fn aya_bpf::maps::hash_map::LruPerCpuHashMap::get(&self, key: &K) -> core::option::Option<&V> +pub fn aya_bpf::maps::hash_map::LruPerCpuHashMap::get_ptr(&self, key: &K) -> core::option::Option<*const V> +pub fn aya_bpf::maps::hash_map::LruPerCpuHashMap::get_ptr_mut(&self, key: &K) -> core::option::Option<*mut V> +pub fn aya_bpf::maps::hash_map::LruPerCpuHashMap::insert(&self, key: &K, value: &V, flags: u64) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub const fn aya_bpf::maps::hash_map::LruPerCpuHashMap::pinned(max_entries: u32, flags: u32) -> aya_bpf::maps::hash_map::LruPerCpuHashMap +pub fn aya_bpf::maps::hash_map::LruPerCpuHashMap::remove(&self, key: &K) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub const fn aya_bpf::maps::hash_map::LruPerCpuHashMap::with_max_entries(max_entries: u32, flags: u32) -> aya_bpf::maps::hash_map::LruPerCpuHashMap +impl core::marker::Sync for aya_bpf::maps::hash_map::LruPerCpuHashMap +impl core::marker::Send for aya_bpf::maps::hash_map::LruPerCpuHashMap where K: core::marker::Send, V: core::marker::Send +impl core::marker::Unpin for aya_bpf::maps::hash_map::LruPerCpuHashMap where K: core::marker::Unpin, V: core::marker::Unpin +impl !core::panic::unwind_safe::RefUnwindSafe for aya_bpf::maps::hash_map::LruPerCpuHashMap +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::maps::hash_map::LruPerCpuHashMap where K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya_bpf::maps::hash_map::LruPerCpuHashMap where U: core::convert::From +pub fn aya_bpf::maps::hash_map::LruPerCpuHashMap::into(self) -> U +impl core::convert::TryFrom for aya_bpf::maps::hash_map::LruPerCpuHashMap where U: core::convert::Into +pub type aya_bpf::maps::hash_map::LruPerCpuHashMap::Error = core::convert::Infallible +pub fn aya_bpf::maps::hash_map::LruPerCpuHashMap::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::maps::hash_map::LruPerCpuHashMap where U: core::convert::TryFrom +pub type aya_bpf::maps::hash_map::LruPerCpuHashMap::Error = >::Error +pub fn aya_bpf::maps::hash_map::LruPerCpuHashMap::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::maps::hash_map::LruPerCpuHashMap where T: 'static + core::marker::Sized +pub fn aya_bpf::maps::hash_map::LruPerCpuHashMap::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::maps::hash_map::LruPerCpuHashMap where T: core::marker::Sized +pub fn aya_bpf::maps::hash_map::LruPerCpuHashMap::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::maps::hash_map::LruPerCpuHashMap where T: core::marker::Sized +pub fn aya_bpf::maps::hash_map::LruPerCpuHashMap::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::maps::hash_map::LruPerCpuHashMap +pub fn aya_bpf::maps::hash_map::LruPerCpuHashMap::from(t: T) -> T +#[repr(transparent)] pub struct aya_bpf::maps::PerCpuArray +impl aya_bpf::maps::per_cpu_array::PerCpuArray +pub fn aya_bpf::maps::per_cpu_array::PerCpuArray::get(&self, index: u32) -> core::option::Option<&T> +pub fn aya_bpf::maps::per_cpu_array::PerCpuArray::get_ptr(&self, index: u32) -> core::option::Option<*const T> +pub fn aya_bpf::maps::per_cpu_array::PerCpuArray::get_ptr_mut(&self, index: u32) -> core::option::Option<*mut T> +pub const fn aya_bpf::maps::per_cpu_array::PerCpuArray::pinned(max_entries: u32, flags: u32) -> aya_bpf::maps::per_cpu_array::PerCpuArray +pub const fn aya_bpf::maps::per_cpu_array::PerCpuArray::with_max_entries(max_entries: u32, flags: u32) -> aya_bpf::maps::per_cpu_array::PerCpuArray +impl core::marker::Sync for aya_bpf::maps::per_cpu_array::PerCpuArray +impl core::marker::Send for aya_bpf::maps::per_cpu_array::PerCpuArray where T: core::marker::Send +impl core::marker::Unpin for aya_bpf::maps::per_cpu_array::PerCpuArray where T: core::marker::Unpin +impl !core::panic::unwind_safe::RefUnwindSafe for aya_bpf::maps::per_cpu_array::PerCpuArray +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::maps::per_cpu_array::PerCpuArray where T: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya_bpf::maps::per_cpu_array::PerCpuArray where U: core::convert::From +pub fn aya_bpf::maps::per_cpu_array::PerCpuArray::into(self) -> U +impl core::convert::TryFrom for aya_bpf::maps::per_cpu_array::PerCpuArray where U: core::convert::Into +pub type aya_bpf::maps::per_cpu_array::PerCpuArray::Error = core::convert::Infallible +pub fn aya_bpf::maps::per_cpu_array::PerCpuArray::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::maps::per_cpu_array::PerCpuArray where U: core::convert::TryFrom +pub type aya_bpf::maps::per_cpu_array::PerCpuArray::Error = >::Error +pub fn aya_bpf::maps::per_cpu_array::PerCpuArray::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::maps::per_cpu_array::PerCpuArray where T: 'static + core::marker::Sized +pub fn aya_bpf::maps::per_cpu_array::PerCpuArray::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::maps::per_cpu_array::PerCpuArray where T: core::marker::Sized +pub fn aya_bpf::maps::per_cpu_array::PerCpuArray::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::maps::per_cpu_array::PerCpuArray where T: core::marker::Sized +pub fn aya_bpf::maps::per_cpu_array::PerCpuArray::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::maps::per_cpu_array::PerCpuArray +pub fn aya_bpf::maps::per_cpu_array::PerCpuArray::from(t: T) -> T +#[repr(transparent)] pub struct aya_bpf::maps::PerCpuHashMap +impl aya_bpf::maps::hash_map::PerCpuHashMap +pub unsafe fn aya_bpf::maps::hash_map::PerCpuHashMap::get(&self, key: &K) -> core::option::Option<&V> +pub fn aya_bpf::maps::hash_map::PerCpuHashMap::get_ptr(&self, key: &K) -> core::option::Option<*const V> +pub fn aya_bpf::maps::hash_map::PerCpuHashMap::get_ptr_mut(&self, key: &K) -> core::option::Option<*mut V> +pub fn aya_bpf::maps::hash_map::PerCpuHashMap::insert(&self, key: &K, value: &V, flags: u64) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub const fn aya_bpf::maps::hash_map::PerCpuHashMap::pinned(max_entries: u32, flags: u32) -> aya_bpf::maps::hash_map::PerCpuHashMap +pub fn aya_bpf::maps::hash_map::PerCpuHashMap::remove(&self, key: &K) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub const fn aya_bpf::maps::hash_map::PerCpuHashMap::with_max_entries(max_entries: u32, flags: u32) -> aya_bpf::maps::hash_map::PerCpuHashMap +impl core::marker::Sync for aya_bpf::maps::hash_map::PerCpuHashMap +impl core::marker::Send for aya_bpf::maps::hash_map::PerCpuHashMap where K: core::marker::Send, V: core::marker::Send +impl core::marker::Unpin for aya_bpf::maps::hash_map::PerCpuHashMap where K: core::marker::Unpin, V: core::marker::Unpin +impl !core::panic::unwind_safe::RefUnwindSafe for aya_bpf::maps::hash_map::PerCpuHashMap +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::maps::hash_map::PerCpuHashMap where K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya_bpf::maps::hash_map::PerCpuHashMap where U: core::convert::From +pub fn aya_bpf::maps::hash_map::PerCpuHashMap::into(self) -> U +impl core::convert::TryFrom for aya_bpf::maps::hash_map::PerCpuHashMap where U: core::convert::Into +pub type aya_bpf::maps::hash_map::PerCpuHashMap::Error = core::convert::Infallible +pub fn aya_bpf::maps::hash_map::PerCpuHashMap::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::maps::hash_map::PerCpuHashMap where U: core::convert::TryFrom +pub type aya_bpf::maps::hash_map::PerCpuHashMap::Error = >::Error +pub fn aya_bpf::maps::hash_map::PerCpuHashMap::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::maps::hash_map::PerCpuHashMap where T: 'static + core::marker::Sized +pub fn aya_bpf::maps::hash_map::PerCpuHashMap::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::maps::hash_map::PerCpuHashMap where T: core::marker::Sized +pub fn aya_bpf::maps::hash_map::PerCpuHashMap::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::maps::hash_map::PerCpuHashMap where T: core::marker::Sized +pub fn aya_bpf::maps::hash_map::PerCpuHashMap::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::maps::hash_map::PerCpuHashMap +pub fn aya_bpf::maps::hash_map::PerCpuHashMap::from(t: T) -> T +#[repr(transparent)] pub struct aya_bpf::maps::PerfEventArray +impl aya_bpf::maps::PerfEventArray +pub const fn aya_bpf::maps::PerfEventArray::new(flags: u32) -> aya_bpf::maps::PerfEventArray +pub fn aya_bpf::maps::PerfEventArray::output(&self, ctx: &C, data: &T, flags: u32) +pub fn aya_bpf::maps::PerfEventArray::output_at_index(&self, ctx: &C, index: u32, data: &T, flags: u32) +pub const fn aya_bpf::maps::PerfEventArray::pinned(max_entries: u32, flags: u32) -> aya_bpf::maps::PerfEventArray +pub const fn aya_bpf::maps::PerfEventArray::with_max_entries(max_entries: u32, flags: u32) -> aya_bpf::maps::PerfEventArray +impl core::marker::Sync for aya_bpf::maps::PerfEventArray +impl core::marker::Send for aya_bpf::maps::PerfEventArray where T: core::marker::Send +impl core::marker::Unpin for aya_bpf::maps::PerfEventArray where T: core::marker::Unpin +impl !core::panic::unwind_safe::RefUnwindSafe for aya_bpf::maps::PerfEventArray +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::maps::PerfEventArray where T: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya_bpf::maps::PerfEventArray where U: core::convert::From +pub fn aya_bpf::maps::PerfEventArray::into(self) -> U +impl core::convert::TryFrom for aya_bpf::maps::PerfEventArray where U: core::convert::Into +pub type aya_bpf::maps::PerfEventArray::Error = core::convert::Infallible +pub fn aya_bpf::maps::PerfEventArray::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::maps::PerfEventArray where U: core::convert::TryFrom +pub type aya_bpf::maps::PerfEventArray::Error = >::Error +pub fn aya_bpf::maps::PerfEventArray::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::maps::PerfEventArray where T: 'static + core::marker::Sized +pub fn aya_bpf::maps::PerfEventArray::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::maps::PerfEventArray where T: core::marker::Sized +pub fn aya_bpf::maps::PerfEventArray::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::maps::PerfEventArray where T: core::marker::Sized +pub fn aya_bpf::maps::PerfEventArray::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::maps::PerfEventArray +pub fn aya_bpf::maps::PerfEventArray::from(t: T) -> T +#[repr(transparent)] pub struct aya_bpf::maps::PerfEventByteArray +impl aya_bpf::maps::PerfEventByteArray +pub const fn aya_bpf::maps::PerfEventByteArray::new(flags: u32) -> aya_bpf::maps::PerfEventByteArray +pub fn aya_bpf::maps::PerfEventByteArray::output(&self, ctx: &C, data: &[u8], flags: u32) +pub fn aya_bpf::maps::PerfEventByteArray::output_at_index(&self, ctx: &C, index: u32, data: &[u8], flags: u32) +pub const fn aya_bpf::maps::PerfEventByteArray::pinned(max_entries: u32, flags: u32) -> aya_bpf::maps::PerfEventByteArray +pub const fn aya_bpf::maps::PerfEventByteArray::with_max_entries(max_entries: u32, flags: u32) -> aya_bpf::maps::PerfEventByteArray +impl core::marker::Sync for aya_bpf::maps::PerfEventByteArray +impl core::marker::Send for aya_bpf::maps::PerfEventByteArray +impl core::marker::Unpin for aya_bpf::maps::PerfEventByteArray +impl !core::panic::unwind_safe::RefUnwindSafe for aya_bpf::maps::PerfEventByteArray +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::maps::PerfEventByteArray +impl core::convert::Into for aya_bpf::maps::PerfEventByteArray where U: core::convert::From +pub fn aya_bpf::maps::PerfEventByteArray::into(self) -> U +impl core::convert::TryFrom for aya_bpf::maps::PerfEventByteArray where U: core::convert::Into +pub type aya_bpf::maps::PerfEventByteArray::Error = core::convert::Infallible +pub fn aya_bpf::maps::PerfEventByteArray::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::maps::PerfEventByteArray where U: core::convert::TryFrom +pub type aya_bpf::maps::PerfEventByteArray::Error = >::Error +pub fn aya_bpf::maps::PerfEventByteArray::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::maps::PerfEventByteArray where T: 'static + core::marker::Sized +pub fn aya_bpf::maps::PerfEventByteArray::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::maps::PerfEventByteArray where T: core::marker::Sized +pub fn aya_bpf::maps::PerfEventByteArray::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::maps::PerfEventByteArray where T: core::marker::Sized +pub fn aya_bpf::maps::PerfEventByteArray::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::maps::PerfEventByteArray +pub fn aya_bpf::maps::PerfEventByteArray::from(t: T) -> T +#[repr(transparent)] pub struct aya_bpf::maps::ProgramArray +impl aya_bpf::maps::program_array::ProgramArray +pub const fn aya_bpf::maps::program_array::ProgramArray::pinned(max_entries: u32, flags: u32) -> aya_bpf::maps::program_array::ProgramArray +pub unsafe fn aya_bpf::maps::program_array::ProgramArray::tail_call(&self, ctx: &C, index: u32) -> core::result::Result +pub const fn aya_bpf::maps::program_array::ProgramArray::with_max_entries(max_entries: u32, flags: u32) -> aya_bpf::maps::program_array::ProgramArray +impl core::marker::Sync for aya_bpf::maps::program_array::ProgramArray +impl core::marker::Send for aya_bpf::maps::program_array::ProgramArray +impl core::marker::Unpin for aya_bpf::maps::program_array::ProgramArray +impl !core::panic::unwind_safe::RefUnwindSafe for aya_bpf::maps::program_array::ProgramArray +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::maps::program_array::ProgramArray +impl core::convert::Into for aya_bpf::maps::program_array::ProgramArray where U: core::convert::From +pub fn aya_bpf::maps::program_array::ProgramArray::into(self) -> U +impl core::convert::TryFrom for aya_bpf::maps::program_array::ProgramArray where U: core::convert::Into +pub type aya_bpf::maps::program_array::ProgramArray::Error = core::convert::Infallible +pub fn aya_bpf::maps::program_array::ProgramArray::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::maps::program_array::ProgramArray where U: core::convert::TryFrom +pub type aya_bpf::maps::program_array::ProgramArray::Error = >::Error +pub fn aya_bpf::maps::program_array::ProgramArray::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::maps::program_array::ProgramArray where T: 'static + core::marker::Sized +pub fn aya_bpf::maps::program_array::ProgramArray::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::maps::program_array::ProgramArray where T: core::marker::Sized +pub fn aya_bpf::maps::program_array::ProgramArray::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::maps::program_array::ProgramArray where T: core::marker::Sized +pub fn aya_bpf::maps::program_array::ProgramArray::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::maps::program_array::ProgramArray +pub fn aya_bpf::maps::program_array::ProgramArray::from(t: T) -> T +#[repr(transparent)] pub struct aya_bpf::maps::Queue +impl aya_bpf::maps::queue::Queue +pub const fn aya_bpf::maps::queue::Queue::pinned(max_entries: u32, flags: u32) -> aya_bpf::maps::queue::Queue +pub fn aya_bpf::maps::queue::Queue::pop(&self) -> core::option::Option +pub fn aya_bpf::maps::queue::Queue::push(&self, value: &T, flags: u64) -> core::result::Result<(), i64> +pub const fn aya_bpf::maps::queue::Queue::with_max_entries(max_entries: u32, flags: u32) -> aya_bpf::maps::queue::Queue +impl core::marker::Sync for aya_bpf::maps::queue::Queue +impl core::marker::Send for aya_bpf::maps::queue::Queue where T: core::marker::Send +impl core::marker::Unpin for aya_bpf::maps::queue::Queue where T: core::marker::Unpin +impl !core::panic::unwind_safe::RefUnwindSafe for aya_bpf::maps::queue::Queue +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::maps::queue::Queue where T: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya_bpf::maps::queue::Queue where U: core::convert::From +pub fn aya_bpf::maps::queue::Queue::into(self) -> U +impl core::convert::TryFrom for aya_bpf::maps::queue::Queue where U: core::convert::Into +pub type aya_bpf::maps::queue::Queue::Error = core::convert::Infallible +pub fn aya_bpf::maps::queue::Queue::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::maps::queue::Queue where U: core::convert::TryFrom +pub type aya_bpf::maps::queue::Queue::Error = >::Error +pub fn aya_bpf::maps::queue::Queue::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::maps::queue::Queue where T: 'static + core::marker::Sized +pub fn aya_bpf::maps::queue::Queue::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::maps::queue::Queue where T: core::marker::Sized +pub fn aya_bpf::maps::queue::Queue::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::maps::queue::Queue where T: core::marker::Sized +pub fn aya_bpf::maps::queue::Queue::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::maps::queue::Queue +pub fn aya_bpf::maps::queue::Queue::from(t: T) -> T +#[repr(transparent)] pub struct aya_bpf::maps::SockHash +impl aya_bpf::maps::sock_hash::SockHash +pub const fn aya_bpf::maps::sock_hash::SockHash::pinned(max_entries: u32, flags: u32) -> aya_bpf::maps::sock_hash::SockHash +pub fn aya_bpf::maps::sock_hash::SockHash::redirect_msg(&self, ctx: &aya_bpf::programs::sk_msg::SkMsgContext, key: &mut K, flags: u64) -> i64 +pub fn aya_bpf::maps::sock_hash::SockHash::redirect_sk_lookup(&mut self, ctx: &aya_bpf::programs::sk_lookup::SkLookupContext, key: impl core::borrow::Borrow, flags: u64) -> core::result::Result<(), u32> +pub fn aya_bpf::maps::sock_hash::SockHash::redirect_skb(&self, ctx: &aya_bpf::programs::sk_buff::SkBuffContext, key: &mut K, flags: u64) -> i64 +pub fn aya_bpf::maps::sock_hash::SockHash::update(&self, key: &mut K, sk_ops: &mut aya_bpf_bindings::x86_64::bindings::bpf_sock_ops, flags: u64) -> core::result::Result<(), i64> +pub const fn aya_bpf::maps::sock_hash::SockHash::with_max_entries(max_entries: u32, flags: u32) -> aya_bpf::maps::sock_hash::SockHash +impl core::marker::Sync for aya_bpf::maps::sock_hash::SockHash +impl core::marker::Send for aya_bpf::maps::sock_hash::SockHash where K: core::marker::Send +impl core::marker::Unpin for aya_bpf::maps::sock_hash::SockHash where K: core::marker::Unpin +impl !core::panic::unwind_safe::RefUnwindSafe for aya_bpf::maps::sock_hash::SockHash +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::maps::sock_hash::SockHash where K: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya_bpf::maps::sock_hash::SockHash where U: core::convert::From +pub fn aya_bpf::maps::sock_hash::SockHash::into(self) -> U +impl core::convert::TryFrom for aya_bpf::maps::sock_hash::SockHash where U: core::convert::Into +pub type aya_bpf::maps::sock_hash::SockHash::Error = core::convert::Infallible +pub fn aya_bpf::maps::sock_hash::SockHash::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::maps::sock_hash::SockHash where U: core::convert::TryFrom +pub type aya_bpf::maps::sock_hash::SockHash::Error = >::Error +pub fn aya_bpf::maps::sock_hash::SockHash::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::maps::sock_hash::SockHash where T: 'static + core::marker::Sized +pub fn aya_bpf::maps::sock_hash::SockHash::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::maps::sock_hash::SockHash where T: core::marker::Sized +pub fn aya_bpf::maps::sock_hash::SockHash::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::maps::sock_hash::SockHash where T: core::marker::Sized +pub fn aya_bpf::maps::sock_hash::SockHash::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::maps::sock_hash::SockHash +pub fn aya_bpf::maps::sock_hash::SockHash::from(t: T) -> T +#[repr(transparent)] pub struct aya_bpf::maps::SockMap +impl aya_bpf::maps::sock_map::SockMap +pub const fn aya_bpf::maps::sock_map::SockMap::pinned(max_entries: u32, flags: u32) -> aya_bpf::maps::sock_map::SockMap +pub unsafe fn aya_bpf::maps::sock_map::SockMap::redirect_msg(&self, ctx: &aya_bpf::programs::sk_msg::SkMsgContext, index: u32, flags: u64) -> i64 +pub fn aya_bpf::maps::sock_map::SockMap::redirect_sk_lookup(&mut self, ctx: &aya_bpf::programs::sk_lookup::SkLookupContext, index: u32, flags: u64) -> core::result::Result<(), u32> +pub unsafe fn aya_bpf::maps::sock_map::SockMap::redirect_skb(&self, ctx: &aya_bpf::programs::sk_buff::SkBuffContext, index: u32, flags: u64) -> i64 +pub unsafe fn aya_bpf::maps::sock_map::SockMap::update(&self, index: u32, sk_ops: *mut aya_bpf_bindings::x86_64::bindings::bpf_sock_ops, flags: u64) -> core::result::Result<(), i64> +pub const fn aya_bpf::maps::sock_map::SockMap::with_max_entries(max_entries: u32, flags: u32) -> aya_bpf::maps::sock_map::SockMap +impl core::marker::Sync for aya_bpf::maps::sock_map::SockMap +impl core::marker::Send for aya_bpf::maps::sock_map::SockMap +impl core::marker::Unpin for aya_bpf::maps::sock_map::SockMap +impl !core::panic::unwind_safe::RefUnwindSafe for aya_bpf::maps::sock_map::SockMap +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::maps::sock_map::SockMap +impl core::convert::Into for aya_bpf::maps::sock_map::SockMap where U: core::convert::From +pub fn aya_bpf::maps::sock_map::SockMap::into(self) -> U +impl core::convert::TryFrom for aya_bpf::maps::sock_map::SockMap where U: core::convert::Into +pub type aya_bpf::maps::sock_map::SockMap::Error = core::convert::Infallible +pub fn aya_bpf::maps::sock_map::SockMap::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::maps::sock_map::SockMap where U: core::convert::TryFrom +pub type aya_bpf::maps::sock_map::SockMap::Error = >::Error +pub fn aya_bpf::maps::sock_map::SockMap::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::maps::sock_map::SockMap where T: 'static + core::marker::Sized +pub fn aya_bpf::maps::sock_map::SockMap::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::maps::sock_map::SockMap where T: core::marker::Sized +pub fn aya_bpf::maps::sock_map::SockMap::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::maps::sock_map::SockMap where T: core::marker::Sized +pub fn aya_bpf::maps::sock_map::SockMap::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::maps::sock_map::SockMap +pub fn aya_bpf::maps::sock_map::SockMap::from(t: T) -> T +#[repr(transparent)] pub struct aya_bpf::maps::Stack +impl aya_bpf::maps::stack::Stack +pub const fn aya_bpf::maps::stack::Stack::pinned(max_entries: u32, flags: u32) -> aya_bpf::maps::stack::Stack +pub fn aya_bpf::maps::stack::Stack::pop(&mut self) -> core::option::Option +pub fn aya_bpf::maps::stack::Stack::push(&mut self, value: &T, flags: u64) -> core::result::Result<(), i64> +pub const fn aya_bpf::maps::stack::Stack::with_max_entries(max_entries: u32, flags: u32) -> aya_bpf::maps::stack::Stack +impl core::marker::Send for aya_bpf::maps::stack::Stack where T: core::marker::Send +impl core::marker::Sync for aya_bpf::maps::stack::Stack where T: core::marker::Sync +impl core::marker::Unpin for aya_bpf::maps::stack::Stack where T: core::marker::Unpin +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::maps::stack::Stack where T: core::panic::unwind_safe::RefUnwindSafe +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::maps::stack::Stack where T: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya_bpf::maps::stack::Stack where U: core::convert::From +pub fn aya_bpf::maps::stack::Stack::into(self) -> U +impl core::convert::TryFrom for aya_bpf::maps::stack::Stack where U: core::convert::Into +pub type aya_bpf::maps::stack::Stack::Error = core::convert::Infallible +pub fn aya_bpf::maps::stack::Stack::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::maps::stack::Stack where U: core::convert::TryFrom +pub type aya_bpf::maps::stack::Stack::Error = >::Error +pub fn aya_bpf::maps::stack::Stack::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::maps::stack::Stack where T: 'static + core::marker::Sized +pub fn aya_bpf::maps::stack::Stack::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::maps::stack::Stack where T: core::marker::Sized +pub fn aya_bpf::maps::stack::Stack::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::maps::stack::Stack where T: core::marker::Sized +pub fn aya_bpf::maps::stack::Stack::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::maps::stack::Stack +pub fn aya_bpf::maps::stack::Stack::from(t: T) -> T +#[repr(transparent)] pub struct aya_bpf::maps::StackTrace +impl aya_bpf::maps::stack_trace::StackTrace +pub unsafe fn aya_bpf::maps::stack_trace::StackTrace::get_stackid(&self, ctx: &C, flags: u64) -> core::result::Result +pub const fn aya_bpf::maps::stack_trace::StackTrace::pinned(max_entries: u32, flags: u32) -> aya_bpf::maps::stack_trace::StackTrace +pub const fn aya_bpf::maps::stack_trace::StackTrace::with_max_entries(max_entries: u32, flags: u32) -> aya_bpf::maps::stack_trace::StackTrace +impl core::marker::Sync for aya_bpf::maps::stack_trace::StackTrace +impl core::marker::Send for aya_bpf::maps::stack_trace::StackTrace +impl core::marker::Unpin for aya_bpf::maps::stack_trace::StackTrace +impl !core::panic::unwind_safe::RefUnwindSafe for aya_bpf::maps::stack_trace::StackTrace +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::maps::stack_trace::StackTrace +impl core::convert::Into for aya_bpf::maps::stack_trace::StackTrace where U: core::convert::From +pub fn aya_bpf::maps::stack_trace::StackTrace::into(self) -> U +impl core::convert::TryFrom for aya_bpf::maps::stack_trace::StackTrace where U: core::convert::Into +pub type aya_bpf::maps::stack_trace::StackTrace::Error = core::convert::Infallible +pub fn aya_bpf::maps::stack_trace::StackTrace::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::maps::stack_trace::StackTrace where U: core::convert::TryFrom +pub type aya_bpf::maps::stack_trace::StackTrace::Error = >::Error +pub fn aya_bpf::maps::stack_trace::StackTrace::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::maps::stack_trace::StackTrace where T: 'static + core::marker::Sized +pub fn aya_bpf::maps::stack_trace::StackTrace::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::maps::stack_trace::StackTrace where T: core::marker::Sized +pub fn aya_bpf::maps::stack_trace::StackTrace::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::maps::stack_trace::StackTrace where T: core::marker::Sized +pub fn aya_bpf::maps::stack_trace::StackTrace::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::maps::stack_trace::StackTrace +pub fn aya_bpf::maps::stack_trace::StackTrace::from(t: T) -> T +pub mod aya_bpf::programs +pub mod aya_bpf::programs::device +pub struct aya_bpf::programs::device::DeviceContext +pub aya_bpf::programs::device::DeviceContext::device: *mut aya_bpf_bindings::x86_64::bindings::bpf_cgroup_dev_ctx +impl aya_bpf::programs::device::DeviceContext +pub fn aya_bpf::programs::device::DeviceContext::new(device: *mut aya_bpf_bindings::x86_64::bindings::bpf_cgroup_dev_ctx) -> aya_bpf::programs::device::DeviceContext +impl aya_bpf::BpfContext for aya_bpf::programs::device::DeviceContext +pub fn aya_bpf::programs::device::DeviceContext::as_ptr(&self) -> *mut core::ffi::c_void +impl !core::marker::Send for aya_bpf::programs::device::DeviceContext +impl !core::marker::Sync for aya_bpf::programs::device::DeviceContext +impl core::marker::Unpin for aya_bpf::programs::device::DeviceContext +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::programs::device::DeviceContext +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::programs::device::DeviceContext +impl core::convert::Into for aya_bpf::programs::device::DeviceContext where U: core::convert::From +pub fn aya_bpf::programs::device::DeviceContext::into(self) -> U +impl core::convert::TryFrom for aya_bpf::programs::device::DeviceContext where U: core::convert::Into +pub type aya_bpf::programs::device::DeviceContext::Error = core::convert::Infallible +pub fn aya_bpf::programs::device::DeviceContext::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::programs::device::DeviceContext where U: core::convert::TryFrom +pub type aya_bpf::programs::device::DeviceContext::Error = >::Error +pub fn aya_bpf::programs::device::DeviceContext::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::programs::device::DeviceContext where T: 'static + core::marker::Sized +pub fn aya_bpf::programs::device::DeviceContext::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::programs::device::DeviceContext where T: core::marker::Sized +pub fn aya_bpf::programs::device::DeviceContext::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::programs::device::DeviceContext where T: core::marker::Sized +pub fn aya_bpf::programs::device::DeviceContext::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::programs::device::DeviceContext +pub fn aya_bpf::programs::device::DeviceContext::from(t: T) -> T +pub mod aya_bpf::programs::fentry +pub struct aya_bpf::programs::fentry::FEntryContext +impl aya_bpf::programs::fentry::FEntryContext +pub unsafe fn aya_bpf::programs::fentry::FEntryContext::arg(&self, n: usize) -> T +pub fn aya_bpf::programs::fentry::FEntryContext::new(ctx: *mut core::ffi::c_void) -> aya_bpf::programs::fentry::FEntryContext +impl aya_bpf::BpfContext for aya_bpf::programs::fentry::FEntryContext +pub fn aya_bpf::programs::fentry::FEntryContext::as_ptr(&self) -> *mut core::ffi::c_void +impl !core::marker::Send for aya_bpf::programs::fentry::FEntryContext +impl !core::marker::Sync for aya_bpf::programs::fentry::FEntryContext +impl core::marker::Unpin for aya_bpf::programs::fentry::FEntryContext +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::programs::fentry::FEntryContext +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::programs::fentry::FEntryContext +impl core::convert::Into for aya_bpf::programs::fentry::FEntryContext where U: core::convert::From +pub fn aya_bpf::programs::fentry::FEntryContext::into(self) -> U +impl core::convert::TryFrom for aya_bpf::programs::fentry::FEntryContext where U: core::convert::Into +pub type aya_bpf::programs::fentry::FEntryContext::Error = core::convert::Infallible +pub fn aya_bpf::programs::fentry::FEntryContext::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::programs::fentry::FEntryContext where U: core::convert::TryFrom +pub type aya_bpf::programs::fentry::FEntryContext::Error = >::Error +pub fn aya_bpf::programs::fentry::FEntryContext::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::programs::fentry::FEntryContext where T: 'static + core::marker::Sized +pub fn aya_bpf::programs::fentry::FEntryContext::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::programs::fentry::FEntryContext where T: core::marker::Sized +pub fn aya_bpf::programs::fentry::FEntryContext::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::programs::fentry::FEntryContext where T: core::marker::Sized +pub fn aya_bpf::programs::fentry::FEntryContext::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::programs::fentry::FEntryContext +pub fn aya_bpf::programs::fentry::FEntryContext::from(t: T) -> T +pub mod aya_bpf::programs::fexit +pub struct aya_bpf::programs::fexit::FExitContext +impl aya_bpf::programs::fexit::FExitContext +pub unsafe fn aya_bpf::programs::fexit::FExitContext::arg(&self, n: usize) -> T +pub fn aya_bpf::programs::fexit::FExitContext::new(ctx: *mut core::ffi::c_void) -> aya_bpf::programs::fexit::FExitContext +impl aya_bpf::BpfContext for aya_bpf::programs::fexit::FExitContext +pub fn aya_bpf::programs::fexit::FExitContext::as_ptr(&self) -> *mut core::ffi::c_void +impl !core::marker::Send for aya_bpf::programs::fexit::FExitContext +impl !core::marker::Sync for aya_bpf::programs::fexit::FExitContext +impl core::marker::Unpin for aya_bpf::programs::fexit::FExitContext +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::programs::fexit::FExitContext +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::programs::fexit::FExitContext +impl core::convert::Into for aya_bpf::programs::fexit::FExitContext where U: core::convert::From +pub fn aya_bpf::programs::fexit::FExitContext::into(self) -> U +impl core::convert::TryFrom for aya_bpf::programs::fexit::FExitContext where U: core::convert::Into +pub type aya_bpf::programs::fexit::FExitContext::Error = core::convert::Infallible +pub fn aya_bpf::programs::fexit::FExitContext::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::programs::fexit::FExitContext where U: core::convert::TryFrom +pub type aya_bpf::programs::fexit::FExitContext::Error = >::Error +pub fn aya_bpf::programs::fexit::FExitContext::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::programs::fexit::FExitContext where T: 'static + core::marker::Sized +pub fn aya_bpf::programs::fexit::FExitContext::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::programs::fexit::FExitContext where T: core::marker::Sized +pub fn aya_bpf::programs::fexit::FExitContext::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::programs::fexit::FExitContext where T: core::marker::Sized +pub fn aya_bpf::programs::fexit::FExitContext::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::programs::fexit::FExitContext +pub fn aya_bpf::programs::fexit::FExitContext::from(t: T) -> T +pub mod aya_bpf::programs::lsm +pub struct aya_bpf::programs::lsm::LsmContext +impl aya_bpf::programs::lsm::LsmContext +pub unsafe fn aya_bpf::programs::lsm::LsmContext::arg(&self, n: usize) -> T +pub fn aya_bpf::programs::lsm::LsmContext::new(ctx: *mut core::ffi::c_void) -> aya_bpf::programs::lsm::LsmContext +impl aya_bpf::BpfContext for aya_bpf::programs::lsm::LsmContext +pub fn aya_bpf::programs::lsm::LsmContext::as_ptr(&self) -> *mut core::ffi::c_void +impl !core::marker::Send for aya_bpf::programs::lsm::LsmContext +impl !core::marker::Sync for aya_bpf::programs::lsm::LsmContext +impl core::marker::Unpin for aya_bpf::programs::lsm::LsmContext +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::programs::lsm::LsmContext +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::programs::lsm::LsmContext +impl core::convert::Into for aya_bpf::programs::lsm::LsmContext where U: core::convert::From +pub fn aya_bpf::programs::lsm::LsmContext::into(self) -> U +impl core::convert::TryFrom for aya_bpf::programs::lsm::LsmContext where U: core::convert::Into +pub type aya_bpf::programs::lsm::LsmContext::Error = core::convert::Infallible +pub fn aya_bpf::programs::lsm::LsmContext::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::programs::lsm::LsmContext where U: core::convert::TryFrom +pub type aya_bpf::programs::lsm::LsmContext::Error = >::Error +pub fn aya_bpf::programs::lsm::LsmContext::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::programs::lsm::LsmContext where T: 'static + core::marker::Sized +pub fn aya_bpf::programs::lsm::LsmContext::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::programs::lsm::LsmContext where T: core::marker::Sized +pub fn aya_bpf::programs::lsm::LsmContext::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::programs::lsm::LsmContext where T: core::marker::Sized +pub fn aya_bpf::programs::lsm::LsmContext::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::programs::lsm::LsmContext +pub fn aya_bpf::programs::lsm::LsmContext::from(t: T) -> T +pub mod aya_bpf::programs::perf_event +pub struct aya_bpf::programs::perf_event::PerfEventContext +impl aya_bpf::programs::perf_event::PerfEventContext +pub fn aya_bpf::programs::perf_event::PerfEventContext::new(ctx: *mut core::ffi::c_void) -> aya_bpf::programs::perf_event::PerfEventContext +impl aya_bpf::BpfContext for aya_bpf::programs::perf_event::PerfEventContext +pub fn aya_bpf::programs::perf_event::PerfEventContext::as_ptr(&self) -> *mut core::ffi::c_void +impl !core::marker::Send for aya_bpf::programs::perf_event::PerfEventContext +impl !core::marker::Sync for aya_bpf::programs::perf_event::PerfEventContext +impl core::marker::Unpin for aya_bpf::programs::perf_event::PerfEventContext +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::programs::perf_event::PerfEventContext +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::programs::perf_event::PerfEventContext +impl core::convert::Into for aya_bpf::programs::perf_event::PerfEventContext where U: core::convert::From +pub fn aya_bpf::programs::perf_event::PerfEventContext::into(self) -> U +impl core::convert::TryFrom for aya_bpf::programs::perf_event::PerfEventContext where U: core::convert::Into +pub type aya_bpf::programs::perf_event::PerfEventContext::Error = core::convert::Infallible +pub fn aya_bpf::programs::perf_event::PerfEventContext::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::programs::perf_event::PerfEventContext where U: core::convert::TryFrom +pub type aya_bpf::programs::perf_event::PerfEventContext::Error = >::Error +pub fn aya_bpf::programs::perf_event::PerfEventContext::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::programs::perf_event::PerfEventContext where T: 'static + core::marker::Sized +pub fn aya_bpf::programs::perf_event::PerfEventContext::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::programs::perf_event::PerfEventContext where T: core::marker::Sized +pub fn aya_bpf::programs::perf_event::PerfEventContext::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::programs::perf_event::PerfEventContext where T: core::marker::Sized +pub fn aya_bpf::programs::perf_event::PerfEventContext::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::programs::perf_event::PerfEventContext +pub fn aya_bpf::programs::perf_event::PerfEventContext::from(t: T) -> T +pub mod aya_bpf::programs::probe +pub struct aya_bpf::programs::probe::ProbeContext +pub aya_bpf::programs::probe::ProbeContext::regs: *mut aya_bpf_bindings::x86_64::bindings::pt_regs +impl aya_bpf::programs::probe::ProbeContext +pub fn aya_bpf::programs::probe::ProbeContext::arg(&self, n: usize) -> core::option::Option +pub fn aya_bpf::programs::probe::ProbeContext::new(ctx: *mut core::ffi::c_void) -> aya_bpf::programs::probe::ProbeContext +pub fn aya_bpf::programs::probe::ProbeContext::ret(&self) -> core::option::Option +impl aya_bpf::BpfContext for aya_bpf::programs::probe::ProbeContext +pub fn aya_bpf::programs::probe::ProbeContext::as_ptr(&self) -> *mut core::ffi::c_void +impl !core::marker::Send for aya_bpf::programs::probe::ProbeContext +impl !core::marker::Sync for aya_bpf::programs::probe::ProbeContext +impl core::marker::Unpin for aya_bpf::programs::probe::ProbeContext +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::programs::probe::ProbeContext +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::programs::probe::ProbeContext +impl core::convert::Into for aya_bpf::programs::probe::ProbeContext where U: core::convert::From +pub fn aya_bpf::programs::probe::ProbeContext::into(self) -> U +impl core::convert::TryFrom for aya_bpf::programs::probe::ProbeContext where U: core::convert::Into +pub type aya_bpf::programs::probe::ProbeContext::Error = core::convert::Infallible +pub fn aya_bpf::programs::probe::ProbeContext::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::programs::probe::ProbeContext where U: core::convert::TryFrom +pub type aya_bpf::programs::probe::ProbeContext::Error = >::Error +pub fn aya_bpf::programs::probe::ProbeContext::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::programs::probe::ProbeContext where T: 'static + core::marker::Sized +pub fn aya_bpf::programs::probe::ProbeContext::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::programs::probe::ProbeContext where T: core::marker::Sized +pub fn aya_bpf::programs::probe::ProbeContext::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::programs::probe::ProbeContext where T: core::marker::Sized +pub fn aya_bpf::programs::probe::ProbeContext::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::programs::probe::ProbeContext +pub fn aya_bpf::programs::probe::ProbeContext::from(t: T) -> T +pub mod aya_bpf::programs::raw_tracepoint +pub struct aya_bpf::programs::raw_tracepoint::RawTracePointContext +impl aya_bpf::programs::raw_tracepoint::RawTracePointContext +pub fn aya_bpf::programs::raw_tracepoint::RawTracePointContext::new(ctx: *mut core::ffi::c_void) -> aya_bpf::programs::raw_tracepoint::RawTracePointContext +impl aya_bpf::BpfContext for aya_bpf::programs::raw_tracepoint::RawTracePointContext +pub fn aya_bpf::programs::raw_tracepoint::RawTracePointContext::as_ptr(&self) -> *mut core::ffi::c_void +impl !core::marker::Send for aya_bpf::programs::raw_tracepoint::RawTracePointContext +impl !core::marker::Sync for aya_bpf::programs::raw_tracepoint::RawTracePointContext +impl core::marker::Unpin for aya_bpf::programs::raw_tracepoint::RawTracePointContext +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::programs::raw_tracepoint::RawTracePointContext +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::programs::raw_tracepoint::RawTracePointContext +impl core::convert::Into for aya_bpf::programs::raw_tracepoint::RawTracePointContext where U: core::convert::From +pub fn aya_bpf::programs::raw_tracepoint::RawTracePointContext::into(self) -> U +impl core::convert::TryFrom for aya_bpf::programs::raw_tracepoint::RawTracePointContext where U: core::convert::Into +pub type aya_bpf::programs::raw_tracepoint::RawTracePointContext::Error = core::convert::Infallible +pub fn aya_bpf::programs::raw_tracepoint::RawTracePointContext::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::programs::raw_tracepoint::RawTracePointContext where U: core::convert::TryFrom +pub type aya_bpf::programs::raw_tracepoint::RawTracePointContext::Error = >::Error +pub fn aya_bpf::programs::raw_tracepoint::RawTracePointContext::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::programs::raw_tracepoint::RawTracePointContext where T: 'static + core::marker::Sized +pub fn aya_bpf::programs::raw_tracepoint::RawTracePointContext::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::programs::raw_tracepoint::RawTracePointContext where T: core::marker::Sized +pub fn aya_bpf::programs::raw_tracepoint::RawTracePointContext::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::programs::raw_tracepoint::RawTracePointContext where T: core::marker::Sized +pub fn aya_bpf::programs::raw_tracepoint::RawTracePointContext::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::programs::raw_tracepoint::RawTracePointContext +pub fn aya_bpf::programs::raw_tracepoint::RawTracePointContext::from(t: T) -> T +pub mod aya_bpf::programs::sk_buff +pub struct aya_bpf::programs::sk_buff::SkBuff +pub aya_bpf::programs::sk_buff::SkBuff::skb: *mut aya_bpf_bindings::x86_64::bindings::__sk_buff +impl aya_bpf::programs::sk_buff::SkBuff +pub fn aya_bpf::programs::sk_buff::SkBuff::adjust_room(&self, len_diff: i32, mode: u32, flags: u64) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub fn aya_bpf::programs::sk_buff::SkBuff::cb(&self) -> &[u32] +pub fn aya_bpf::programs::sk_buff::SkBuff::cb_mut(&mut self) -> &mut [u32] +pub fn aya_bpf::programs::sk_buff::SkBuff::change_proto(&self, proto: u16, flags: u64) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub fn aya_bpf::programs::sk_buff::SkBuff::change_type(&self, ty: u32) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub fn aya_bpf::programs::sk_buff::SkBuff::clone_redirect(&self, if_index: u32, flags: u64) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub fn aya_bpf::programs::sk_buff::SkBuff::family(&self) -> u32 +pub fn aya_bpf::programs::sk_buff::SkBuff::get_socket_uid(&self) -> u32 +pub fn aya_bpf::programs::sk_buff::SkBuff::l3_csum_replace(&self, offset: usize, from: u64, to: u64, size: u64) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub fn aya_bpf::programs::sk_buff::SkBuff::l4_csum_replace(&self, offset: usize, from: u64, to: u64, flags: u64) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub fn aya_bpf::programs::sk_buff::SkBuff::len(&self) -> u32 +pub fn aya_bpf::programs::sk_buff::SkBuff::load(&self, offset: usize) -> core::result::Result +pub fn aya_bpf::programs::sk_buff::SkBuff::load_bytes(&self, offset: usize, dst: &mut [u8]) -> core::result::Result +pub fn aya_bpf::programs::sk_buff::SkBuff::local_ipv4(&self) -> u32 +pub fn aya_bpf::programs::sk_buff::SkBuff::local_ipv6(&self) -> &[u32; 4] +pub fn aya_bpf::programs::sk_buff::SkBuff::local_port(&self) -> u32 +pub fn aya_bpf::programs::sk_buff::SkBuff::new(skb: *mut aya_bpf_bindings::x86_64::bindings::__sk_buff) -> aya_bpf::programs::sk_buff::SkBuff +pub fn aya_bpf::programs::sk_buff::SkBuff::protocol(&self) -> u32 +pub fn aya_bpf::programs::sk_buff::SkBuff::pull_data(&self, len: u32) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub fn aya_bpf::programs::sk_buff::SkBuff::remote_ipv4(&self) -> u32 +pub fn aya_bpf::programs::sk_buff::SkBuff::remote_ipv6(&self) -> &[u32; 4] +pub fn aya_bpf::programs::sk_buff::SkBuff::remote_port(&self) -> u32 +pub fn aya_bpf::programs::sk_buff::SkBuff::set_mark(&mut self, mark: u32) +pub fn aya_bpf::programs::sk_buff::SkBuff::store(&mut self, offset: usize, v: &T, flags: u64) -> core::result::Result<(), aya_bpf_cty::od::c_long> +impl !core::marker::Send for aya_bpf::programs::sk_buff::SkBuff +impl !core::marker::Sync for aya_bpf::programs::sk_buff::SkBuff +impl core::marker::Unpin for aya_bpf::programs::sk_buff::SkBuff +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::programs::sk_buff::SkBuff +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::programs::sk_buff::SkBuff +impl core::convert::Into for aya_bpf::programs::sk_buff::SkBuff where U: core::convert::From +pub fn aya_bpf::programs::sk_buff::SkBuff::into(self) -> U +impl core::convert::TryFrom for aya_bpf::programs::sk_buff::SkBuff where U: core::convert::Into +pub type aya_bpf::programs::sk_buff::SkBuff::Error = core::convert::Infallible +pub fn aya_bpf::programs::sk_buff::SkBuff::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::programs::sk_buff::SkBuff where U: core::convert::TryFrom +pub type aya_bpf::programs::sk_buff::SkBuff::Error = >::Error +pub fn aya_bpf::programs::sk_buff::SkBuff::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::programs::sk_buff::SkBuff where T: 'static + core::marker::Sized +pub fn aya_bpf::programs::sk_buff::SkBuff::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::programs::sk_buff::SkBuff where T: core::marker::Sized +pub fn aya_bpf::programs::sk_buff::SkBuff::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::programs::sk_buff::SkBuff where T: core::marker::Sized +pub fn aya_bpf::programs::sk_buff::SkBuff::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::programs::sk_buff::SkBuff +pub fn aya_bpf::programs::sk_buff::SkBuff::from(t: T) -> T +pub struct aya_bpf::programs::sk_buff::SkBuffContext +pub aya_bpf::programs::sk_buff::SkBuffContext::skb: aya_bpf::programs::sk_buff::SkBuff +impl aya_bpf::programs::sk_buff::SkBuffContext +pub fn aya_bpf::programs::sk_buff::SkBuffContext::adjust_room(&self, len_diff: i32, mode: u32, flags: u64) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub fn aya_bpf::programs::sk_buff::SkBuffContext::cb(&self) -> &[u32] +pub fn aya_bpf::programs::sk_buff::SkBuffContext::cb_mut(&mut self) -> &mut [u32] +pub fn aya_bpf::programs::sk_buff::SkBuffContext::change_type(&self, ty: u32) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub fn aya_bpf::programs::sk_buff::SkBuffContext::clone_redirect(&self, if_index: u32, flags: u64) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub fn aya_bpf::programs::sk_buff::SkBuffContext::get_socket_uid(&self) -> u32 +pub fn aya_bpf::programs::sk_buff::SkBuffContext::l3_csum_replace(&self, offset: usize, from: u64, to: u64, size: u64) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub fn aya_bpf::programs::sk_buff::SkBuffContext::l4_csum_replace(&self, offset: usize, from: u64, to: u64, flags: u64) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub fn aya_bpf::programs::sk_buff::SkBuffContext::len(&self) -> u32 +pub fn aya_bpf::programs::sk_buff::SkBuffContext::load(&self, offset: usize) -> core::result::Result +pub fn aya_bpf::programs::sk_buff::SkBuffContext::load_bytes(&self, offset: usize, dst: &mut [u8]) -> core::result::Result +pub fn aya_bpf::programs::sk_buff::SkBuffContext::new(skb: *mut aya_bpf_bindings::x86_64::bindings::__sk_buff) -> aya_bpf::programs::sk_buff::SkBuffContext +pub fn aya_bpf::programs::sk_buff::SkBuffContext::pull_data(&self, len: u32) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub fn aya_bpf::programs::sk_buff::SkBuffContext::set_mark(&mut self, mark: u32) +pub fn aya_bpf::programs::sk_buff::SkBuffContext::store(&mut self, offset: usize, v: &T, flags: u64) -> core::result::Result<(), aya_bpf_cty::od::c_long> +impl aya_bpf::BpfContext for aya_bpf::programs::sk_buff::SkBuffContext +pub fn aya_bpf::programs::sk_buff::SkBuffContext::as_ptr(&self) -> *mut core::ffi::c_void +impl !core::marker::Send for aya_bpf::programs::sk_buff::SkBuffContext +impl !core::marker::Sync for aya_bpf::programs::sk_buff::SkBuffContext +impl core::marker::Unpin for aya_bpf::programs::sk_buff::SkBuffContext +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::programs::sk_buff::SkBuffContext +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::programs::sk_buff::SkBuffContext +impl core::convert::Into for aya_bpf::programs::sk_buff::SkBuffContext where U: core::convert::From +pub fn aya_bpf::programs::sk_buff::SkBuffContext::into(self) -> U +impl core::convert::TryFrom for aya_bpf::programs::sk_buff::SkBuffContext where U: core::convert::Into +pub type aya_bpf::programs::sk_buff::SkBuffContext::Error = core::convert::Infallible +pub fn aya_bpf::programs::sk_buff::SkBuffContext::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::programs::sk_buff::SkBuffContext where U: core::convert::TryFrom +pub type aya_bpf::programs::sk_buff::SkBuffContext::Error = >::Error +pub fn aya_bpf::programs::sk_buff::SkBuffContext::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::programs::sk_buff::SkBuffContext where T: 'static + core::marker::Sized +pub fn aya_bpf::programs::sk_buff::SkBuffContext::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::programs::sk_buff::SkBuffContext where T: core::marker::Sized +pub fn aya_bpf::programs::sk_buff::SkBuffContext::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::programs::sk_buff::SkBuffContext where T: core::marker::Sized +pub fn aya_bpf::programs::sk_buff::SkBuffContext::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::programs::sk_buff::SkBuffContext +pub fn aya_bpf::programs::sk_buff::SkBuffContext::from(t: T) -> T +pub mod aya_bpf::programs::sk_lookup +pub struct aya_bpf::programs::sk_lookup::SkLookupContext +pub aya_bpf::programs::sk_lookup::SkLookupContext::lookup: *mut aya_bpf_bindings::x86_64::bindings::bpf_sk_lookup +impl aya_bpf::programs::sk_lookup::SkLookupContext +pub fn aya_bpf::programs::sk_lookup::SkLookupContext::new(lookup: *mut aya_bpf_bindings::x86_64::bindings::bpf_sk_lookup) -> aya_bpf::programs::sk_lookup::SkLookupContext +impl aya_bpf::BpfContext for aya_bpf::programs::sk_lookup::SkLookupContext +pub fn aya_bpf::programs::sk_lookup::SkLookupContext::as_ptr(&self) -> *mut core::ffi::c_void +impl !core::marker::Send for aya_bpf::programs::sk_lookup::SkLookupContext +impl !core::marker::Sync for aya_bpf::programs::sk_lookup::SkLookupContext +impl core::marker::Unpin for aya_bpf::programs::sk_lookup::SkLookupContext +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::programs::sk_lookup::SkLookupContext +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::programs::sk_lookup::SkLookupContext +impl core::convert::Into for aya_bpf::programs::sk_lookup::SkLookupContext where U: core::convert::From +pub fn aya_bpf::programs::sk_lookup::SkLookupContext::into(self) -> U +impl core::convert::TryFrom for aya_bpf::programs::sk_lookup::SkLookupContext where U: core::convert::Into +pub type aya_bpf::programs::sk_lookup::SkLookupContext::Error = core::convert::Infallible +pub fn aya_bpf::programs::sk_lookup::SkLookupContext::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::programs::sk_lookup::SkLookupContext where U: core::convert::TryFrom +pub type aya_bpf::programs::sk_lookup::SkLookupContext::Error = >::Error +pub fn aya_bpf::programs::sk_lookup::SkLookupContext::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::programs::sk_lookup::SkLookupContext where T: 'static + core::marker::Sized +pub fn aya_bpf::programs::sk_lookup::SkLookupContext::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::programs::sk_lookup::SkLookupContext where T: core::marker::Sized +pub fn aya_bpf::programs::sk_lookup::SkLookupContext::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::programs::sk_lookup::SkLookupContext where T: core::marker::Sized +pub fn aya_bpf::programs::sk_lookup::SkLookupContext::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::programs::sk_lookup::SkLookupContext +pub fn aya_bpf::programs::sk_lookup::SkLookupContext::from(t: T) -> T +pub mod aya_bpf::programs::sk_msg +pub struct aya_bpf::programs::sk_msg::SkMsgContext +pub aya_bpf::programs::sk_msg::SkMsgContext::msg: *mut aya_bpf_bindings::x86_64::bindings::sk_msg_md +impl aya_bpf::programs::sk_msg::SkMsgContext +pub fn aya_bpf::programs::sk_msg::SkMsgContext::data(&self) -> usize +pub fn aya_bpf::programs::sk_msg::SkMsgContext::data_end(&self) -> usize +pub fn aya_bpf::programs::sk_msg::SkMsgContext::new(msg: *mut aya_bpf_bindings::x86_64::bindings::sk_msg_md) -> aya_bpf::programs::sk_msg::SkMsgContext +pub fn aya_bpf::programs::sk_msg::SkMsgContext::pop_data(&self, start: u32, len: u32, flags: u64) -> core::result::Result<(), i64> +pub fn aya_bpf::programs::sk_msg::SkMsgContext::push_data(&self, start: u32, len: u32, flags: u64) -> core::result::Result<(), i64> +pub fn aya_bpf::programs::sk_msg::SkMsgContext::size(&self) -> u32 +impl aya_bpf::BpfContext for aya_bpf::programs::sk_msg::SkMsgContext +pub fn aya_bpf::programs::sk_msg::SkMsgContext::as_ptr(&self) -> *mut core::ffi::c_void +impl !core::marker::Send for aya_bpf::programs::sk_msg::SkMsgContext +impl !core::marker::Sync for aya_bpf::programs::sk_msg::SkMsgContext +impl core::marker::Unpin for aya_bpf::programs::sk_msg::SkMsgContext +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::programs::sk_msg::SkMsgContext +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::programs::sk_msg::SkMsgContext +impl core::convert::Into for aya_bpf::programs::sk_msg::SkMsgContext where U: core::convert::From +pub fn aya_bpf::programs::sk_msg::SkMsgContext::into(self) -> U +impl core::convert::TryFrom for aya_bpf::programs::sk_msg::SkMsgContext where U: core::convert::Into +pub type aya_bpf::programs::sk_msg::SkMsgContext::Error = core::convert::Infallible +pub fn aya_bpf::programs::sk_msg::SkMsgContext::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::programs::sk_msg::SkMsgContext where U: core::convert::TryFrom +pub type aya_bpf::programs::sk_msg::SkMsgContext::Error = >::Error +pub fn aya_bpf::programs::sk_msg::SkMsgContext::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::programs::sk_msg::SkMsgContext where T: 'static + core::marker::Sized +pub fn aya_bpf::programs::sk_msg::SkMsgContext::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::programs::sk_msg::SkMsgContext where T: core::marker::Sized +pub fn aya_bpf::programs::sk_msg::SkMsgContext::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::programs::sk_msg::SkMsgContext where T: core::marker::Sized +pub fn aya_bpf::programs::sk_msg::SkMsgContext::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::programs::sk_msg::SkMsgContext +pub fn aya_bpf::programs::sk_msg::SkMsgContext::from(t: T) -> T +pub mod aya_bpf::programs::sock +pub struct aya_bpf::programs::sock::SockContext +pub aya_bpf::programs::sock::SockContext::sock: *mut aya_bpf_bindings::x86_64::bindings::bpf_sock +impl aya_bpf::programs::sock::SockContext +pub fn aya_bpf::programs::sock::SockContext::new(sock: *mut aya_bpf_bindings::x86_64::bindings::bpf_sock) -> aya_bpf::programs::sock::SockContext +impl aya_bpf::BpfContext for aya_bpf::programs::sock::SockContext +pub fn aya_bpf::programs::sock::SockContext::as_ptr(&self) -> *mut core::ffi::c_void +impl !core::marker::Send for aya_bpf::programs::sock::SockContext +impl !core::marker::Sync for aya_bpf::programs::sock::SockContext +impl core::marker::Unpin for aya_bpf::programs::sock::SockContext +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::programs::sock::SockContext +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::programs::sock::SockContext +impl core::convert::Into for aya_bpf::programs::sock::SockContext where U: core::convert::From +pub fn aya_bpf::programs::sock::SockContext::into(self) -> U +impl core::convert::TryFrom for aya_bpf::programs::sock::SockContext where U: core::convert::Into +pub type aya_bpf::programs::sock::SockContext::Error = core::convert::Infallible +pub fn aya_bpf::programs::sock::SockContext::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::programs::sock::SockContext where U: core::convert::TryFrom +pub type aya_bpf::programs::sock::SockContext::Error = >::Error +pub fn aya_bpf::programs::sock::SockContext::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::programs::sock::SockContext where T: 'static + core::marker::Sized +pub fn aya_bpf::programs::sock::SockContext::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::programs::sock::SockContext where T: core::marker::Sized +pub fn aya_bpf::programs::sock::SockContext::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::programs::sock::SockContext where T: core::marker::Sized +pub fn aya_bpf::programs::sock::SockContext::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::programs::sock::SockContext +pub fn aya_bpf::programs::sock::SockContext::from(t: T) -> T +pub mod aya_bpf::programs::sock_addr +pub struct aya_bpf::programs::sock_addr::SockAddrContext +pub aya_bpf::programs::sock_addr::SockAddrContext::sock_addr: *mut aya_bpf_bindings::x86_64::bindings::bpf_sock_addr +impl aya_bpf::programs::sock_addr::SockAddrContext +pub fn aya_bpf::programs::sock_addr::SockAddrContext::new(sock_addr: *mut aya_bpf_bindings::x86_64::bindings::bpf_sock_addr) -> aya_bpf::programs::sock_addr::SockAddrContext +impl aya_bpf::BpfContext for aya_bpf::programs::sock_addr::SockAddrContext +pub fn aya_bpf::programs::sock_addr::SockAddrContext::as_ptr(&self) -> *mut core::ffi::c_void +impl !core::marker::Send for aya_bpf::programs::sock_addr::SockAddrContext +impl !core::marker::Sync for aya_bpf::programs::sock_addr::SockAddrContext +impl core::marker::Unpin for aya_bpf::programs::sock_addr::SockAddrContext +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::programs::sock_addr::SockAddrContext +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::programs::sock_addr::SockAddrContext +impl core::convert::Into for aya_bpf::programs::sock_addr::SockAddrContext where U: core::convert::From +pub fn aya_bpf::programs::sock_addr::SockAddrContext::into(self) -> U +impl core::convert::TryFrom for aya_bpf::programs::sock_addr::SockAddrContext where U: core::convert::Into +pub type aya_bpf::programs::sock_addr::SockAddrContext::Error = core::convert::Infallible +pub fn aya_bpf::programs::sock_addr::SockAddrContext::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::programs::sock_addr::SockAddrContext where U: core::convert::TryFrom +pub type aya_bpf::programs::sock_addr::SockAddrContext::Error = >::Error +pub fn aya_bpf::programs::sock_addr::SockAddrContext::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::programs::sock_addr::SockAddrContext where T: 'static + core::marker::Sized +pub fn aya_bpf::programs::sock_addr::SockAddrContext::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::programs::sock_addr::SockAddrContext where T: core::marker::Sized +pub fn aya_bpf::programs::sock_addr::SockAddrContext::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::programs::sock_addr::SockAddrContext where T: core::marker::Sized +pub fn aya_bpf::programs::sock_addr::SockAddrContext::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::programs::sock_addr::SockAddrContext +pub fn aya_bpf::programs::sock_addr::SockAddrContext::from(t: T) -> T +pub mod aya_bpf::programs::sock_ops +pub struct aya_bpf::programs::sock_ops::SockOpsContext +pub aya_bpf::programs::sock_ops::SockOpsContext::ops: *mut aya_bpf_bindings::x86_64::bindings::bpf_sock_ops +impl aya_bpf::programs::sock_ops::SockOpsContext +pub fn aya_bpf::programs::sock_ops::SockOpsContext::arg(&self, n: usize) -> u32 +pub fn aya_bpf::programs::sock_ops::SockOpsContext::cb_flags(&self) -> u32 +pub fn aya_bpf::programs::sock_ops::SockOpsContext::family(&self) -> u32 +pub fn aya_bpf::programs::sock_ops::SockOpsContext::local_ip4(&self) -> u32 +pub fn aya_bpf::programs::sock_ops::SockOpsContext::local_ip6(&self) -> [u32; 4] +pub fn aya_bpf::programs::sock_ops::SockOpsContext::local_port(&self) -> u32 +pub fn aya_bpf::programs::sock_ops::SockOpsContext::new(ops: *mut aya_bpf_bindings::x86_64::bindings::bpf_sock_ops) -> aya_bpf::programs::sock_ops::SockOpsContext +pub fn aya_bpf::programs::sock_ops::SockOpsContext::op(&self) -> u32 +pub fn aya_bpf::programs::sock_ops::SockOpsContext::remote_ip4(&self) -> u32 +pub fn aya_bpf::programs::sock_ops::SockOpsContext::remote_ip6(&self) -> [u32; 4] +pub fn aya_bpf::programs::sock_ops::SockOpsContext::remote_port(&self) -> u32 +pub fn aya_bpf::programs::sock_ops::SockOpsContext::set_cb_flags(&self, flags: i32) -> core::result::Result<(), i64> +impl aya_bpf::BpfContext for aya_bpf::programs::sock_ops::SockOpsContext +pub fn aya_bpf::programs::sock_ops::SockOpsContext::as_ptr(&self) -> *mut core::ffi::c_void +impl !core::marker::Send for aya_bpf::programs::sock_ops::SockOpsContext +impl !core::marker::Sync for aya_bpf::programs::sock_ops::SockOpsContext +impl core::marker::Unpin for aya_bpf::programs::sock_ops::SockOpsContext +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::programs::sock_ops::SockOpsContext +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::programs::sock_ops::SockOpsContext +impl core::convert::Into for aya_bpf::programs::sock_ops::SockOpsContext where U: core::convert::From +pub fn aya_bpf::programs::sock_ops::SockOpsContext::into(self) -> U +impl core::convert::TryFrom for aya_bpf::programs::sock_ops::SockOpsContext where U: core::convert::Into +pub type aya_bpf::programs::sock_ops::SockOpsContext::Error = core::convert::Infallible +pub fn aya_bpf::programs::sock_ops::SockOpsContext::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::programs::sock_ops::SockOpsContext where U: core::convert::TryFrom +pub type aya_bpf::programs::sock_ops::SockOpsContext::Error = >::Error +pub fn aya_bpf::programs::sock_ops::SockOpsContext::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::programs::sock_ops::SockOpsContext where T: 'static + core::marker::Sized +pub fn aya_bpf::programs::sock_ops::SockOpsContext::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::programs::sock_ops::SockOpsContext where T: core::marker::Sized +pub fn aya_bpf::programs::sock_ops::SockOpsContext::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::programs::sock_ops::SockOpsContext where T: core::marker::Sized +pub fn aya_bpf::programs::sock_ops::SockOpsContext::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::programs::sock_ops::SockOpsContext +pub fn aya_bpf::programs::sock_ops::SockOpsContext::from(t: T) -> T +pub mod aya_bpf::programs::sockopt +pub struct aya_bpf::programs::sockopt::SockoptContext +pub aya_bpf::programs::sockopt::SockoptContext::sockopt: *mut aya_bpf_bindings::x86_64::bindings::bpf_sockopt +impl aya_bpf::programs::sockopt::SockoptContext +pub fn aya_bpf::programs::sockopt::SockoptContext::new(sockopt: *mut aya_bpf_bindings::x86_64::bindings::bpf_sockopt) -> aya_bpf::programs::sockopt::SockoptContext +impl aya_bpf::BpfContext for aya_bpf::programs::sockopt::SockoptContext +pub fn aya_bpf::programs::sockopt::SockoptContext::as_ptr(&self) -> *mut core::ffi::c_void +impl !core::marker::Send for aya_bpf::programs::sockopt::SockoptContext +impl !core::marker::Sync for aya_bpf::programs::sockopt::SockoptContext +impl core::marker::Unpin for aya_bpf::programs::sockopt::SockoptContext +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::programs::sockopt::SockoptContext +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::programs::sockopt::SockoptContext +impl core::convert::Into for aya_bpf::programs::sockopt::SockoptContext where U: core::convert::From +pub fn aya_bpf::programs::sockopt::SockoptContext::into(self) -> U +impl core::convert::TryFrom for aya_bpf::programs::sockopt::SockoptContext where U: core::convert::Into +pub type aya_bpf::programs::sockopt::SockoptContext::Error = core::convert::Infallible +pub fn aya_bpf::programs::sockopt::SockoptContext::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::programs::sockopt::SockoptContext where U: core::convert::TryFrom +pub type aya_bpf::programs::sockopt::SockoptContext::Error = >::Error +pub fn aya_bpf::programs::sockopt::SockoptContext::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::programs::sockopt::SockoptContext where T: 'static + core::marker::Sized +pub fn aya_bpf::programs::sockopt::SockoptContext::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::programs::sockopt::SockoptContext where T: core::marker::Sized +pub fn aya_bpf::programs::sockopt::SockoptContext::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::programs::sockopt::SockoptContext where T: core::marker::Sized +pub fn aya_bpf::programs::sockopt::SockoptContext::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::programs::sockopt::SockoptContext +pub fn aya_bpf::programs::sockopt::SockoptContext::from(t: T) -> T +pub mod aya_bpf::programs::sysctl +pub struct aya_bpf::programs::sysctl::SysctlContext +pub aya_bpf::programs::sysctl::SysctlContext::sysctl: *mut aya_bpf_bindings::x86_64::bindings::bpf_sysctl +impl aya_bpf::programs::sysctl::SysctlContext +pub fn aya_bpf::programs::sysctl::SysctlContext::new(sysctl: *mut aya_bpf_bindings::x86_64::bindings::bpf_sysctl) -> aya_bpf::programs::sysctl::SysctlContext +impl aya_bpf::BpfContext for aya_bpf::programs::sysctl::SysctlContext +pub fn aya_bpf::programs::sysctl::SysctlContext::as_ptr(&self) -> *mut core::ffi::c_void +impl !core::marker::Send for aya_bpf::programs::sysctl::SysctlContext +impl !core::marker::Sync for aya_bpf::programs::sysctl::SysctlContext +impl core::marker::Unpin for aya_bpf::programs::sysctl::SysctlContext +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::programs::sysctl::SysctlContext +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::programs::sysctl::SysctlContext +impl core::convert::Into for aya_bpf::programs::sysctl::SysctlContext where U: core::convert::From +pub fn aya_bpf::programs::sysctl::SysctlContext::into(self) -> U +impl core::convert::TryFrom for aya_bpf::programs::sysctl::SysctlContext where U: core::convert::Into +pub type aya_bpf::programs::sysctl::SysctlContext::Error = core::convert::Infallible +pub fn aya_bpf::programs::sysctl::SysctlContext::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::programs::sysctl::SysctlContext where U: core::convert::TryFrom +pub type aya_bpf::programs::sysctl::SysctlContext::Error = >::Error +pub fn aya_bpf::programs::sysctl::SysctlContext::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::programs::sysctl::SysctlContext where T: 'static + core::marker::Sized +pub fn aya_bpf::programs::sysctl::SysctlContext::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::programs::sysctl::SysctlContext where T: core::marker::Sized +pub fn aya_bpf::programs::sysctl::SysctlContext::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::programs::sysctl::SysctlContext where T: core::marker::Sized +pub fn aya_bpf::programs::sysctl::SysctlContext::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::programs::sysctl::SysctlContext +pub fn aya_bpf::programs::sysctl::SysctlContext::from(t: T) -> T +pub mod aya_bpf::programs::tc +pub struct aya_bpf::programs::tc::TcContext +pub aya_bpf::programs::tc::TcContext::skb: aya_bpf::programs::sk_buff::SkBuff +impl aya_bpf::programs::tc::TcContext +pub fn aya_bpf::programs::tc::TcContext::adjust_room(&self, len_diff: i32, mode: u32, flags: u64) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub fn aya_bpf::programs::tc::TcContext::cb(&self) -> &[u32] +pub fn aya_bpf::programs::tc::TcContext::cb_mut(&mut self) -> &mut [u32] +pub fn aya_bpf::programs::tc::TcContext::change_proto(&self, proto: u16, flags: u64) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub fn aya_bpf::programs::tc::TcContext::change_type(&self, ty: u32) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub fn aya_bpf::programs::tc::TcContext::clone_redirect(&self, if_index: u32, flags: u64) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub fn aya_bpf::programs::tc::TcContext::data(&self) -> usize +pub fn aya_bpf::programs::tc::TcContext::data_end(&self) -> usize +pub fn aya_bpf::programs::tc::TcContext::get_socket_uid(&self) -> u32 +pub fn aya_bpf::programs::tc::TcContext::l3_csum_replace(&self, offset: usize, from: u64, to: u64, size: u64) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub fn aya_bpf::programs::tc::TcContext::l4_csum_replace(&self, offset: usize, from: u64, to: u64, flags: u64) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub fn aya_bpf::programs::tc::TcContext::len(&self) -> u32 +pub fn aya_bpf::programs::tc::TcContext::load(&self, offset: usize) -> core::result::Result +pub fn aya_bpf::programs::tc::TcContext::load_bytes(&self, offset: usize, dst: &mut [u8]) -> core::result::Result +pub fn aya_bpf::programs::tc::TcContext::new(skb: *mut aya_bpf_bindings::x86_64::bindings::__sk_buff) -> aya_bpf::programs::tc::TcContext +pub fn aya_bpf::programs::tc::TcContext::pull_data(&self, len: u32) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub fn aya_bpf::programs::tc::TcContext::set_mark(&mut self, mark: u32) +pub fn aya_bpf::programs::tc::TcContext::store(&mut self, offset: usize, v: &T, flags: u64) -> core::result::Result<(), aya_bpf_cty::od::c_long> +impl aya_bpf::BpfContext for aya_bpf::programs::tc::TcContext +pub fn aya_bpf::programs::tc::TcContext::as_ptr(&self) -> *mut aya_bpf_cty::c_void +impl !core::marker::Send for aya_bpf::programs::tc::TcContext +impl !core::marker::Sync for aya_bpf::programs::tc::TcContext +impl core::marker::Unpin for aya_bpf::programs::tc::TcContext +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::programs::tc::TcContext +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::programs::tc::TcContext +impl core::convert::Into for aya_bpf::programs::tc::TcContext where U: core::convert::From +pub fn aya_bpf::programs::tc::TcContext::into(self) -> U +impl core::convert::TryFrom for aya_bpf::programs::tc::TcContext where U: core::convert::Into +pub type aya_bpf::programs::tc::TcContext::Error = core::convert::Infallible +pub fn aya_bpf::programs::tc::TcContext::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::programs::tc::TcContext where U: core::convert::TryFrom +pub type aya_bpf::programs::tc::TcContext::Error = >::Error +pub fn aya_bpf::programs::tc::TcContext::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::programs::tc::TcContext where T: 'static + core::marker::Sized +pub fn aya_bpf::programs::tc::TcContext::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::programs::tc::TcContext where T: core::marker::Sized +pub fn aya_bpf::programs::tc::TcContext::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::programs::tc::TcContext where T: core::marker::Sized +pub fn aya_bpf::programs::tc::TcContext::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::programs::tc::TcContext +pub fn aya_bpf::programs::tc::TcContext::from(t: T) -> T +pub mod aya_bpf::programs::tp_btf +pub struct aya_bpf::programs::tp_btf::BtfTracePointContext +impl aya_bpf::programs::tp_btf::BtfTracePointContext +pub unsafe fn aya_bpf::programs::tp_btf::BtfTracePointContext::arg(&self, n: usize) -> T +pub fn aya_bpf::programs::tp_btf::BtfTracePointContext::new(ctx: *mut core::ffi::c_void) -> aya_bpf::programs::tp_btf::BtfTracePointContext +impl aya_bpf::BpfContext for aya_bpf::programs::tp_btf::BtfTracePointContext +pub fn aya_bpf::programs::tp_btf::BtfTracePointContext::as_ptr(&self) -> *mut core::ffi::c_void +impl !core::marker::Send for aya_bpf::programs::tp_btf::BtfTracePointContext +impl !core::marker::Sync for aya_bpf::programs::tp_btf::BtfTracePointContext +impl core::marker::Unpin for aya_bpf::programs::tp_btf::BtfTracePointContext +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::programs::tp_btf::BtfTracePointContext +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::programs::tp_btf::BtfTracePointContext +impl core::convert::Into for aya_bpf::programs::tp_btf::BtfTracePointContext where U: core::convert::From +pub fn aya_bpf::programs::tp_btf::BtfTracePointContext::into(self) -> U +impl core::convert::TryFrom for aya_bpf::programs::tp_btf::BtfTracePointContext where U: core::convert::Into +pub type aya_bpf::programs::tp_btf::BtfTracePointContext::Error = core::convert::Infallible +pub fn aya_bpf::programs::tp_btf::BtfTracePointContext::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::programs::tp_btf::BtfTracePointContext where U: core::convert::TryFrom +pub type aya_bpf::programs::tp_btf::BtfTracePointContext::Error = >::Error +pub fn aya_bpf::programs::tp_btf::BtfTracePointContext::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::programs::tp_btf::BtfTracePointContext where T: 'static + core::marker::Sized +pub fn aya_bpf::programs::tp_btf::BtfTracePointContext::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::programs::tp_btf::BtfTracePointContext where T: core::marker::Sized +pub fn aya_bpf::programs::tp_btf::BtfTracePointContext::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::programs::tp_btf::BtfTracePointContext where T: core::marker::Sized +pub fn aya_bpf::programs::tp_btf::BtfTracePointContext::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::programs::tp_btf::BtfTracePointContext +pub fn aya_bpf::programs::tp_btf::BtfTracePointContext::from(t: T) -> T +pub mod aya_bpf::programs::tracepoint +pub struct aya_bpf::programs::tracepoint::TracePointContext +impl aya_bpf::programs::tracepoint::TracePointContext +pub fn aya_bpf::programs::tracepoint::TracePointContext::new(ctx: *mut core::ffi::c_void) -> aya_bpf::programs::tracepoint::TracePointContext +pub unsafe fn aya_bpf::programs::tracepoint::TracePointContext::read_at(&self, offset: usize) -> core::result::Result +impl aya_bpf::BpfContext for aya_bpf::programs::tracepoint::TracePointContext +pub fn aya_bpf::programs::tracepoint::TracePointContext::as_ptr(&self) -> *mut core::ffi::c_void +impl !core::marker::Send for aya_bpf::programs::tracepoint::TracePointContext +impl !core::marker::Sync for aya_bpf::programs::tracepoint::TracePointContext +impl core::marker::Unpin for aya_bpf::programs::tracepoint::TracePointContext +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::programs::tracepoint::TracePointContext +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::programs::tracepoint::TracePointContext +impl core::convert::Into for aya_bpf::programs::tracepoint::TracePointContext where U: core::convert::From +pub fn aya_bpf::programs::tracepoint::TracePointContext::into(self) -> U +impl core::convert::TryFrom for aya_bpf::programs::tracepoint::TracePointContext where U: core::convert::Into +pub type aya_bpf::programs::tracepoint::TracePointContext::Error = core::convert::Infallible +pub fn aya_bpf::programs::tracepoint::TracePointContext::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::programs::tracepoint::TracePointContext where U: core::convert::TryFrom +pub type aya_bpf::programs::tracepoint::TracePointContext::Error = >::Error +pub fn aya_bpf::programs::tracepoint::TracePointContext::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::programs::tracepoint::TracePointContext where T: 'static + core::marker::Sized +pub fn aya_bpf::programs::tracepoint::TracePointContext::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::programs::tracepoint::TracePointContext where T: core::marker::Sized +pub fn aya_bpf::programs::tracepoint::TracePointContext::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::programs::tracepoint::TracePointContext where T: core::marker::Sized +pub fn aya_bpf::programs::tracepoint::TracePointContext::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::programs::tracepoint::TracePointContext +pub fn aya_bpf::programs::tracepoint::TracePointContext::from(t: T) -> T +pub mod aya_bpf::programs::xdp +pub struct aya_bpf::programs::xdp::XdpContext +pub aya_bpf::programs::xdp::XdpContext::ctx: *mut aya_bpf_bindings::x86_64::bindings::xdp_md +impl aya_bpf::programs::xdp::XdpContext +pub fn aya_bpf::programs::xdp::XdpContext::data(&self) -> usize +pub fn aya_bpf::programs::xdp::XdpContext::data_end(&self) -> usize +pub fn aya_bpf::programs::xdp::XdpContext::metadata(&self) -> usize +pub fn aya_bpf::programs::xdp::XdpContext::metadata_end(&self) -> usize +pub fn aya_bpf::programs::xdp::XdpContext::new(ctx: *mut aya_bpf_bindings::x86_64::bindings::xdp_md) -> aya_bpf::programs::xdp::XdpContext +impl aya_bpf::BpfContext for aya_bpf::programs::xdp::XdpContext +pub fn aya_bpf::programs::xdp::XdpContext::as_ptr(&self) -> *mut core::ffi::c_void +impl !core::marker::Send for aya_bpf::programs::xdp::XdpContext +impl !core::marker::Sync for aya_bpf::programs::xdp::XdpContext +impl core::marker::Unpin for aya_bpf::programs::xdp::XdpContext +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::programs::xdp::XdpContext +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::programs::xdp::XdpContext +impl core::convert::Into for aya_bpf::programs::xdp::XdpContext where U: core::convert::From +pub fn aya_bpf::programs::xdp::XdpContext::into(self) -> U +impl core::convert::TryFrom for aya_bpf::programs::xdp::XdpContext where U: core::convert::Into +pub type aya_bpf::programs::xdp::XdpContext::Error = core::convert::Infallible +pub fn aya_bpf::programs::xdp::XdpContext::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::programs::xdp::XdpContext where U: core::convert::TryFrom +pub type aya_bpf::programs::xdp::XdpContext::Error = >::Error +pub fn aya_bpf::programs::xdp::XdpContext::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::programs::xdp::XdpContext where T: 'static + core::marker::Sized +pub fn aya_bpf::programs::xdp::XdpContext::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::programs::xdp::XdpContext where T: core::marker::Sized +pub fn aya_bpf::programs::xdp::XdpContext::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::programs::xdp::XdpContext where T: core::marker::Sized +pub fn aya_bpf::programs::xdp::XdpContext::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::programs::xdp::XdpContext +pub fn aya_bpf::programs::xdp::XdpContext::from(t: T) -> T +pub struct aya_bpf::programs::BtfTracePointContext +impl aya_bpf::programs::tp_btf::BtfTracePointContext +pub unsafe fn aya_bpf::programs::tp_btf::BtfTracePointContext::arg(&self, n: usize) -> T +pub fn aya_bpf::programs::tp_btf::BtfTracePointContext::new(ctx: *mut core::ffi::c_void) -> aya_bpf::programs::tp_btf::BtfTracePointContext +impl aya_bpf::BpfContext for aya_bpf::programs::tp_btf::BtfTracePointContext +pub fn aya_bpf::programs::tp_btf::BtfTracePointContext::as_ptr(&self) -> *mut core::ffi::c_void +impl !core::marker::Send for aya_bpf::programs::tp_btf::BtfTracePointContext +impl !core::marker::Sync for aya_bpf::programs::tp_btf::BtfTracePointContext +impl core::marker::Unpin for aya_bpf::programs::tp_btf::BtfTracePointContext +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::programs::tp_btf::BtfTracePointContext +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::programs::tp_btf::BtfTracePointContext +impl core::convert::Into for aya_bpf::programs::tp_btf::BtfTracePointContext where U: core::convert::From +pub fn aya_bpf::programs::tp_btf::BtfTracePointContext::into(self) -> U +impl core::convert::TryFrom for aya_bpf::programs::tp_btf::BtfTracePointContext where U: core::convert::Into +pub type aya_bpf::programs::tp_btf::BtfTracePointContext::Error = core::convert::Infallible +pub fn aya_bpf::programs::tp_btf::BtfTracePointContext::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::programs::tp_btf::BtfTracePointContext where U: core::convert::TryFrom +pub type aya_bpf::programs::tp_btf::BtfTracePointContext::Error = >::Error +pub fn aya_bpf::programs::tp_btf::BtfTracePointContext::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::programs::tp_btf::BtfTracePointContext where T: 'static + core::marker::Sized +pub fn aya_bpf::programs::tp_btf::BtfTracePointContext::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::programs::tp_btf::BtfTracePointContext where T: core::marker::Sized +pub fn aya_bpf::programs::tp_btf::BtfTracePointContext::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::programs::tp_btf::BtfTracePointContext where T: core::marker::Sized +pub fn aya_bpf::programs::tp_btf::BtfTracePointContext::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::programs::tp_btf::BtfTracePointContext +pub fn aya_bpf::programs::tp_btf::BtfTracePointContext::from(t: T) -> T +pub struct aya_bpf::programs::DeviceContext +pub aya_bpf::programs::DeviceContext::device: *mut aya_bpf_bindings::x86_64::bindings::bpf_cgroup_dev_ctx +impl aya_bpf::programs::device::DeviceContext +pub fn aya_bpf::programs::device::DeviceContext::new(device: *mut aya_bpf_bindings::x86_64::bindings::bpf_cgroup_dev_ctx) -> aya_bpf::programs::device::DeviceContext +impl aya_bpf::BpfContext for aya_bpf::programs::device::DeviceContext +pub fn aya_bpf::programs::device::DeviceContext::as_ptr(&self) -> *mut core::ffi::c_void +impl !core::marker::Send for aya_bpf::programs::device::DeviceContext +impl !core::marker::Sync for aya_bpf::programs::device::DeviceContext +impl core::marker::Unpin for aya_bpf::programs::device::DeviceContext +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::programs::device::DeviceContext +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::programs::device::DeviceContext +impl core::convert::Into for aya_bpf::programs::device::DeviceContext where U: core::convert::From +pub fn aya_bpf::programs::device::DeviceContext::into(self) -> U +impl core::convert::TryFrom for aya_bpf::programs::device::DeviceContext where U: core::convert::Into +pub type aya_bpf::programs::device::DeviceContext::Error = core::convert::Infallible +pub fn aya_bpf::programs::device::DeviceContext::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::programs::device::DeviceContext where U: core::convert::TryFrom +pub type aya_bpf::programs::device::DeviceContext::Error = >::Error +pub fn aya_bpf::programs::device::DeviceContext::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::programs::device::DeviceContext where T: 'static + core::marker::Sized +pub fn aya_bpf::programs::device::DeviceContext::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::programs::device::DeviceContext where T: core::marker::Sized +pub fn aya_bpf::programs::device::DeviceContext::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::programs::device::DeviceContext where T: core::marker::Sized +pub fn aya_bpf::programs::device::DeviceContext::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::programs::device::DeviceContext +pub fn aya_bpf::programs::device::DeviceContext::from(t: T) -> T +pub struct aya_bpf::programs::FEntryContext +impl aya_bpf::programs::fentry::FEntryContext +pub unsafe fn aya_bpf::programs::fentry::FEntryContext::arg(&self, n: usize) -> T +pub fn aya_bpf::programs::fentry::FEntryContext::new(ctx: *mut core::ffi::c_void) -> aya_bpf::programs::fentry::FEntryContext +impl aya_bpf::BpfContext for aya_bpf::programs::fentry::FEntryContext +pub fn aya_bpf::programs::fentry::FEntryContext::as_ptr(&self) -> *mut core::ffi::c_void +impl !core::marker::Send for aya_bpf::programs::fentry::FEntryContext +impl !core::marker::Sync for aya_bpf::programs::fentry::FEntryContext +impl core::marker::Unpin for aya_bpf::programs::fentry::FEntryContext +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::programs::fentry::FEntryContext +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::programs::fentry::FEntryContext +impl core::convert::Into for aya_bpf::programs::fentry::FEntryContext where U: core::convert::From +pub fn aya_bpf::programs::fentry::FEntryContext::into(self) -> U +impl core::convert::TryFrom for aya_bpf::programs::fentry::FEntryContext where U: core::convert::Into +pub type aya_bpf::programs::fentry::FEntryContext::Error = core::convert::Infallible +pub fn aya_bpf::programs::fentry::FEntryContext::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::programs::fentry::FEntryContext where U: core::convert::TryFrom +pub type aya_bpf::programs::fentry::FEntryContext::Error = >::Error +pub fn aya_bpf::programs::fentry::FEntryContext::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::programs::fentry::FEntryContext where T: 'static + core::marker::Sized +pub fn aya_bpf::programs::fentry::FEntryContext::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::programs::fentry::FEntryContext where T: core::marker::Sized +pub fn aya_bpf::programs::fentry::FEntryContext::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::programs::fentry::FEntryContext where T: core::marker::Sized +pub fn aya_bpf::programs::fentry::FEntryContext::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::programs::fentry::FEntryContext +pub fn aya_bpf::programs::fentry::FEntryContext::from(t: T) -> T +pub struct aya_bpf::programs::FExitContext +impl aya_bpf::programs::fexit::FExitContext +pub unsafe fn aya_bpf::programs::fexit::FExitContext::arg(&self, n: usize) -> T +pub fn aya_bpf::programs::fexit::FExitContext::new(ctx: *mut core::ffi::c_void) -> aya_bpf::programs::fexit::FExitContext +impl aya_bpf::BpfContext for aya_bpf::programs::fexit::FExitContext +pub fn aya_bpf::programs::fexit::FExitContext::as_ptr(&self) -> *mut core::ffi::c_void +impl !core::marker::Send for aya_bpf::programs::fexit::FExitContext +impl !core::marker::Sync for aya_bpf::programs::fexit::FExitContext +impl core::marker::Unpin for aya_bpf::programs::fexit::FExitContext +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::programs::fexit::FExitContext +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::programs::fexit::FExitContext +impl core::convert::Into for aya_bpf::programs::fexit::FExitContext where U: core::convert::From +pub fn aya_bpf::programs::fexit::FExitContext::into(self) -> U +impl core::convert::TryFrom for aya_bpf::programs::fexit::FExitContext where U: core::convert::Into +pub type aya_bpf::programs::fexit::FExitContext::Error = core::convert::Infallible +pub fn aya_bpf::programs::fexit::FExitContext::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::programs::fexit::FExitContext where U: core::convert::TryFrom +pub type aya_bpf::programs::fexit::FExitContext::Error = >::Error +pub fn aya_bpf::programs::fexit::FExitContext::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::programs::fexit::FExitContext where T: 'static + core::marker::Sized +pub fn aya_bpf::programs::fexit::FExitContext::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::programs::fexit::FExitContext where T: core::marker::Sized +pub fn aya_bpf::programs::fexit::FExitContext::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::programs::fexit::FExitContext where T: core::marker::Sized +pub fn aya_bpf::programs::fexit::FExitContext::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::programs::fexit::FExitContext +pub fn aya_bpf::programs::fexit::FExitContext::from(t: T) -> T +pub struct aya_bpf::programs::LsmContext +impl aya_bpf::programs::lsm::LsmContext +pub unsafe fn aya_bpf::programs::lsm::LsmContext::arg(&self, n: usize) -> T +pub fn aya_bpf::programs::lsm::LsmContext::new(ctx: *mut core::ffi::c_void) -> aya_bpf::programs::lsm::LsmContext +impl aya_bpf::BpfContext for aya_bpf::programs::lsm::LsmContext +pub fn aya_bpf::programs::lsm::LsmContext::as_ptr(&self) -> *mut core::ffi::c_void +impl !core::marker::Send for aya_bpf::programs::lsm::LsmContext +impl !core::marker::Sync for aya_bpf::programs::lsm::LsmContext +impl core::marker::Unpin for aya_bpf::programs::lsm::LsmContext +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::programs::lsm::LsmContext +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::programs::lsm::LsmContext +impl core::convert::Into for aya_bpf::programs::lsm::LsmContext where U: core::convert::From +pub fn aya_bpf::programs::lsm::LsmContext::into(self) -> U +impl core::convert::TryFrom for aya_bpf::programs::lsm::LsmContext where U: core::convert::Into +pub type aya_bpf::programs::lsm::LsmContext::Error = core::convert::Infallible +pub fn aya_bpf::programs::lsm::LsmContext::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::programs::lsm::LsmContext where U: core::convert::TryFrom +pub type aya_bpf::programs::lsm::LsmContext::Error = >::Error +pub fn aya_bpf::programs::lsm::LsmContext::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::programs::lsm::LsmContext where T: 'static + core::marker::Sized +pub fn aya_bpf::programs::lsm::LsmContext::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::programs::lsm::LsmContext where T: core::marker::Sized +pub fn aya_bpf::programs::lsm::LsmContext::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::programs::lsm::LsmContext where T: core::marker::Sized +pub fn aya_bpf::programs::lsm::LsmContext::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::programs::lsm::LsmContext +pub fn aya_bpf::programs::lsm::LsmContext::from(t: T) -> T +pub struct aya_bpf::programs::PerfEventContext +impl aya_bpf::programs::perf_event::PerfEventContext +pub fn aya_bpf::programs::perf_event::PerfEventContext::new(ctx: *mut core::ffi::c_void) -> aya_bpf::programs::perf_event::PerfEventContext +impl aya_bpf::BpfContext for aya_bpf::programs::perf_event::PerfEventContext +pub fn aya_bpf::programs::perf_event::PerfEventContext::as_ptr(&self) -> *mut core::ffi::c_void +impl !core::marker::Send for aya_bpf::programs::perf_event::PerfEventContext +impl !core::marker::Sync for aya_bpf::programs::perf_event::PerfEventContext +impl core::marker::Unpin for aya_bpf::programs::perf_event::PerfEventContext +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::programs::perf_event::PerfEventContext +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::programs::perf_event::PerfEventContext +impl core::convert::Into for aya_bpf::programs::perf_event::PerfEventContext where U: core::convert::From +pub fn aya_bpf::programs::perf_event::PerfEventContext::into(self) -> U +impl core::convert::TryFrom for aya_bpf::programs::perf_event::PerfEventContext where U: core::convert::Into +pub type aya_bpf::programs::perf_event::PerfEventContext::Error = core::convert::Infallible +pub fn aya_bpf::programs::perf_event::PerfEventContext::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::programs::perf_event::PerfEventContext where U: core::convert::TryFrom +pub type aya_bpf::programs::perf_event::PerfEventContext::Error = >::Error +pub fn aya_bpf::programs::perf_event::PerfEventContext::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::programs::perf_event::PerfEventContext where T: 'static + core::marker::Sized +pub fn aya_bpf::programs::perf_event::PerfEventContext::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::programs::perf_event::PerfEventContext where T: core::marker::Sized +pub fn aya_bpf::programs::perf_event::PerfEventContext::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::programs::perf_event::PerfEventContext where T: core::marker::Sized +pub fn aya_bpf::programs::perf_event::PerfEventContext::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::programs::perf_event::PerfEventContext +pub fn aya_bpf::programs::perf_event::PerfEventContext::from(t: T) -> T +pub struct aya_bpf::programs::ProbeContext +pub aya_bpf::programs::ProbeContext::regs: *mut aya_bpf_bindings::x86_64::bindings::pt_regs +impl aya_bpf::programs::probe::ProbeContext +pub fn aya_bpf::programs::probe::ProbeContext::arg(&self, n: usize) -> core::option::Option +pub fn aya_bpf::programs::probe::ProbeContext::new(ctx: *mut core::ffi::c_void) -> aya_bpf::programs::probe::ProbeContext +pub fn aya_bpf::programs::probe::ProbeContext::ret(&self) -> core::option::Option +impl aya_bpf::BpfContext for aya_bpf::programs::probe::ProbeContext +pub fn aya_bpf::programs::probe::ProbeContext::as_ptr(&self) -> *mut core::ffi::c_void +impl !core::marker::Send for aya_bpf::programs::probe::ProbeContext +impl !core::marker::Sync for aya_bpf::programs::probe::ProbeContext +impl core::marker::Unpin for aya_bpf::programs::probe::ProbeContext +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::programs::probe::ProbeContext +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::programs::probe::ProbeContext +impl core::convert::Into for aya_bpf::programs::probe::ProbeContext where U: core::convert::From +pub fn aya_bpf::programs::probe::ProbeContext::into(self) -> U +impl core::convert::TryFrom for aya_bpf::programs::probe::ProbeContext where U: core::convert::Into +pub type aya_bpf::programs::probe::ProbeContext::Error = core::convert::Infallible +pub fn aya_bpf::programs::probe::ProbeContext::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::programs::probe::ProbeContext where U: core::convert::TryFrom +pub type aya_bpf::programs::probe::ProbeContext::Error = >::Error +pub fn aya_bpf::programs::probe::ProbeContext::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::programs::probe::ProbeContext where T: 'static + core::marker::Sized +pub fn aya_bpf::programs::probe::ProbeContext::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::programs::probe::ProbeContext where T: core::marker::Sized +pub fn aya_bpf::programs::probe::ProbeContext::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::programs::probe::ProbeContext where T: core::marker::Sized +pub fn aya_bpf::programs::probe::ProbeContext::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::programs::probe::ProbeContext +pub fn aya_bpf::programs::probe::ProbeContext::from(t: T) -> T +pub struct aya_bpf::programs::RawTracePointContext +impl aya_bpf::programs::raw_tracepoint::RawTracePointContext +pub fn aya_bpf::programs::raw_tracepoint::RawTracePointContext::new(ctx: *mut core::ffi::c_void) -> aya_bpf::programs::raw_tracepoint::RawTracePointContext +impl aya_bpf::BpfContext for aya_bpf::programs::raw_tracepoint::RawTracePointContext +pub fn aya_bpf::programs::raw_tracepoint::RawTracePointContext::as_ptr(&self) -> *mut core::ffi::c_void +impl !core::marker::Send for aya_bpf::programs::raw_tracepoint::RawTracePointContext +impl !core::marker::Sync for aya_bpf::programs::raw_tracepoint::RawTracePointContext +impl core::marker::Unpin for aya_bpf::programs::raw_tracepoint::RawTracePointContext +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::programs::raw_tracepoint::RawTracePointContext +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::programs::raw_tracepoint::RawTracePointContext +impl core::convert::Into for aya_bpf::programs::raw_tracepoint::RawTracePointContext where U: core::convert::From +pub fn aya_bpf::programs::raw_tracepoint::RawTracePointContext::into(self) -> U +impl core::convert::TryFrom for aya_bpf::programs::raw_tracepoint::RawTracePointContext where U: core::convert::Into +pub type aya_bpf::programs::raw_tracepoint::RawTracePointContext::Error = core::convert::Infallible +pub fn aya_bpf::programs::raw_tracepoint::RawTracePointContext::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::programs::raw_tracepoint::RawTracePointContext where U: core::convert::TryFrom +pub type aya_bpf::programs::raw_tracepoint::RawTracePointContext::Error = >::Error +pub fn aya_bpf::programs::raw_tracepoint::RawTracePointContext::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::programs::raw_tracepoint::RawTracePointContext where T: 'static + core::marker::Sized +pub fn aya_bpf::programs::raw_tracepoint::RawTracePointContext::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::programs::raw_tracepoint::RawTracePointContext where T: core::marker::Sized +pub fn aya_bpf::programs::raw_tracepoint::RawTracePointContext::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::programs::raw_tracepoint::RawTracePointContext where T: core::marker::Sized +pub fn aya_bpf::programs::raw_tracepoint::RawTracePointContext::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::programs::raw_tracepoint::RawTracePointContext +pub fn aya_bpf::programs::raw_tracepoint::RawTracePointContext::from(t: T) -> T +pub struct aya_bpf::programs::SkBuffContext +pub aya_bpf::programs::SkBuffContext::skb: aya_bpf::programs::sk_buff::SkBuff +impl aya_bpf::programs::sk_buff::SkBuffContext +pub fn aya_bpf::programs::sk_buff::SkBuffContext::adjust_room(&self, len_diff: i32, mode: u32, flags: u64) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub fn aya_bpf::programs::sk_buff::SkBuffContext::cb(&self) -> &[u32] +pub fn aya_bpf::programs::sk_buff::SkBuffContext::cb_mut(&mut self) -> &mut [u32] +pub fn aya_bpf::programs::sk_buff::SkBuffContext::change_type(&self, ty: u32) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub fn aya_bpf::programs::sk_buff::SkBuffContext::clone_redirect(&self, if_index: u32, flags: u64) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub fn aya_bpf::programs::sk_buff::SkBuffContext::get_socket_uid(&self) -> u32 +pub fn aya_bpf::programs::sk_buff::SkBuffContext::l3_csum_replace(&self, offset: usize, from: u64, to: u64, size: u64) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub fn aya_bpf::programs::sk_buff::SkBuffContext::l4_csum_replace(&self, offset: usize, from: u64, to: u64, flags: u64) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub fn aya_bpf::programs::sk_buff::SkBuffContext::len(&self) -> u32 +pub fn aya_bpf::programs::sk_buff::SkBuffContext::load(&self, offset: usize) -> core::result::Result +pub fn aya_bpf::programs::sk_buff::SkBuffContext::load_bytes(&self, offset: usize, dst: &mut [u8]) -> core::result::Result +pub fn aya_bpf::programs::sk_buff::SkBuffContext::new(skb: *mut aya_bpf_bindings::x86_64::bindings::__sk_buff) -> aya_bpf::programs::sk_buff::SkBuffContext +pub fn aya_bpf::programs::sk_buff::SkBuffContext::pull_data(&self, len: u32) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub fn aya_bpf::programs::sk_buff::SkBuffContext::set_mark(&mut self, mark: u32) +pub fn aya_bpf::programs::sk_buff::SkBuffContext::store(&mut self, offset: usize, v: &T, flags: u64) -> core::result::Result<(), aya_bpf_cty::od::c_long> +impl aya_bpf::BpfContext for aya_bpf::programs::sk_buff::SkBuffContext +pub fn aya_bpf::programs::sk_buff::SkBuffContext::as_ptr(&self) -> *mut core::ffi::c_void +impl !core::marker::Send for aya_bpf::programs::sk_buff::SkBuffContext +impl !core::marker::Sync for aya_bpf::programs::sk_buff::SkBuffContext +impl core::marker::Unpin for aya_bpf::programs::sk_buff::SkBuffContext +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::programs::sk_buff::SkBuffContext +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::programs::sk_buff::SkBuffContext +impl core::convert::Into for aya_bpf::programs::sk_buff::SkBuffContext where U: core::convert::From +pub fn aya_bpf::programs::sk_buff::SkBuffContext::into(self) -> U +impl core::convert::TryFrom for aya_bpf::programs::sk_buff::SkBuffContext where U: core::convert::Into +pub type aya_bpf::programs::sk_buff::SkBuffContext::Error = core::convert::Infallible +pub fn aya_bpf::programs::sk_buff::SkBuffContext::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::programs::sk_buff::SkBuffContext where U: core::convert::TryFrom +pub type aya_bpf::programs::sk_buff::SkBuffContext::Error = >::Error +pub fn aya_bpf::programs::sk_buff::SkBuffContext::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::programs::sk_buff::SkBuffContext where T: 'static + core::marker::Sized +pub fn aya_bpf::programs::sk_buff::SkBuffContext::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::programs::sk_buff::SkBuffContext where T: core::marker::Sized +pub fn aya_bpf::programs::sk_buff::SkBuffContext::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::programs::sk_buff::SkBuffContext where T: core::marker::Sized +pub fn aya_bpf::programs::sk_buff::SkBuffContext::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::programs::sk_buff::SkBuffContext +pub fn aya_bpf::programs::sk_buff::SkBuffContext::from(t: T) -> T +pub struct aya_bpf::programs::SkLookupContext +pub aya_bpf::programs::SkLookupContext::lookup: *mut aya_bpf_bindings::x86_64::bindings::bpf_sk_lookup +impl aya_bpf::programs::sk_lookup::SkLookupContext +pub fn aya_bpf::programs::sk_lookup::SkLookupContext::new(lookup: *mut aya_bpf_bindings::x86_64::bindings::bpf_sk_lookup) -> aya_bpf::programs::sk_lookup::SkLookupContext +impl aya_bpf::BpfContext for aya_bpf::programs::sk_lookup::SkLookupContext +pub fn aya_bpf::programs::sk_lookup::SkLookupContext::as_ptr(&self) -> *mut core::ffi::c_void +impl !core::marker::Send for aya_bpf::programs::sk_lookup::SkLookupContext +impl !core::marker::Sync for aya_bpf::programs::sk_lookup::SkLookupContext +impl core::marker::Unpin for aya_bpf::programs::sk_lookup::SkLookupContext +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::programs::sk_lookup::SkLookupContext +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::programs::sk_lookup::SkLookupContext +impl core::convert::Into for aya_bpf::programs::sk_lookup::SkLookupContext where U: core::convert::From +pub fn aya_bpf::programs::sk_lookup::SkLookupContext::into(self) -> U +impl core::convert::TryFrom for aya_bpf::programs::sk_lookup::SkLookupContext where U: core::convert::Into +pub type aya_bpf::programs::sk_lookup::SkLookupContext::Error = core::convert::Infallible +pub fn aya_bpf::programs::sk_lookup::SkLookupContext::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::programs::sk_lookup::SkLookupContext where U: core::convert::TryFrom +pub type aya_bpf::programs::sk_lookup::SkLookupContext::Error = >::Error +pub fn aya_bpf::programs::sk_lookup::SkLookupContext::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::programs::sk_lookup::SkLookupContext where T: 'static + core::marker::Sized +pub fn aya_bpf::programs::sk_lookup::SkLookupContext::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::programs::sk_lookup::SkLookupContext where T: core::marker::Sized +pub fn aya_bpf::programs::sk_lookup::SkLookupContext::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::programs::sk_lookup::SkLookupContext where T: core::marker::Sized +pub fn aya_bpf::programs::sk_lookup::SkLookupContext::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::programs::sk_lookup::SkLookupContext +pub fn aya_bpf::programs::sk_lookup::SkLookupContext::from(t: T) -> T +pub struct aya_bpf::programs::SkMsgContext +pub aya_bpf::programs::SkMsgContext::msg: *mut aya_bpf_bindings::x86_64::bindings::sk_msg_md +impl aya_bpf::programs::sk_msg::SkMsgContext +pub fn aya_bpf::programs::sk_msg::SkMsgContext::data(&self) -> usize +pub fn aya_bpf::programs::sk_msg::SkMsgContext::data_end(&self) -> usize +pub fn aya_bpf::programs::sk_msg::SkMsgContext::new(msg: *mut aya_bpf_bindings::x86_64::bindings::sk_msg_md) -> aya_bpf::programs::sk_msg::SkMsgContext +pub fn aya_bpf::programs::sk_msg::SkMsgContext::pop_data(&self, start: u32, len: u32, flags: u64) -> core::result::Result<(), i64> +pub fn aya_bpf::programs::sk_msg::SkMsgContext::push_data(&self, start: u32, len: u32, flags: u64) -> core::result::Result<(), i64> +pub fn aya_bpf::programs::sk_msg::SkMsgContext::size(&self) -> u32 +impl aya_bpf::BpfContext for aya_bpf::programs::sk_msg::SkMsgContext +pub fn aya_bpf::programs::sk_msg::SkMsgContext::as_ptr(&self) -> *mut core::ffi::c_void +impl !core::marker::Send for aya_bpf::programs::sk_msg::SkMsgContext +impl !core::marker::Sync for aya_bpf::programs::sk_msg::SkMsgContext +impl core::marker::Unpin for aya_bpf::programs::sk_msg::SkMsgContext +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::programs::sk_msg::SkMsgContext +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::programs::sk_msg::SkMsgContext +impl core::convert::Into for aya_bpf::programs::sk_msg::SkMsgContext where U: core::convert::From +pub fn aya_bpf::programs::sk_msg::SkMsgContext::into(self) -> U +impl core::convert::TryFrom for aya_bpf::programs::sk_msg::SkMsgContext where U: core::convert::Into +pub type aya_bpf::programs::sk_msg::SkMsgContext::Error = core::convert::Infallible +pub fn aya_bpf::programs::sk_msg::SkMsgContext::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::programs::sk_msg::SkMsgContext where U: core::convert::TryFrom +pub type aya_bpf::programs::sk_msg::SkMsgContext::Error = >::Error +pub fn aya_bpf::programs::sk_msg::SkMsgContext::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::programs::sk_msg::SkMsgContext where T: 'static + core::marker::Sized +pub fn aya_bpf::programs::sk_msg::SkMsgContext::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::programs::sk_msg::SkMsgContext where T: core::marker::Sized +pub fn aya_bpf::programs::sk_msg::SkMsgContext::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::programs::sk_msg::SkMsgContext where T: core::marker::Sized +pub fn aya_bpf::programs::sk_msg::SkMsgContext::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::programs::sk_msg::SkMsgContext +pub fn aya_bpf::programs::sk_msg::SkMsgContext::from(t: T) -> T +pub struct aya_bpf::programs::SockAddrContext +pub aya_bpf::programs::SockAddrContext::sock_addr: *mut aya_bpf_bindings::x86_64::bindings::bpf_sock_addr +impl aya_bpf::programs::sock_addr::SockAddrContext +pub fn aya_bpf::programs::sock_addr::SockAddrContext::new(sock_addr: *mut aya_bpf_bindings::x86_64::bindings::bpf_sock_addr) -> aya_bpf::programs::sock_addr::SockAddrContext +impl aya_bpf::BpfContext for aya_bpf::programs::sock_addr::SockAddrContext +pub fn aya_bpf::programs::sock_addr::SockAddrContext::as_ptr(&self) -> *mut core::ffi::c_void +impl !core::marker::Send for aya_bpf::programs::sock_addr::SockAddrContext +impl !core::marker::Sync for aya_bpf::programs::sock_addr::SockAddrContext +impl core::marker::Unpin for aya_bpf::programs::sock_addr::SockAddrContext +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::programs::sock_addr::SockAddrContext +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::programs::sock_addr::SockAddrContext +impl core::convert::Into for aya_bpf::programs::sock_addr::SockAddrContext where U: core::convert::From +pub fn aya_bpf::programs::sock_addr::SockAddrContext::into(self) -> U +impl core::convert::TryFrom for aya_bpf::programs::sock_addr::SockAddrContext where U: core::convert::Into +pub type aya_bpf::programs::sock_addr::SockAddrContext::Error = core::convert::Infallible +pub fn aya_bpf::programs::sock_addr::SockAddrContext::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::programs::sock_addr::SockAddrContext where U: core::convert::TryFrom +pub type aya_bpf::programs::sock_addr::SockAddrContext::Error = >::Error +pub fn aya_bpf::programs::sock_addr::SockAddrContext::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::programs::sock_addr::SockAddrContext where T: 'static + core::marker::Sized +pub fn aya_bpf::programs::sock_addr::SockAddrContext::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::programs::sock_addr::SockAddrContext where T: core::marker::Sized +pub fn aya_bpf::programs::sock_addr::SockAddrContext::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::programs::sock_addr::SockAddrContext where T: core::marker::Sized +pub fn aya_bpf::programs::sock_addr::SockAddrContext::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::programs::sock_addr::SockAddrContext +pub fn aya_bpf::programs::sock_addr::SockAddrContext::from(t: T) -> T +pub struct aya_bpf::programs::SockContext +pub aya_bpf::programs::SockContext::sock: *mut aya_bpf_bindings::x86_64::bindings::bpf_sock +impl aya_bpf::programs::sock::SockContext +pub fn aya_bpf::programs::sock::SockContext::new(sock: *mut aya_bpf_bindings::x86_64::bindings::bpf_sock) -> aya_bpf::programs::sock::SockContext +impl aya_bpf::BpfContext for aya_bpf::programs::sock::SockContext +pub fn aya_bpf::programs::sock::SockContext::as_ptr(&self) -> *mut core::ffi::c_void +impl !core::marker::Send for aya_bpf::programs::sock::SockContext +impl !core::marker::Sync for aya_bpf::programs::sock::SockContext +impl core::marker::Unpin for aya_bpf::programs::sock::SockContext +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::programs::sock::SockContext +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::programs::sock::SockContext +impl core::convert::Into for aya_bpf::programs::sock::SockContext where U: core::convert::From +pub fn aya_bpf::programs::sock::SockContext::into(self) -> U +impl core::convert::TryFrom for aya_bpf::programs::sock::SockContext where U: core::convert::Into +pub type aya_bpf::programs::sock::SockContext::Error = core::convert::Infallible +pub fn aya_bpf::programs::sock::SockContext::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::programs::sock::SockContext where U: core::convert::TryFrom +pub type aya_bpf::programs::sock::SockContext::Error = >::Error +pub fn aya_bpf::programs::sock::SockContext::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::programs::sock::SockContext where T: 'static + core::marker::Sized +pub fn aya_bpf::programs::sock::SockContext::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::programs::sock::SockContext where T: core::marker::Sized +pub fn aya_bpf::programs::sock::SockContext::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::programs::sock::SockContext where T: core::marker::Sized +pub fn aya_bpf::programs::sock::SockContext::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::programs::sock::SockContext +pub fn aya_bpf::programs::sock::SockContext::from(t: T) -> T +pub struct aya_bpf::programs::SockOpsContext +pub aya_bpf::programs::SockOpsContext::ops: *mut aya_bpf_bindings::x86_64::bindings::bpf_sock_ops +impl aya_bpf::programs::sock_ops::SockOpsContext +pub fn aya_bpf::programs::sock_ops::SockOpsContext::arg(&self, n: usize) -> u32 +pub fn aya_bpf::programs::sock_ops::SockOpsContext::cb_flags(&self) -> u32 +pub fn aya_bpf::programs::sock_ops::SockOpsContext::family(&self) -> u32 +pub fn aya_bpf::programs::sock_ops::SockOpsContext::local_ip4(&self) -> u32 +pub fn aya_bpf::programs::sock_ops::SockOpsContext::local_ip6(&self) -> [u32; 4] +pub fn aya_bpf::programs::sock_ops::SockOpsContext::local_port(&self) -> u32 +pub fn aya_bpf::programs::sock_ops::SockOpsContext::new(ops: *mut aya_bpf_bindings::x86_64::bindings::bpf_sock_ops) -> aya_bpf::programs::sock_ops::SockOpsContext +pub fn aya_bpf::programs::sock_ops::SockOpsContext::op(&self) -> u32 +pub fn aya_bpf::programs::sock_ops::SockOpsContext::remote_ip4(&self) -> u32 +pub fn aya_bpf::programs::sock_ops::SockOpsContext::remote_ip6(&self) -> [u32; 4] +pub fn aya_bpf::programs::sock_ops::SockOpsContext::remote_port(&self) -> u32 +pub fn aya_bpf::programs::sock_ops::SockOpsContext::set_cb_flags(&self, flags: i32) -> core::result::Result<(), i64> +impl aya_bpf::BpfContext for aya_bpf::programs::sock_ops::SockOpsContext +pub fn aya_bpf::programs::sock_ops::SockOpsContext::as_ptr(&self) -> *mut core::ffi::c_void +impl !core::marker::Send for aya_bpf::programs::sock_ops::SockOpsContext +impl !core::marker::Sync for aya_bpf::programs::sock_ops::SockOpsContext +impl core::marker::Unpin for aya_bpf::programs::sock_ops::SockOpsContext +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::programs::sock_ops::SockOpsContext +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::programs::sock_ops::SockOpsContext +impl core::convert::Into for aya_bpf::programs::sock_ops::SockOpsContext where U: core::convert::From +pub fn aya_bpf::programs::sock_ops::SockOpsContext::into(self) -> U +impl core::convert::TryFrom for aya_bpf::programs::sock_ops::SockOpsContext where U: core::convert::Into +pub type aya_bpf::programs::sock_ops::SockOpsContext::Error = core::convert::Infallible +pub fn aya_bpf::programs::sock_ops::SockOpsContext::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::programs::sock_ops::SockOpsContext where U: core::convert::TryFrom +pub type aya_bpf::programs::sock_ops::SockOpsContext::Error = >::Error +pub fn aya_bpf::programs::sock_ops::SockOpsContext::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::programs::sock_ops::SockOpsContext where T: 'static + core::marker::Sized +pub fn aya_bpf::programs::sock_ops::SockOpsContext::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::programs::sock_ops::SockOpsContext where T: core::marker::Sized +pub fn aya_bpf::programs::sock_ops::SockOpsContext::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::programs::sock_ops::SockOpsContext where T: core::marker::Sized +pub fn aya_bpf::programs::sock_ops::SockOpsContext::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::programs::sock_ops::SockOpsContext +pub fn aya_bpf::programs::sock_ops::SockOpsContext::from(t: T) -> T +pub struct aya_bpf::programs::SockoptContext +pub aya_bpf::programs::SockoptContext::sockopt: *mut aya_bpf_bindings::x86_64::bindings::bpf_sockopt +impl aya_bpf::programs::sockopt::SockoptContext +pub fn aya_bpf::programs::sockopt::SockoptContext::new(sockopt: *mut aya_bpf_bindings::x86_64::bindings::bpf_sockopt) -> aya_bpf::programs::sockopt::SockoptContext +impl aya_bpf::BpfContext for aya_bpf::programs::sockopt::SockoptContext +pub fn aya_bpf::programs::sockopt::SockoptContext::as_ptr(&self) -> *mut core::ffi::c_void +impl !core::marker::Send for aya_bpf::programs::sockopt::SockoptContext +impl !core::marker::Sync for aya_bpf::programs::sockopt::SockoptContext +impl core::marker::Unpin for aya_bpf::programs::sockopt::SockoptContext +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::programs::sockopt::SockoptContext +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::programs::sockopt::SockoptContext +impl core::convert::Into for aya_bpf::programs::sockopt::SockoptContext where U: core::convert::From +pub fn aya_bpf::programs::sockopt::SockoptContext::into(self) -> U +impl core::convert::TryFrom for aya_bpf::programs::sockopt::SockoptContext where U: core::convert::Into +pub type aya_bpf::programs::sockopt::SockoptContext::Error = core::convert::Infallible +pub fn aya_bpf::programs::sockopt::SockoptContext::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::programs::sockopt::SockoptContext where U: core::convert::TryFrom +pub type aya_bpf::programs::sockopt::SockoptContext::Error = >::Error +pub fn aya_bpf::programs::sockopt::SockoptContext::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::programs::sockopt::SockoptContext where T: 'static + core::marker::Sized +pub fn aya_bpf::programs::sockopt::SockoptContext::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::programs::sockopt::SockoptContext where T: core::marker::Sized +pub fn aya_bpf::programs::sockopt::SockoptContext::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::programs::sockopt::SockoptContext where T: core::marker::Sized +pub fn aya_bpf::programs::sockopt::SockoptContext::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::programs::sockopt::SockoptContext +pub fn aya_bpf::programs::sockopt::SockoptContext::from(t: T) -> T +pub struct aya_bpf::programs::SysctlContext +pub aya_bpf::programs::SysctlContext::sysctl: *mut aya_bpf_bindings::x86_64::bindings::bpf_sysctl +impl aya_bpf::programs::sysctl::SysctlContext +pub fn aya_bpf::programs::sysctl::SysctlContext::new(sysctl: *mut aya_bpf_bindings::x86_64::bindings::bpf_sysctl) -> aya_bpf::programs::sysctl::SysctlContext +impl aya_bpf::BpfContext for aya_bpf::programs::sysctl::SysctlContext +pub fn aya_bpf::programs::sysctl::SysctlContext::as_ptr(&self) -> *mut core::ffi::c_void +impl !core::marker::Send for aya_bpf::programs::sysctl::SysctlContext +impl !core::marker::Sync for aya_bpf::programs::sysctl::SysctlContext +impl core::marker::Unpin for aya_bpf::programs::sysctl::SysctlContext +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::programs::sysctl::SysctlContext +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::programs::sysctl::SysctlContext +impl core::convert::Into for aya_bpf::programs::sysctl::SysctlContext where U: core::convert::From +pub fn aya_bpf::programs::sysctl::SysctlContext::into(self) -> U +impl core::convert::TryFrom for aya_bpf::programs::sysctl::SysctlContext where U: core::convert::Into +pub type aya_bpf::programs::sysctl::SysctlContext::Error = core::convert::Infallible +pub fn aya_bpf::programs::sysctl::SysctlContext::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::programs::sysctl::SysctlContext where U: core::convert::TryFrom +pub type aya_bpf::programs::sysctl::SysctlContext::Error = >::Error +pub fn aya_bpf::programs::sysctl::SysctlContext::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::programs::sysctl::SysctlContext where T: 'static + core::marker::Sized +pub fn aya_bpf::programs::sysctl::SysctlContext::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::programs::sysctl::SysctlContext where T: core::marker::Sized +pub fn aya_bpf::programs::sysctl::SysctlContext::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::programs::sysctl::SysctlContext where T: core::marker::Sized +pub fn aya_bpf::programs::sysctl::SysctlContext::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::programs::sysctl::SysctlContext +pub fn aya_bpf::programs::sysctl::SysctlContext::from(t: T) -> T +pub struct aya_bpf::programs::TcContext +pub aya_bpf::programs::TcContext::skb: aya_bpf::programs::sk_buff::SkBuff +impl aya_bpf::programs::tc::TcContext +pub fn aya_bpf::programs::tc::TcContext::adjust_room(&self, len_diff: i32, mode: u32, flags: u64) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub fn aya_bpf::programs::tc::TcContext::cb(&self) -> &[u32] +pub fn aya_bpf::programs::tc::TcContext::cb_mut(&mut self) -> &mut [u32] +pub fn aya_bpf::programs::tc::TcContext::change_proto(&self, proto: u16, flags: u64) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub fn aya_bpf::programs::tc::TcContext::change_type(&self, ty: u32) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub fn aya_bpf::programs::tc::TcContext::clone_redirect(&self, if_index: u32, flags: u64) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub fn aya_bpf::programs::tc::TcContext::data(&self) -> usize +pub fn aya_bpf::programs::tc::TcContext::data_end(&self) -> usize +pub fn aya_bpf::programs::tc::TcContext::get_socket_uid(&self) -> u32 +pub fn aya_bpf::programs::tc::TcContext::l3_csum_replace(&self, offset: usize, from: u64, to: u64, size: u64) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub fn aya_bpf::programs::tc::TcContext::l4_csum_replace(&self, offset: usize, from: u64, to: u64, flags: u64) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub fn aya_bpf::programs::tc::TcContext::len(&self) -> u32 +pub fn aya_bpf::programs::tc::TcContext::load(&self, offset: usize) -> core::result::Result +pub fn aya_bpf::programs::tc::TcContext::load_bytes(&self, offset: usize, dst: &mut [u8]) -> core::result::Result +pub fn aya_bpf::programs::tc::TcContext::new(skb: *mut aya_bpf_bindings::x86_64::bindings::__sk_buff) -> aya_bpf::programs::tc::TcContext +pub fn aya_bpf::programs::tc::TcContext::pull_data(&self, len: u32) -> core::result::Result<(), aya_bpf_cty::od::c_long> +pub fn aya_bpf::programs::tc::TcContext::set_mark(&mut self, mark: u32) +pub fn aya_bpf::programs::tc::TcContext::store(&mut self, offset: usize, v: &T, flags: u64) -> core::result::Result<(), aya_bpf_cty::od::c_long> +impl aya_bpf::BpfContext for aya_bpf::programs::tc::TcContext +pub fn aya_bpf::programs::tc::TcContext::as_ptr(&self) -> *mut aya_bpf_cty::c_void +impl !core::marker::Send for aya_bpf::programs::tc::TcContext +impl !core::marker::Sync for aya_bpf::programs::tc::TcContext +impl core::marker::Unpin for aya_bpf::programs::tc::TcContext +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::programs::tc::TcContext +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::programs::tc::TcContext +impl core::convert::Into for aya_bpf::programs::tc::TcContext where U: core::convert::From +pub fn aya_bpf::programs::tc::TcContext::into(self) -> U +impl core::convert::TryFrom for aya_bpf::programs::tc::TcContext where U: core::convert::Into +pub type aya_bpf::programs::tc::TcContext::Error = core::convert::Infallible +pub fn aya_bpf::programs::tc::TcContext::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::programs::tc::TcContext where U: core::convert::TryFrom +pub type aya_bpf::programs::tc::TcContext::Error = >::Error +pub fn aya_bpf::programs::tc::TcContext::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::programs::tc::TcContext where T: 'static + core::marker::Sized +pub fn aya_bpf::programs::tc::TcContext::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::programs::tc::TcContext where T: core::marker::Sized +pub fn aya_bpf::programs::tc::TcContext::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::programs::tc::TcContext where T: core::marker::Sized +pub fn aya_bpf::programs::tc::TcContext::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::programs::tc::TcContext +pub fn aya_bpf::programs::tc::TcContext::from(t: T) -> T +pub struct aya_bpf::programs::TracePointContext +impl aya_bpf::programs::tracepoint::TracePointContext +pub fn aya_bpf::programs::tracepoint::TracePointContext::new(ctx: *mut core::ffi::c_void) -> aya_bpf::programs::tracepoint::TracePointContext +pub unsafe fn aya_bpf::programs::tracepoint::TracePointContext::read_at(&self, offset: usize) -> core::result::Result +impl aya_bpf::BpfContext for aya_bpf::programs::tracepoint::TracePointContext +pub fn aya_bpf::programs::tracepoint::TracePointContext::as_ptr(&self) -> *mut core::ffi::c_void +impl !core::marker::Send for aya_bpf::programs::tracepoint::TracePointContext +impl !core::marker::Sync for aya_bpf::programs::tracepoint::TracePointContext +impl core::marker::Unpin for aya_bpf::programs::tracepoint::TracePointContext +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::programs::tracepoint::TracePointContext +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::programs::tracepoint::TracePointContext +impl core::convert::Into for aya_bpf::programs::tracepoint::TracePointContext where U: core::convert::From +pub fn aya_bpf::programs::tracepoint::TracePointContext::into(self) -> U +impl core::convert::TryFrom for aya_bpf::programs::tracepoint::TracePointContext where U: core::convert::Into +pub type aya_bpf::programs::tracepoint::TracePointContext::Error = core::convert::Infallible +pub fn aya_bpf::programs::tracepoint::TracePointContext::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::programs::tracepoint::TracePointContext where U: core::convert::TryFrom +pub type aya_bpf::programs::tracepoint::TracePointContext::Error = >::Error +pub fn aya_bpf::programs::tracepoint::TracePointContext::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::programs::tracepoint::TracePointContext where T: 'static + core::marker::Sized +pub fn aya_bpf::programs::tracepoint::TracePointContext::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::programs::tracepoint::TracePointContext where T: core::marker::Sized +pub fn aya_bpf::programs::tracepoint::TracePointContext::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::programs::tracepoint::TracePointContext where T: core::marker::Sized +pub fn aya_bpf::programs::tracepoint::TracePointContext::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::programs::tracepoint::TracePointContext +pub fn aya_bpf::programs::tracepoint::TracePointContext::from(t: T) -> T +pub struct aya_bpf::programs::XdpContext +pub aya_bpf::programs::XdpContext::ctx: *mut aya_bpf_bindings::x86_64::bindings::xdp_md +impl aya_bpf::programs::xdp::XdpContext +pub fn aya_bpf::programs::xdp::XdpContext::data(&self) -> usize +pub fn aya_bpf::programs::xdp::XdpContext::data_end(&self) -> usize +pub fn aya_bpf::programs::xdp::XdpContext::metadata(&self) -> usize +pub fn aya_bpf::programs::xdp::XdpContext::metadata_end(&self) -> usize +pub fn aya_bpf::programs::xdp::XdpContext::new(ctx: *mut aya_bpf_bindings::x86_64::bindings::xdp_md) -> aya_bpf::programs::xdp::XdpContext +impl aya_bpf::BpfContext for aya_bpf::programs::xdp::XdpContext +pub fn aya_bpf::programs::xdp::XdpContext::as_ptr(&self) -> *mut core::ffi::c_void +impl !core::marker::Send for aya_bpf::programs::xdp::XdpContext +impl !core::marker::Sync for aya_bpf::programs::xdp::XdpContext +impl core::marker::Unpin for aya_bpf::programs::xdp::XdpContext +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::programs::xdp::XdpContext +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::programs::xdp::XdpContext +impl core::convert::Into for aya_bpf::programs::xdp::XdpContext where U: core::convert::From +pub fn aya_bpf::programs::xdp::XdpContext::into(self) -> U +impl core::convert::TryFrom for aya_bpf::programs::xdp::XdpContext where U: core::convert::Into +pub type aya_bpf::programs::xdp::XdpContext::Error = core::convert::Infallible +pub fn aya_bpf::programs::xdp::XdpContext::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::programs::xdp::XdpContext where U: core::convert::TryFrom +pub type aya_bpf::programs::xdp::XdpContext::Error = >::Error +pub fn aya_bpf::programs::xdp::XdpContext::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::programs::xdp::XdpContext where T: 'static + core::marker::Sized +pub fn aya_bpf::programs::xdp::XdpContext::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::programs::xdp::XdpContext where T: core::marker::Sized +pub fn aya_bpf::programs::xdp::XdpContext::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::programs::xdp::XdpContext where T: core::marker::Sized +pub fn aya_bpf::programs::xdp::XdpContext::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::programs::xdp::XdpContext +pub fn aya_bpf::programs::xdp::XdpContext::from(t: T) -> T +pub macro aya_bpf::bpf_printk! +pub struct aya_bpf::PtRegs +impl aya_bpf::PtRegs +pub fn aya_bpf::PtRegs::arg(&self, n: usize) -> core::option::Option +pub fn aya_bpf::PtRegs::as_ptr(&self) -> *mut aya_bpf_bindings::x86_64::bindings::pt_regs +pub fn aya_bpf::PtRegs::new(regs: *mut aya_bpf_bindings::x86_64::bindings::pt_regs) -> Self +pub fn aya_bpf::PtRegs::ret(&self) -> core::option::Option +impl !core::marker::Send for aya_bpf::PtRegs +impl !core::marker::Sync for aya_bpf::PtRegs +impl core::marker::Unpin for aya_bpf::PtRegs +impl core::panic::unwind_safe::RefUnwindSafe for aya_bpf::PtRegs +impl core::panic::unwind_safe::UnwindSafe for aya_bpf::PtRegs +impl core::convert::Into for aya_bpf::PtRegs where U: core::convert::From +pub fn aya_bpf::PtRegs::into(self) -> U +impl core::convert::TryFrom for aya_bpf::PtRegs where U: core::convert::Into +pub type aya_bpf::PtRegs::Error = core::convert::Infallible +pub fn aya_bpf::PtRegs::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_bpf::PtRegs where U: core::convert::TryFrom +pub type aya_bpf::PtRegs::Error = >::Error +pub fn aya_bpf::PtRegs::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_bpf::PtRegs where T: 'static + core::marker::Sized +pub fn aya_bpf::PtRegs::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_bpf::PtRegs where T: core::marker::Sized +pub fn aya_bpf::PtRegs::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_bpf::PtRegs where T: core::marker::Sized +pub fn aya_bpf::PtRegs::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_bpf::PtRegs +pub fn aya_bpf::PtRegs::from(t: T) -> T +pub const aya_bpf::TASK_COMM_LEN: usize = 16usize +pub trait aya_bpf::BpfContext +pub fn aya_bpf::BpfContext::as_ptr(&self) -> *mut core::ffi::c_void +pub fn aya_bpf::BpfContext::command(&self) -> core::result::Result<[u8; 16], aya_bpf_cty::od::c_long> +pub fn aya_bpf::BpfContext::gid(&self) -> u32 +pub fn aya_bpf::BpfContext::pid(&self) -> u32 +pub fn aya_bpf::BpfContext::tgid(&self) -> u32 +pub fn aya_bpf::BpfContext::uid(&self) -> u32 +impl aya_bpf::BpfContext for aya_bpf::programs::device::DeviceContext +pub fn aya_bpf::programs::device::DeviceContext::as_ptr(&self) -> *mut core::ffi::c_void +impl aya_bpf::BpfContext for aya_bpf::programs::fentry::FEntryContext +pub fn aya_bpf::programs::fentry::FEntryContext::as_ptr(&self) -> *mut core::ffi::c_void +impl aya_bpf::BpfContext for aya_bpf::programs::fexit::FExitContext +pub fn aya_bpf::programs::fexit::FExitContext::as_ptr(&self) -> *mut core::ffi::c_void +impl aya_bpf::BpfContext for aya_bpf::programs::lsm::LsmContext +pub fn aya_bpf::programs::lsm::LsmContext::as_ptr(&self) -> *mut core::ffi::c_void +impl aya_bpf::BpfContext for aya_bpf::programs::perf_event::PerfEventContext +pub fn aya_bpf::programs::perf_event::PerfEventContext::as_ptr(&self) -> *mut core::ffi::c_void +impl aya_bpf::BpfContext for aya_bpf::programs::probe::ProbeContext +pub fn aya_bpf::programs::probe::ProbeContext::as_ptr(&self) -> *mut core::ffi::c_void +impl aya_bpf::BpfContext for aya_bpf::programs::raw_tracepoint::RawTracePointContext +pub fn aya_bpf::programs::raw_tracepoint::RawTracePointContext::as_ptr(&self) -> *mut core::ffi::c_void +impl aya_bpf::BpfContext for aya_bpf::programs::sk_buff::SkBuffContext +pub fn aya_bpf::programs::sk_buff::SkBuffContext::as_ptr(&self) -> *mut core::ffi::c_void +impl aya_bpf::BpfContext for aya_bpf::programs::sk_lookup::SkLookupContext +pub fn aya_bpf::programs::sk_lookup::SkLookupContext::as_ptr(&self) -> *mut core::ffi::c_void +impl aya_bpf::BpfContext for aya_bpf::programs::sk_msg::SkMsgContext +pub fn aya_bpf::programs::sk_msg::SkMsgContext::as_ptr(&self) -> *mut core::ffi::c_void +impl aya_bpf::BpfContext for aya_bpf::programs::sock::SockContext +pub fn aya_bpf::programs::sock::SockContext::as_ptr(&self) -> *mut core::ffi::c_void +impl aya_bpf::BpfContext for aya_bpf::programs::sock_addr::SockAddrContext +pub fn aya_bpf::programs::sock_addr::SockAddrContext::as_ptr(&self) -> *mut core::ffi::c_void +impl aya_bpf::BpfContext for aya_bpf::programs::sock_ops::SockOpsContext +pub fn aya_bpf::programs::sock_ops::SockOpsContext::as_ptr(&self) -> *mut core::ffi::c_void +impl aya_bpf::BpfContext for aya_bpf::programs::sockopt::SockoptContext +pub fn aya_bpf::programs::sockopt::SockoptContext::as_ptr(&self) -> *mut core::ffi::c_void +impl aya_bpf::BpfContext for aya_bpf::programs::sysctl::SysctlContext +pub fn aya_bpf::programs::sysctl::SysctlContext::as_ptr(&self) -> *mut core::ffi::c_void +impl aya_bpf::BpfContext for aya_bpf::programs::tc::TcContext +pub fn aya_bpf::programs::tc::TcContext::as_ptr(&self) -> *mut aya_bpf_cty::c_void +impl aya_bpf::BpfContext for aya_bpf::programs::tp_btf::BtfTracePointContext +pub fn aya_bpf::programs::tp_btf::BtfTracePointContext::as_ptr(&self) -> *mut core::ffi::c_void +impl aya_bpf::BpfContext for aya_bpf::programs::tracepoint::TracePointContext +pub fn aya_bpf::programs::tracepoint::TracePointContext::as_ptr(&self) -> *mut core::ffi::c_void +impl aya_bpf::BpfContext for aya_bpf::programs::xdp::XdpContext +pub fn aya_bpf::programs::xdp::XdpContext::as_ptr(&self) -> *mut core::ffi::c_void +pub fn aya_bpf::check_bounds_signed(value: i64, lower: i64, upper: i64) -> bool +#[no_mangle] pub unsafe c fn aya_bpf::memcpy(dest: *mut u8, src: *mut u8, n: usize) +#[no_mangle] pub unsafe c fn aya_bpf::memset(s: *mut u8, c: aya_bpf_cty::ad::c_int, n: usize) diff --git a/xtask/public-api/aya-log-common.txt b/xtask/public-api/aya-log-common.txt new file mode 100644 index 00000000..7e28268a --- /dev/null +++ b/xtask/public-api/aya-log-common.txt @@ -0,0 +1,252 @@ +pub mod aya_log_common +#[repr(u8)] pub enum aya_log_common::Argument +pub aya_log_common::Argument::ArrU16Len8 +pub aya_log_common::Argument::ArrU8Len16 +pub aya_log_common::Argument::ArrU8Len6 +pub aya_log_common::Argument::Bytes +pub aya_log_common::Argument::DisplayHint +pub aya_log_common::Argument::F32 +pub aya_log_common::Argument::F64 +pub aya_log_common::Argument::I16 +pub aya_log_common::Argument::I32 +pub aya_log_common::Argument::I64 +pub aya_log_common::Argument::I8 +pub aya_log_common::Argument::Isize +pub aya_log_common::Argument::Str +pub aya_log_common::Argument::U16 +pub aya_log_common::Argument::U32 +pub aya_log_common::Argument::U64 +pub aya_log_common::Argument::U8 +pub aya_log_common::Argument::Usize +impl core::clone::Clone for aya_log_common::Argument +pub fn aya_log_common::Argument::clone(&self) -> aya_log_common::Argument +impl core::fmt::Debug for aya_log_common::Argument +pub fn aya_log_common::Argument::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_log_common::Argument +impl core::marker::Send for aya_log_common::Argument +impl core::marker::Sync for aya_log_common::Argument +impl core::marker::Unpin for aya_log_common::Argument +impl core::panic::unwind_safe::RefUnwindSafe for aya_log_common::Argument +impl core::panic::unwind_safe::UnwindSafe for aya_log_common::Argument +impl core::convert::Into for aya_log_common::Argument where U: core::convert::From +pub fn aya_log_common::Argument::into(self) -> U +impl core::convert::TryFrom for aya_log_common::Argument where U: core::convert::Into +pub type aya_log_common::Argument::Error = core::convert::Infallible +pub fn aya_log_common::Argument::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_log_common::Argument where U: core::convert::TryFrom +pub type aya_log_common::Argument::Error = >::Error +pub fn aya_log_common::Argument::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_log_common::Argument where T: 'static + core::marker::Sized +pub fn aya_log_common::Argument::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_log_common::Argument where T: core::marker::Sized +pub fn aya_log_common::Argument::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_log_common::Argument where T: core::marker::Sized +pub fn aya_log_common::Argument::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_log_common::Argument +pub fn aya_log_common::Argument::from(t: T) -> T +#[repr(u8)] pub enum aya_log_common::DisplayHint +pub aya_log_common::DisplayHint::Default = 1 +pub aya_log_common::DisplayHint::Ip +pub aya_log_common::DisplayHint::LowerHex +pub aya_log_common::DisplayHint::LowerMac +pub aya_log_common::DisplayHint::UpperHex +pub aya_log_common::DisplayHint::UpperMac +impl aya_log_common::WriteToBuf for aya_log_common::DisplayHint +pub fn aya_log_common::DisplayHint::write(self, buf: &mut [u8]) -> core::result::Result +impl core::convert::From for u8 +pub fn u8::from(enum_value: aya_log_common::DisplayHint) -> Self +impl core::clone::Clone for aya_log_common::DisplayHint +pub fn aya_log_common::DisplayHint::clone(&self) -> aya_log_common::DisplayHint +impl core::cmp::Eq for aya_log_common::DisplayHint +impl core::cmp::PartialEq for aya_log_common::DisplayHint +pub fn aya_log_common::DisplayHint::eq(&self, other: &aya_log_common::DisplayHint) -> bool +impl core::fmt::Debug for aya_log_common::DisplayHint +pub fn aya_log_common::DisplayHint::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_log_common::DisplayHint +impl core::marker::StructuralEq for aya_log_common::DisplayHint +impl core::marker::StructuralPartialEq for aya_log_common::DisplayHint +impl core::marker::Send for aya_log_common::DisplayHint +impl core::marker::Sync for aya_log_common::DisplayHint +impl core::marker::Unpin for aya_log_common::DisplayHint +impl core::panic::unwind_safe::RefUnwindSafe for aya_log_common::DisplayHint +impl core::panic::unwind_safe::UnwindSafe for aya_log_common::DisplayHint +impl core::convert::Into for aya_log_common::DisplayHint where U: core::convert::From +pub fn aya_log_common::DisplayHint::into(self) -> U +impl core::convert::TryFrom for aya_log_common::DisplayHint where U: core::convert::Into +pub type aya_log_common::DisplayHint::Error = core::convert::Infallible +pub fn aya_log_common::DisplayHint::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_log_common::DisplayHint where U: core::convert::TryFrom +pub type aya_log_common::DisplayHint::Error = >::Error +pub fn aya_log_common::DisplayHint::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_log_common::DisplayHint where T: 'static + core::marker::Sized +pub fn aya_log_common::DisplayHint::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_log_common::DisplayHint where T: core::marker::Sized +pub fn aya_log_common::DisplayHint::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_log_common::DisplayHint where T: core::marker::Sized +pub fn aya_log_common::DisplayHint::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_log_common::DisplayHint +pub fn aya_log_common::DisplayHint::from(t: T) -> T +#[repr(u8)] pub enum aya_log_common::Level +pub aya_log_common::Level::Debug +pub aya_log_common::Level::Error = 1 +pub aya_log_common::Level::Info +pub aya_log_common::Level::Trace +pub aya_log_common::Level::Warn +impl core::convert::From for u8 +pub fn u8::from(enum_value: aya_log_common::Level) -> Self +impl core::clone::Clone for aya_log_common::Level +pub fn aya_log_common::Level::clone(&self) -> aya_log_common::Level +impl core::cmp::Eq for aya_log_common::Level +impl core::cmp::PartialEq for aya_log_common::Level +pub fn aya_log_common::Level::eq(&self, other: &aya_log_common::Level) -> bool +impl core::fmt::Debug for aya_log_common::Level +pub fn aya_log_common::Level::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::hash::Hash for aya_log_common::Level +pub fn aya_log_common::Level::hash<__H: core::hash::Hasher>(&self, state: &mut __H) +impl core::marker::Copy for aya_log_common::Level +impl core::marker::StructuralEq for aya_log_common::Level +impl core::marker::StructuralPartialEq for aya_log_common::Level +impl core::marker::Send for aya_log_common::Level +impl core::marker::Sync for aya_log_common::Level +impl core::marker::Unpin for aya_log_common::Level +impl core::panic::unwind_safe::RefUnwindSafe for aya_log_common::Level +impl core::panic::unwind_safe::UnwindSafe for aya_log_common::Level +impl core::convert::Into for aya_log_common::Level where U: core::convert::From +pub fn aya_log_common::Level::into(self) -> U +impl core::convert::TryFrom for aya_log_common::Level where U: core::convert::Into +pub type aya_log_common::Level::Error = core::convert::Infallible +pub fn aya_log_common::Level::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_log_common::Level where U: core::convert::TryFrom +pub type aya_log_common::Level::Error = >::Error +pub fn aya_log_common::Level::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_log_common::Level where T: 'static + core::marker::Sized +pub fn aya_log_common::Level::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_log_common::Level where T: core::marker::Sized +pub fn aya_log_common::Level::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_log_common::Level where T: core::marker::Sized +pub fn aya_log_common::Level::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_log_common::Level +pub fn aya_log_common::Level::from(t: T) -> T +#[repr(u8)] pub enum aya_log_common::RecordField +pub aya_log_common::RecordField::File +pub aya_log_common::RecordField::Level +pub aya_log_common::RecordField::Line +pub aya_log_common::RecordField::Module +pub aya_log_common::RecordField::NumArgs +pub aya_log_common::RecordField::Target = 1 +impl core::clone::Clone for aya_log_common::RecordField +pub fn aya_log_common::RecordField::clone(&self) -> aya_log_common::RecordField +impl core::fmt::Debug for aya_log_common::RecordField +pub fn aya_log_common::RecordField::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_log_common::RecordField +impl core::marker::Send for aya_log_common::RecordField +impl core::marker::Sync for aya_log_common::RecordField +impl core::marker::Unpin for aya_log_common::RecordField +impl core::panic::unwind_safe::RefUnwindSafe for aya_log_common::RecordField +impl core::panic::unwind_safe::UnwindSafe for aya_log_common::RecordField +impl core::convert::Into for aya_log_common::RecordField where U: core::convert::From +pub fn aya_log_common::RecordField::into(self) -> U +impl core::convert::TryFrom for aya_log_common::RecordField where U: core::convert::Into +pub type aya_log_common::RecordField::Error = core::convert::Infallible +pub fn aya_log_common::RecordField::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_log_common::RecordField where U: core::convert::TryFrom +pub type aya_log_common::RecordField::Error = >::Error +pub fn aya_log_common::RecordField::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_log_common::RecordField where T: 'static + core::marker::Sized +pub fn aya_log_common::RecordField::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_log_common::RecordField where T: core::marker::Sized +pub fn aya_log_common::RecordField::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_log_common::RecordField where T: core::marker::Sized +pub fn aya_log_common::RecordField::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_log_common::RecordField +pub fn aya_log_common::RecordField::from(t: T) -> T +pub const aya_log_common::LOG_BUF_CAPACITY: usize = 8_192usize +pub const aya_log_common::LOG_FIELDS: usize = 6usize +pub trait aya_log_common::DefaultFormatter +impl aya_log_common::DefaultFormatter for &str +impl aya_log_common::DefaultFormatter for bool +impl aya_log_common::DefaultFormatter for char +impl aya_log_common::DefaultFormatter for f32 +impl aya_log_common::DefaultFormatter for f64 +impl aya_log_common::DefaultFormatter for i16 +impl aya_log_common::DefaultFormatter for i32 +impl aya_log_common::DefaultFormatter for i64 +impl aya_log_common::DefaultFormatter for i8 +impl aya_log_common::DefaultFormatter for isize +impl aya_log_common::DefaultFormatter for str +impl aya_log_common::DefaultFormatter for u16 +impl aya_log_common::DefaultFormatter for u32 +impl aya_log_common::DefaultFormatter for u64 +impl aya_log_common::DefaultFormatter for u8 +impl aya_log_common::DefaultFormatter for usize +pub trait aya_log_common::IpFormatter +impl aya_log_common::IpFormatter for [u16; 8] +impl aya_log_common::IpFormatter for [u8; 16] +impl aya_log_common::IpFormatter for u32 +pub trait aya_log_common::LowerHexFormatter +impl aya_log_common::LowerHexFormatter for &[u8] +impl aya_log_common::LowerHexFormatter for i16 +impl aya_log_common::LowerHexFormatter for i32 +impl aya_log_common::LowerHexFormatter for i64 +impl aya_log_common::LowerHexFormatter for i8 +impl aya_log_common::LowerHexFormatter for isize +impl aya_log_common::LowerHexFormatter for u16 +impl aya_log_common::LowerHexFormatter for u32 +impl aya_log_common::LowerHexFormatter for u64 +impl aya_log_common::LowerHexFormatter for u8 +impl aya_log_common::LowerHexFormatter for usize +pub trait aya_log_common::LowerMacFormatter +impl aya_log_common::LowerMacFormatter for [u8; 6] +pub trait aya_log_common::UpperHexFormatter +impl aya_log_common::UpperHexFormatter for &[u8] +impl aya_log_common::UpperHexFormatter for i16 +impl aya_log_common::UpperHexFormatter for i32 +impl aya_log_common::UpperHexFormatter for i64 +impl aya_log_common::UpperHexFormatter for i8 +impl aya_log_common::UpperHexFormatter for isize +impl aya_log_common::UpperHexFormatter for u16 +impl aya_log_common::UpperHexFormatter for u32 +impl aya_log_common::UpperHexFormatter for u64 +impl aya_log_common::UpperHexFormatter for u8 +impl aya_log_common::UpperHexFormatter for usize +pub trait aya_log_common::UpperMacFormatter +impl aya_log_common::UpperMacFormatter for [u8; 6] +pub trait aya_log_common::WriteToBuf +pub fn aya_log_common::WriteToBuf::write(self, buf: &mut [u8]) -> core::result::Result +impl aya_log_common::WriteToBuf for &[u8] +pub fn &[u8]::write(self, buf: &mut [u8]) -> core::result::Result +impl aya_log_common::WriteToBuf for &str +pub fn &str::write(self, buf: &mut [u8]) -> core::result::Result +impl aya_log_common::WriteToBuf for [u16; 8] +pub fn [u16; 8]::write(self, buf: &mut [u8]) -> core::result::Result +impl aya_log_common::WriteToBuf for [u8; 16] +pub fn [u8; 16]::write(self, buf: &mut [u8]) -> core::result::Result +impl aya_log_common::WriteToBuf for [u8; 6] +pub fn [u8; 6]::write(self, buf: &mut [u8]) -> core::result::Result +impl aya_log_common::WriteToBuf for aya_log_common::DisplayHint +pub fn aya_log_common::DisplayHint::write(self, buf: &mut [u8]) -> core::result::Result +impl aya_log_common::WriteToBuf for f32 +pub fn f32::write(self, buf: &mut [u8]) -> core::result::Result +impl aya_log_common::WriteToBuf for f64 +pub fn f64::write(self, buf: &mut [u8]) -> core::result::Result +impl aya_log_common::WriteToBuf for i16 +pub fn i16::write(self, buf: &mut [u8]) -> core::result::Result +impl aya_log_common::WriteToBuf for i32 +pub fn i32::write(self, buf: &mut [u8]) -> core::result::Result +impl aya_log_common::WriteToBuf for i64 +pub fn i64::write(self, buf: &mut [u8]) -> core::result::Result +impl aya_log_common::WriteToBuf for i8 +pub fn i8::write(self, buf: &mut [u8]) -> core::result::Result +impl aya_log_common::WriteToBuf for isize +pub fn isize::write(self, buf: &mut [u8]) -> core::result::Result +impl aya_log_common::WriteToBuf for u16 +pub fn u16::write(self, buf: &mut [u8]) -> core::result::Result +impl aya_log_common::WriteToBuf for u32 +pub fn u32::write(self, buf: &mut [u8]) -> core::result::Result +impl aya_log_common::WriteToBuf for u64 +pub fn u64::write(self, buf: &mut [u8]) -> core::result::Result +impl aya_log_common::WriteToBuf for u8 +pub fn u8::write(self, buf: &mut [u8]) -> core::result::Result +impl aya_log_common::WriteToBuf for usize +pub fn usize::write(self, buf: &mut [u8]) -> core::result::Result +pub type aya_log_common::LogValueLength = u16 diff --git a/xtask/public-api/aya-log-ebpf-macros.txt b/xtask/public-api/aya-log-ebpf-macros.txt new file mode 100644 index 00000000..e93ef4fe --- /dev/null +++ b/xtask/public-api/aya-log-ebpf-macros.txt @@ -0,0 +1,7 @@ +pub mod aya_log_ebpf_macros +pub proc macro aya_log_ebpf_macros::debug!() +pub proc macro aya_log_ebpf_macros::error!() +pub proc macro aya_log_ebpf_macros::info!() +pub proc macro aya_log_ebpf_macros::log!() +pub proc macro aya_log_ebpf_macros::trace!() +pub proc macro aya_log_ebpf_macros::warn!() diff --git a/xtask/public-api/aya-log-ebpf.txt b/xtask/public-api/aya-log-ebpf.txt new file mode 100644 index 00000000..a395e7f5 --- /dev/null +++ b/xtask/public-api/aya-log-ebpf.txt @@ -0,0 +1,10 @@ +pub mod aya_log_ebpf +pub use aya_log_ebpf::LOG_BUF_CAPACITY +pub use aya_log_ebpf::Level +pub use aya_log_ebpf::WriteToBuf +pub use aya_log_ebpf::debug +pub use aya_log_ebpf::error +pub use aya_log_ebpf::info +pub use aya_log_ebpf::log +pub use aya_log_ebpf::trace +pub use aya_log_ebpf::warn diff --git a/xtask/public-api/aya-log-parser.txt b/xtask/public-api/aya-log-parser.txt new file mode 100644 index 00000000..cf1f3493 --- /dev/null +++ b/xtask/public-api/aya-log-parser.txt @@ -0,0 +1,75 @@ +pub mod aya_log_parser +pub enum aya_log_parser::Fragment +pub aya_log_parser::Fragment::Literal(alloc::string::String) +pub aya_log_parser::Fragment::Parameter(aya_log_parser::Parameter) +impl core::clone::Clone for aya_log_parser::Fragment +pub fn aya_log_parser::Fragment::clone(&self) -> aya_log_parser::Fragment +impl core::cmp::Eq for aya_log_parser::Fragment +impl core::cmp::PartialEq for aya_log_parser::Fragment +pub fn aya_log_parser::Fragment::eq(&self, other: &aya_log_parser::Fragment) -> bool +impl core::fmt::Debug for aya_log_parser::Fragment +pub fn aya_log_parser::Fragment::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::StructuralEq for aya_log_parser::Fragment +impl core::marker::StructuralPartialEq for aya_log_parser::Fragment +impl core::marker::Send for aya_log_parser::Fragment +impl core::marker::Sync for aya_log_parser::Fragment +impl core::marker::Unpin for aya_log_parser::Fragment +impl core::panic::unwind_safe::RefUnwindSafe for aya_log_parser::Fragment +impl core::panic::unwind_safe::UnwindSafe for aya_log_parser::Fragment +impl core::convert::Into for aya_log_parser::Fragment where U: core::convert::From +pub fn aya_log_parser::Fragment::into(self) -> U +impl core::convert::TryFrom for aya_log_parser::Fragment where U: core::convert::Into +pub type aya_log_parser::Fragment::Error = core::convert::Infallible +pub fn aya_log_parser::Fragment::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_log_parser::Fragment where U: core::convert::TryFrom +pub type aya_log_parser::Fragment::Error = >::Error +pub fn aya_log_parser::Fragment::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_log_parser::Fragment where T: core::clone::Clone +pub type aya_log_parser::Fragment::Owned = T +pub fn aya_log_parser::Fragment::clone_into(&self, target: &mut T) +pub fn aya_log_parser::Fragment::to_owned(&self) -> T +impl core::any::Any for aya_log_parser::Fragment where T: 'static + core::marker::Sized +pub fn aya_log_parser::Fragment::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_log_parser::Fragment where T: core::marker::Sized +pub fn aya_log_parser::Fragment::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_log_parser::Fragment where T: core::marker::Sized +pub fn aya_log_parser::Fragment::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_log_parser::Fragment +pub fn aya_log_parser::Fragment::from(t: T) -> T +pub struct aya_log_parser::Parameter +pub aya_log_parser::Parameter::hint: aya_log_common::DisplayHint +impl core::clone::Clone for aya_log_parser::Parameter +pub fn aya_log_parser::Parameter::clone(&self) -> aya_log_parser::Parameter +impl core::cmp::Eq for aya_log_parser::Parameter +impl core::cmp::PartialEq for aya_log_parser::Parameter +pub fn aya_log_parser::Parameter::eq(&self, other: &aya_log_parser::Parameter) -> bool +impl core::fmt::Debug for aya_log_parser::Parameter +pub fn aya_log_parser::Parameter::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::StructuralEq for aya_log_parser::Parameter +impl core::marker::StructuralPartialEq for aya_log_parser::Parameter +impl core::marker::Send for aya_log_parser::Parameter +impl core::marker::Sync for aya_log_parser::Parameter +impl core::marker::Unpin for aya_log_parser::Parameter +impl core::panic::unwind_safe::RefUnwindSafe for aya_log_parser::Parameter +impl core::panic::unwind_safe::UnwindSafe for aya_log_parser::Parameter +impl core::convert::Into for aya_log_parser::Parameter where U: core::convert::From +pub fn aya_log_parser::Parameter::into(self) -> U +impl core::convert::TryFrom for aya_log_parser::Parameter where U: core::convert::Into +pub type aya_log_parser::Parameter::Error = core::convert::Infallible +pub fn aya_log_parser::Parameter::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_log_parser::Parameter where U: core::convert::TryFrom +pub type aya_log_parser::Parameter::Error = >::Error +pub fn aya_log_parser::Parameter::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_log_parser::Parameter where T: core::clone::Clone +pub type aya_log_parser::Parameter::Owned = T +pub fn aya_log_parser::Parameter::clone_into(&self, target: &mut T) +pub fn aya_log_parser::Parameter::to_owned(&self) -> T +impl core::any::Any for aya_log_parser::Parameter where T: 'static + core::marker::Sized +pub fn aya_log_parser::Parameter::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_log_parser::Parameter where T: core::marker::Sized +pub fn aya_log_parser::Parameter::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_log_parser::Parameter where T: core::marker::Sized +pub fn aya_log_parser::Parameter::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_log_parser::Parameter +pub fn aya_log_parser::Parameter::from(t: T) -> T +pub fn aya_log_parser::parse(format_string: &str) -> core::result::Result, alloc::string::String> diff --git a/xtask/public-api/aya-log.txt b/xtask/public-api/aya-log.txt new file mode 100644 index 00000000..61bd2867 --- /dev/null +++ b/xtask/public-api/aya-log.txt @@ -0,0 +1,302 @@ +pub mod aya_log +pub enum aya_log::Error +pub aya_log::Error::InvalidOnlineCpu(std::io::error::Error) +pub aya_log::Error::MapError(aya::maps::MapError) +pub aya_log::Error::MapNotFound +pub aya_log::Error::PerfBufferError(aya::maps::perf::perf_buffer::PerfBufferError) +impl core::convert::From for aya_log::Error +pub fn aya_log::Error::from(source: aya::maps::MapError) -> Self +impl core::convert::From for aya_log::Error +pub fn aya_log::Error::from(source: aya::maps::perf::perf_buffer::PerfBufferError) -> Self +impl core::error::Error for aya_log::Error +pub fn aya_log::Error::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)> +impl core::fmt::Display for aya_log::Error +pub fn aya_log::Error::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::fmt::Debug for aya_log::Error +pub fn aya_log::Error::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_log::Error +impl core::marker::Sync for aya_log::Error +impl core::marker::Unpin for aya_log::Error +impl !core::panic::unwind_safe::RefUnwindSafe for aya_log::Error +impl !core::panic::unwind_safe::UnwindSafe for aya_log::Error +impl core::any::Provider for aya_log::Error where E: core::error::Error + core::marker::Sized +pub fn aya_log::Error::provide<'a>(&'a self, demand: &mut core::any::Demand<'a>) +impl core::convert::Into for aya_log::Error where U: core::convert::From +pub fn aya_log::Error::into(self) -> U +impl core::convert::TryFrom for aya_log::Error where U: core::convert::Into +pub type aya_log::Error::Error = core::convert::Infallible +pub fn aya_log::Error::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_log::Error where U: core::convert::TryFrom +pub type aya_log::Error::Error = >::Error +pub fn aya_log::Error::try_into(self) -> core::result::Result>::Error> +impl alloc::string::ToString for aya_log::Error where T: core::fmt::Display + core::marker::Sized +pub fn aya_log::Error::to_string(&self) -> alloc::string::String +impl core::any::Any for aya_log::Error where T: 'static + core::marker::Sized +pub fn aya_log::Error::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_log::Error where T: core::marker::Sized +pub fn aya_log::Error::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_log::Error where T: core::marker::Sized +pub fn aya_log::Error::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_log::Error +pub fn aya_log::Error::from(t: T) -> T +pub struct aya_log::BpfLogger +impl aya_log::BpfLogger +pub fn aya_log::BpfLogger::init(bpf: &mut aya::bpf::Bpf) -> core::result::Result +pub fn aya_log::BpfLogger::init_with_logger(bpf: &mut aya::bpf::Bpf, logger: T) -> core::result::Result +impl core::marker::Send for aya_log::BpfLogger +impl core::marker::Sync for aya_log::BpfLogger +impl core::marker::Unpin for aya_log::BpfLogger +impl core::panic::unwind_safe::RefUnwindSafe for aya_log::BpfLogger +impl core::panic::unwind_safe::UnwindSafe for aya_log::BpfLogger +impl core::convert::Into for aya_log::BpfLogger where U: core::convert::From +pub fn aya_log::BpfLogger::into(self) -> U +impl core::convert::TryFrom for aya_log::BpfLogger where U: core::convert::Into +pub type aya_log::BpfLogger::Error = core::convert::Infallible +pub fn aya_log::BpfLogger::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_log::BpfLogger where U: core::convert::TryFrom +pub type aya_log::BpfLogger::Error = >::Error +pub fn aya_log::BpfLogger::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_log::BpfLogger where T: 'static + core::marker::Sized +pub fn aya_log::BpfLogger::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_log::BpfLogger where T: core::marker::Sized +pub fn aya_log::BpfLogger::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_log::BpfLogger where T: core::marker::Sized +pub fn aya_log::BpfLogger::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_log::BpfLogger +pub fn aya_log::BpfLogger::from(t: T) -> T +pub struct aya_log::DefaultFormatter +impl aya_log::Formatter for aya_log::DefaultFormatter where T: alloc::string::ToString +pub fn aya_log::DefaultFormatter::format(v: T) -> alloc::string::String +impl core::marker::Send for aya_log::DefaultFormatter +impl core::marker::Sync for aya_log::DefaultFormatter +impl core::marker::Unpin for aya_log::DefaultFormatter +impl core::panic::unwind_safe::RefUnwindSafe for aya_log::DefaultFormatter +impl core::panic::unwind_safe::UnwindSafe for aya_log::DefaultFormatter +impl core::convert::Into for aya_log::DefaultFormatter where U: core::convert::From +pub fn aya_log::DefaultFormatter::into(self) -> U +impl core::convert::TryFrom for aya_log::DefaultFormatter where U: core::convert::Into +pub type aya_log::DefaultFormatter::Error = core::convert::Infallible +pub fn aya_log::DefaultFormatter::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_log::DefaultFormatter where U: core::convert::TryFrom +pub type aya_log::DefaultFormatter::Error = >::Error +pub fn aya_log::DefaultFormatter::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_log::DefaultFormatter where T: 'static + core::marker::Sized +pub fn aya_log::DefaultFormatter::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_log::DefaultFormatter where T: core::marker::Sized +pub fn aya_log::DefaultFormatter::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_log::DefaultFormatter where T: core::marker::Sized +pub fn aya_log::DefaultFormatter::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_log::DefaultFormatter +pub fn aya_log::DefaultFormatter::from(t: T) -> T +pub struct aya_log::Ipv4Formatter +impl aya_log::Formatter for aya_log::Ipv4Formatter where T: core::convert::Into +pub fn aya_log::Ipv4Formatter::format(v: T) -> alloc::string::String +impl core::marker::Send for aya_log::Ipv4Formatter +impl core::marker::Sync for aya_log::Ipv4Formatter +impl core::marker::Unpin for aya_log::Ipv4Formatter +impl core::panic::unwind_safe::RefUnwindSafe for aya_log::Ipv4Formatter +impl core::panic::unwind_safe::UnwindSafe for aya_log::Ipv4Formatter +impl core::convert::Into for aya_log::Ipv4Formatter where U: core::convert::From +pub fn aya_log::Ipv4Formatter::into(self) -> U +impl core::convert::TryFrom for aya_log::Ipv4Formatter where U: core::convert::Into +pub type aya_log::Ipv4Formatter::Error = core::convert::Infallible +pub fn aya_log::Ipv4Formatter::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_log::Ipv4Formatter where U: core::convert::TryFrom +pub type aya_log::Ipv4Formatter::Error = >::Error +pub fn aya_log::Ipv4Formatter::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_log::Ipv4Formatter where T: 'static + core::marker::Sized +pub fn aya_log::Ipv4Formatter::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_log::Ipv4Formatter where T: core::marker::Sized +pub fn aya_log::Ipv4Formatter::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_log::Ipv4Formatter where T: core::marker::Sized +pub fn aya_log::Ipv4Formatter::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_log::Ipv4Formatter +pub fn aya_log::Ipv4Formatter::from(t: T) -> T +pub struct aya_log::Ipv6Formatter +impl aya_log::Formatter for aya_log::Ipv6Formatter where T: core::convert::Into +pub fn aya_log::Ipv6Formatter::format(v: T) -> alloc::string::String +impl core::marker::Send for aya_log::Ipv6Formatter +impl core::marker::Sync for aya_log::Ipv6Formatter +impl core::marker::Unpin for aya_log::Ipv6Formatter +impl core::panic::unwind_safe::RefUnwindSafe for aya_log::Ipv6Formatter +impl core::panic::unwind_safe::UnwindSafe for aya_log::Ipv6Formatter +impl core::convert::Into for aya_log::Ipv6Formatter where U: core::convert::From +pub fn aya_log::Ipv6Formatter::into(self) -> U +impl core::convert::TryFrom for aya_log::Ipv6Formatter where U: core::convert::Into +pub type aya_log::Ipv6Formatter::Error = core::convert::Infallible +pub fn aya_log::Ipv6Formatter::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_log::Ipv6Formatter where U: core::convert::TryFrom +pub type aya_log::Ipv6Formatter::Error = >::Error +pub fn aya_log::Ipv6Formatter::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_log::Ipv6Formatter where T: 'static + core::marker::Sized +pub fn aya_log::Ipv6Formatter::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_log::Ipv6Formatter where T: core::marker::Sized +pub fn aya_log::Ipv6Formatter::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_log::Ipv6Formatter where T: core::marker::Sized +pub fn aya_log::Ipv6Formatter::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_log::Ipv6Formatter +pub fn aya_log::Ipv6Formatter::from(t: T) -> T +pub struct aya_log::LowerHexDebugFormatter +impl aya_log::Formatter<&[T]> for aya_log::LowerHexDebugFormatter where T: core::fmt::LowerHex +pub fn aya_log::LowerHexDebugFormatter::format(v: &[T]) -> alloc::string::String +impl core::marker::Send for aya_log::LowerHexDebugFormatter +impl core::marker::Sync for aya_log::LowerHexDebugFormatter +impl core::marker::Unpin for aya_log::LowerHexDebugFormatter +impl core::panic::unwind_safe::RefUnwindSafe for aya_log::LowerHexDebugFormatter +impl core::panic::unwind_safe::UnwindSafe for aya_log::LowerHexDebugFormatter +impl core::convert::Into for aya_log::LowerHexDebugFormatter where U: core::convert::From +pub fn aya_log::LowerHexDebugFormatter::into(self) -> U +impl core::convert::TryFrom for aya_log::LowerHexDebugFormatter where U: core::convert::Into +pub type aya_log::LowerHexDebugFormatter::Error = core::convert::Infallible +pub fn aya_log::LowerHexDebugFormatter::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_log::LowerHexDebugFormatter where U: core::convert::TryFrom +pub type aya_log::LowerHexDebugFormatter::Error = >::Error +pub fn aya_log::LowerHexDebugFormatter::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_log::LowerHexDebugFormatter where T: 'static + core::marker::Sized +pub fn aya_log::LowerHexDebugFormatter::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_log::LowerHexDebugFormatter where T: core::marker::Sized +pub fn aya_log::LowerHexDebugFormatter::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_log::LowerHexDebugFormatter where T: core::marker::Sized +pub fn aya_log::LowerHexDebugFormatter::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_log::LowerHexDebugFormatter +pub fn aya_log::LowerHexDebugFormatter::from(t: T) -> T +pub struct aya_log::LowerHexFormatter +impl aya_log::Formatter for aya_log::LowerHexFormatter where T: core::fmt::LowerHex +pub fn aya_log::LowerHexFormatter::format(v: T) -> alloc::string::String +impl core::marker::Send for aya_log::LowerHexFormatter +impl core::marker::Sync for aya_log::LowerHexFormatter +impl core::marker::Unpin for aya_log::LowerHexFormatter +impl core::panic::unwind_safe::RefUnwindSafe for aya_log::LowerHexFormatter +impl core::panic::unwind_safe::UnwindSafe for aya_log::LowerHexFormatter +impl core::convert::Into for aya_log::LowerHexFormatter where U: core::convert::From +pub fn aya_log::LowerHexFormatter::into(self) -> U +impl core::convert::TryFrom for aya_log::LowerHexFormatter where U: core::convert::Into +pub type aya_log::LowerHexFormatter::Error = core::convert::Infallible +pub fn aya_log::LowerHexFormatter::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_log::LowerHexFormatter where U: core::convert::TryFrom +pub type aya_log::LowerHexFormatter::Error = >::Error +pub fn aya_log::LowerHexFormatter::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_log::LowerHexFormatter where T: 'static + core::marker::Sized +pub fn aya_log::LowerHexFormatter::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_log::LowerHexFormatter where T: core::marker::Sized +pub fn aya_log::LowerHexFormatter::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_log::LowerHexFormatter where T: core::marker::Sized +pub fn aya_log::LowerHexFormatter::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_log::LowerHexFormatter +pub fn aya_log::LowerHexFormatter::from(t: T) -> T +pub struct aya_log::LowerMacFormatter +impl aya_log::Formatter<[u8; 6]> for aya_log::LowerMacFormatter +pub fn aya_log::LowerMacFormatter::format(v: [u8; 6]) -> alloc::string::String +impl core::marker::Send for aya_log::LowerMacFormatter +impl core::marker::Sync for aya_log::LowerMacFormatter +impl core::marker::Unpin for aya_log::LowerMacFormatter +impl core::panic::unwind_safe::RefUnwindSafe for aya_log::LowerMacFormatter +impl core::panic::unwind_safe::UnwindSafe for aya_log::LowerMacFormatter +impl core::convert::Into for aya_log::LowerMacFormatter where U: core::convert::From +pub fn aya_log::LowerMacFormatter::into(self) -> U +impl core::convert::TryFrom for aya_log::LowerMacFormatter where U: core::convert::Into +pub type aya_log::LowerMacFormatter::Error = core::convert::Infallible +pub fn aya_log::LowerMacFormatter::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_log::LowerMacFormatter where U: core::convert::TryFrom +pub type aya_log::LowerMacFormatter::Error = >::Error +pub fn aya_log::LowerMacFormatter::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_log::LowerMacFormatter where T: 'static + core::marker::Sized +pub fn aya_log::LowerMacFormatter::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_log::LowerMacFormatter where T: core::marker::Sized +pub fn aya_log::LowerMacFormatter::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_log::LowerMacFormatter where T: core::marker::Sized +pub fn aya_log::LowerMacFormatter::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_log::LowerMacFormatter +pub fn aya_log::LowerMacFormatter::from(t: T) -> T +pub struct aya_log::UpperHexDebugFormatter +impl aya_log::Formatter<&[T]> for aya_log::UpperHexDebugFormatter where T: core::fmt::UpperHex +pub fn aya_log::UpperHexDebugFormatter::format(v: &[T]) -> alloc::string::String +impl core::marker::Send for aya_log::UpperHexDebugFormatter +impl core::marker::Sync for aya_log::UpperHexDebugFormatter +impl core::marker::Unpin for aya_log::UpperHexDebugFormatter +impl core::panic::unwind_safe::RefUnwindSafe for aya_log::UpperHexDebugFormatter +impl core::panic::unwind_safe::UnwindSafe for aya_log::UpperHexDebugFormatter +impl core::convert::Into for aya_log::UpperHexDebugFormatter where U: core::convert::From +pub fn aya_log::UpperHexDebugFormatter::into(self) -> U +impl core::convert::TryFrom for aya_log::UpperHexDebugFormatter where U: core::convert::Into +pub type aya_log::UpperHexDebugFormatter::Error = core::convert::Infallible +pub fn aya_log::UpperHexDebugFormatter::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_log::UpperHexDebugFormatter where U: core::convert::TryFrom +pub type aya_log::UpperHexDebugFormatter::Error = >::Error +pub fn aya_log::UpperHexDebugFormatter::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_log::UpperHexDebugFormatter where T: 'static + core::marker::Sized +pub fn aya_log::UpperHexDebugFormatter::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_log::UpperHexDebugFormatter where T: core::marker::Sized +pub fn aya_log::UpperHexDebugFormatter::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_log::UpperHexDebugFormatter where T: core::marker::Sized +pub fn aya_log::UpperHexDebugFormatter::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_log::UpperHexDebugFormatter +pub fn aya_log::UpperHexDebugFormatter::from(t: T) -> T +pub struct aya_log::UpperHexFormatter +impl aya_log::Formatter for aya_log::UpperHexFormatter where T: core::fmt::UpperHex +pub fn aya_log::UpperHexFormatter::format(v: T) -> alloc::string::String +impl core::marker::Send for aya_log::UpperHexFormatter +impl core::marker::Sync for aya_log::UpperHexFormatter +impl core::marker::Unpin for aya_log::UpperHexFormatter +impl core::panic::unwind_safe::RefUnwindSafe for aya_log::UpperHexFormatter +impl core::panic::unwind_safe::UnwindSafe for aya_log::UpperHexFormatter +impl core::convert::Into for aya_log::UpperHexFormatter where U: core::convert::From +pub fn aya_log::UpperHexFormatter::into(self) -> U +impl core::convert::TryFrom for aya_log::UpperHexFormatter where U: core::convert::Into +pub type aya_log::UpperHexFormatter::Error = core::convert::Infallible +pub fn aya_log::UpperHexFormatter::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_log::UpperHexFormatter where U: core::convert::TryFrom +pub type aya_log::UpperHexFormatter::Error = >::Error +pub fn aya_log::UpperHexFormatter::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_log::UpperHexFormatter where T: 'static + core::marker::Sized +pub fn aya_log::UpperHexFormatter::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_log::UpperHexFormatter where T: core::marker::Sized +pub fn aya_log::UpperHexFormatter::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_log::UpperHexFormatter where T: core::marker::Sized +pub fn aya_log::UpperHexFormatter::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_log::UpperHexFormatter +pub fn aya_log::UpperHexFormatter::from(t: T) -> T +pub struct aya_log::UpperMacFormatter +impl aya_log::Formatter<[u8; 6]> for aya_log::UpperMacFormatter +pub fn aya_log::UpperMacFormatter::format(v: [u8; 6]) -> alloc::string::String +impl core::marker::Send for aya_log::UpperMacFormatter +impl core::marker::Sync for aya_log::UpperMacFormatter +impl core::marker::Unpin for aya_log::UpperMacFormatter +impl core::panic::unwind_safe::RefUnwindSafe for aya_log::UpperMacFormatter +impl core::panic::unwind_safe::UnwindSafe for aya_log::UpperMacFormatter +impl core::convert::Into for aya_log::UpperMacFormatter where U: core::convert::From +pub fn aya_log::UpperMacFormatter::into(self) -> U +impl core::convert::TryFrom for aya_log::UpperMacFormatter where U: core::convert::Into +pub type aya_log::UpperMacFormatter::Error = core::convert::Infallible +pub fn aya_log::UpperMacFormatter::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_log::UpperMacFormatter where U: core::convert::TryFrom +pub type aya_log::UpperMacFormatter::Error = >::Error +pub fn aya_log::UpperMacFormatter::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_log::UpperMacFormatter where T: 'static + core::marker::Sized +pub fn aya_log::UpperMacFormatter::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_log::UpperMacFormatter where T: core::marker::Sized +pub fn aya_log::UpperMacFormatter::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_log::UpperMacFormatter where T: core::marker::Sized +pub fn aya_log::UpperMacFormatter::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_log::UpperMacFormatter +pub fn aya_log::UpperMacFormatter::from(t: T) -> T +pub trait aya_log::Formatter +pub fn aya_log::Formatter::format(v: T) -> alloc::string::String +impl aya_log::Formatter<[u8; 6]> for aya_log::LowerMacFormatter +pub fn aya_log::LowerMacFormatter::format(v: [u8; 6]) -> alloc::string::String +impl aya_log::Formatter<[u8; 6]> for aya_log::UpperMacFormatter +pub fn aya_log::UpperMacFormatter::format(v: [u8; 6]) -> alloc::string::String +impl aya_log::Formatter<&[T]> for aya_log::LowerHexDebugFormatter where T: core::fmt::LowerHex +pub fn aya_log::LowerHexDebugFormatter::format(v: &[T]) -> alloc::string::String +impl aya_log::Formatter<&[T]> for aya_log::UpperHexDebugFormatter where T: core::fmt::UpperHex +pub fn aya_log::UpperHexDebugFormatter::format(v: &[T]) -> alloc::string::String +impl aya_log::Formatter for aya_log::DefaultFormatter where T: alloc::string::ToString +pub fn aya_log::DefaultFormatter::format(v: T) -> alloc::string::String +impl aya_log::Formatter for aya_log::Ipv4Formatter where T: core::convert::Into +pub fn aya_log::Ipv4Formatter::format(v: T) -> alloc::string::String +impl aya_log::Formatter for aya_log::Ipv6Formatter where T: core::convert::Into +pub fn aya_log::Ipv6Formatter::format(v: T) -> alloc::string::String +impl aya_log::Formatter for aya_log::LowerHexFormatter where T: core::fmt::LowerHex +pub fn aya_log::LowerHexFormatter::format(v: T) -> alloc::string::String +impl aya_log::Formatter for aya_log::UpperHexFormatter where T: core::fmt::UpperHex +pub fn aya_log::UpperHexFormatter::format(v: T) -> alloc::string::String diff --git a/xtask/public-api/aya-obj.txt b/xtask/public-api/aya-obj.txt new file mode 100644 index 00000000..154a1afa --- /dev/null +++ b/xtask/public-api/aya-obj.txt @@ -0,0 +1,6817 @@ +pub mod aya_obj +pub mod aya_obj::btf +pub enum aya_obj::btf::BtfError +pub aya_obj::btf::BtfError::FileError +pub aya_obj::btf::BtfError::FileError::error: std::io::error::Error +pub aya_obj::btf::BtfError::FileError::path: std::path::PathBuf +pub aya_obj::btf::BtfError::InvalidDatasec +pub aya_obj::btf::BtfError::InvalidHeader +pub aya_obj::btf::BtfError::InvalidInfo +pub aya_obj::btf::BtfError::InvalidInfo::len: usize +pub aya_obj::btf::BtfError::InvalidInfo::offset: usize +pub aya_obj::btf::BtfError::InvalidInfo::section_len: usize +pub aya_obj::btf::BtfError::InvalidLineInfo +pub aya_obj::btf::BtfError::InvalidLineInfo::len: usize +pub aya_obj::btf::BtfError::InvalidLineInfo::offset: usize +pub aya_obj::btf::BtfError::InvalidLineInfo::section_len: usize +pub aya_obj::btf::BtfError::InvalidRelocationInfo +pub aya_obj::btf::BtfError::InvalidRelocationKind +pub aya_obj::btf::BtfError::InvalidRelocationKind::kind: u32 +pub aya_obj::btf::BtfError::InvalidStringOffset +pub aya_obj::btf::BtfError::InvalidStringOffset::offset: usize +pub aya_obj::btf::BtfError::InvalidSymbolName +pub aya_obj::btf::BtfError::InvalidTypeInfo +pub aya_obj::btf::BtfError::InvalidTypeKind +pub aya_obj::btf::BtfError::InvalidTypeKind::kind: u32 +pub aya_obj::btf::BtfError::LoadError +pub aya_obj::btf::BtfError::LoadError::io_error: std::io::error::Error +pub aya_obj::btf::BtfError::LoadError::verifier_log: alloc::string::String +pub aya_obj::btf::BtfError::MaximumTypeDepthReached +pub aya_obj::btf::BtfError::MaximumTypeDepthReached::type_id: u32 +pub aya_obj::btf::BtfError::SymbolOffsetNotFound +pub aya_obj::btf::BtfError::SymbolOffsetNotFound::symbol_name: alloc::string::String +pub aya_obj::btf::BtfError::UnexpectedBtfType +pub aya_obj::btf::BtfError::UnexpectedBtfType::type_id: u32 +pub aya_obj::btf::BtfError::UnknownBtfType +pub aya_obj::btf::BtfError::UnknownBtfType::type_id: u32 +pub aya_obj::btf::BtfError::UnknownBtfTypeName +pub aya_obj::btf::BtfError::UnknownBtfTypeName::type_name: alloc::string::String +pub aya_obj::btf::BtfError::UnknownSectionSize +pub aya_obj::btf::BtfError::UnknownSectionSize::section_name: alloc::string::String +impl core::convert::From for aya_obj::ParseError +pub fn aya_obj::ParseError::from(source: aya_obj::btf::BtfError) -> Self +impl core::error::Error for aya_obj::btf::BtfError +pub fn aya_obj::btf::BtfError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)> +impl core::fmt::Display for aya_obj::btf::BtfError +pub fn aya_obj::btf::BtfError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::fmt::Debug for aya_obj::btf::BtfError +pub fn aya_obj::btf::BtfError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::btf::BtfError +impl core::marker::Sync for aya_obj::btf::BtfError +impl core::marker::Unpin for aya_obj::btf::BtfError +impl !core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::BtfError +impl !core::panic::unwind_safe::UnwindSafe for aya_obj::btf::BtfError +impl core::any::Provider for aya_obj::btf::BtfError where E: core::error::Error + core::marker::Sized +pub fn aya_obj::btf::BtfError::provide<'a>(&'a self, demand: &mut core::any::Demand<'a>) +impl core::convert::Into for aya_obj::btf::BtfError where U: core::convert::From +pub fn aya_obj::btf::BtfError::into(self) -> U +impl core::convert::TryFrom for aya_obj::btf::BtfError where U: core::convert::Into +pub type aya_obj::btf::BtfError::Error = core::convert::Infallible +pub fn aya_obj::btf::BtfError::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::btf::BtfError where U: core::convert::TryFrom +pub type aya_obj::btf::BtfError::Error = >::Error +pub fn aya_obj::btf::BtfError::try_into(self) -> core::result::Result>::Error> +impl alloc::string::ToString for aya_obj::btf::BtfError where T: core::fmt::Display + core::marker::Sized +pub fn aya_obj::btf::BtfError::to_string(&self) -> alloc::string::String +impl core::any::Any for aya_obj::btf::BtfError where T: 'static + core::marker::Sized +pub fn aya_obj::btf::BtfError::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::btf::BtfError where T: core::marker::Sized +pub fn aya_obj::btf::BtfError::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::btf::BtfError where T: core::marker::Sized +pub fn aya_obj::btf::BtfError::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::btf::BtfError +pub fn aya_obj::btf::BtfError::from(t: T) -> T +#[repr(u32)] pub enum aya_obj::btf::BtfKind +pub aya_obj::btf::BtfKind::Array = 3 +pub aya_obj::btf::BtfKind::Const = 10 +pub aya_obj::btf::BtfKind::DataSec = 15 +pub aya_obj::btf::BtfKind::DeclTag = 17 +pub aya_obj::btf::BtfKind::Enum = 6 +pub aya_obj::btf::BtfKind::Enum64 = 19 +pub aya_obj::btf::BtfKind::Float = 16 +pub aya_obj::btf::BtfKind::Func = 12 +pub aya_obj::btf::BtfKind::FuncProto = 13 +pub aya_obj::btf::BtfKind::Fwd = 7 +pub aya_obj::btf::BtfKind::Int = 1 +pub aya_obj::btf::BtfKind::Ptr = 2 +pub aya_obj::btf::BtfKind::Restrict = 11 +pub aya_obj::btf::BtfKind::Struct = 4 +pub aya_obj::btf::BtfKind::TypeTag = 18 +pub aya_obj::btf::BtfKind::Typedef = 8 +pub aya_obj::btf::BtfKind::Union = 5 +pub aya_obj::btf::BtfKind::Unknown = 0 +pub aya_obj::btf::BtfKind::Var = 14 +pub aya_obj::btf::BtfKind::Volatile = 9 +impl core::convert::TryFrom for aya_obj::btf::BtfKind +pub type aya_obj::btf::BtfKind::Error = aya_obj::btf::BtfError +pub fn aya_obj::btf::BtfKind::try_from(v: u32) -> core::result::Result +impl core::fmt::Display for aya_obj::btf::BtfKind +pub fn aya_obj::btf::BtfKind::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::clone::Clone for aya_obj::btf::BtfKind +pub fn aya_obj::btf::BtfKind::clone(&self) -> aya_obj::btf::BtfKind +impl core::cmp::Eq for aya_obj::btf::BtfKind +impl core::cmp::PartialEq for aya_obj::btf::BtfKind +pub fn aya_obj::btf::BtfKind::eq(&self, other: &aya_obj::btf::BtfKind) -> bool +impl core::default::Default for aya_obj::btf::BtfKind +pub fn aya_obj::btf::BtfKind::default() -> aya_obj::btf::BtfKind +impl core::fmt::Debug for aya_obj::btf::BtfKind +pub fn aya_obj::btf::BtfKind::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::btf::BtfKind +impl core::marker::StructuralEq for aya_obj::btf::BtfKind +impl core::marker::StructuralPartialEq for aya_obj::btf::BtfKind +impl core::marker::Send for aya_obj::btf::BtfKind +impl core::marker::Sync for aya_obj::btf::BtfKind +impl core::marker::Unpin for aya_obj::btf::BtfKind +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::BtfKind +impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::BtfKind +impl core::convert::Into for aya_obj::btf::BtfKind where U: core::convert::From +pub fn aya_obj::btf::BtfKind::into(self) -> U +impl core::convert::TryFrom for aya_obj::btf::BtfKind where U: core::convert::Into +pub type aya_obj::btf::BtfKind::Error = core::convert::Infallible +pub fn aya_obj::btf::BtfKind::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::btf::BtfKind where U: core::convert::TryFrom +pub type aya_obj::btf::BtfKind::Error = >::Error +pub fn aya_obj::btf::BtfKind::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::btf::BtfKind where T: core::clone::Clone +pub type aya_obj::btf::BtfKind::Owned = T +pub fn aya_obj::btf::BtfKind::clone_into(&self, target: &mut T) +pub fn aya_obj::btf::BtfKind::to_owned(&self) -> T +impl alloc::string::ToString for aya_obj::btf::BtfKind where T: core::fmt::Display + core::marker::Sized +pub fn aya_obj::btf::BtfKind::to_string(&self) -> alloc::string::String +impl core::any::Any for aya_obj::btf::BtfKind where T: 'static + core::marker::Sized +pub fn aya_obj::btf::BtfKind::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::btf::BtfKind where T: core::marker::Sized +pub fn aya_obj::btf::BtfKind::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::btf::BtfKind where T: core::marker::Sized +pub fn aya_obj::btf::BtfKind::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::btf::BtfKind +pub fn aya_obj::btf::BtfKind::from(t: T) -> T +pub enum aya_obj::btf::BtfType +pub aya_obj::btf::BtfType::Array(aya_obj::btf::Array) +pub aya_obj::btf::BtfType::Const(aya_obj::btf::Const) +pub aya_obj::btf::BtfType::DataSec(aya_obj::btf::DataSec) +pub aya_obj::btf::BtfType::DeclTag(aya_obj::btf::DeclTag) +pub aya_obj::btf::BtfType::Enum(aya_obj::btf::Enum) +pub aya_obj::btf::BtfType::Enum64(aya_obj::btf::Enum64) +pub aya_obj::btf::BtfType::Float(aya_obj::btf::Float) +pub aya_obj::btf::BtfType::Func(aya_obj::btf::Func) +pub aya_obj::btf::BtfType::FuncProto(aya_obj::btf::FuncProto) +pub aya_obj::btf::BtfType::Fwd(aya_obj::btf::Fwd) +pub aya_obj::btf::BtfType::Int(aya_obj::btf::Int) +pub aya_obj::btf::BtfType::Ptr(aya_obj::btf::Ptr) +pub aya_obj::btf::BtfType::Restrict(aya_obj::btf::Restrict) +pub aya_obj::btf::BtfType::Struct(aya_obj::btf::Struct) +pub aya_obj::btf::BtfType::TypeTag(aya_obj::btf::TypeTag) +pub aya_obj::btf::BtfType::Typedef(aya_obj::btf::Typedef) +pub aya_obj::btf::BtfType::Union(aya_obj::btf::Union) +pub aya_obj::btf::BtfType::Unknown +pub aya_obj::btf::BtfType::Var(aya_obj::btf::Var) +pub aya_obj::btf::BtfType::Volatile(aya_obj::btf::Volatile) +impl core::clone::Clone for aya_obj::btf::BtfType +pub fn aya_obj::btf::BtfType::clone(&self) -> aya_obj::btf::BtfType +impl core::fmt::Debug for aya_obj::btf::BtfType +pub fn aya_obj::btf::BtfType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::btf::BtfType +impl core::marker::Sync for aya_obj::btf::BtfType +impl core::marker::Unpin for aya_obj::btf::BtfType +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::BtfType +impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::BtfType +impl core::convert::Into for aya_obj::btf::BtfType where U: core::convert::From +pub fn aya_obj::btf::BtfType::into(self) -> U +impl core::convert::TryFrom for aya_obj::btf::BtfType where U: core::convert::Into +pub type aya_obj::btf::BtfType::Error = core::convert::Infallible +pub fn aya_obj::btf::BtfType::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::btf::BtfType where U: core::convert::TryFrom +pub type aya_obj::btf::BtfType::Error = >::Error +pub fn aya_obj::btf::BtfType::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::btf::BtfType where T: core::clone::Clone +pub type aya_obj::btf::BtfType::Owned = T +pub fn aya_obj::btf::BtfType::clone_into(&self, target: &mut T) +pub fn aya_obj::btf::BtfType::to_owned(&self) -> T +impl core::any::Any for aya_obj::btf::BtfType where T: 'static + core::marker::Sized +pub fn aya_obj::btf::BtfType::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::btf::BtfType where T: core::marker::Sized +pub fn aya_obj::btf::BtfType::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::btf::BtfType where T: core::marker::Sized +pub fn aya_obj::btf::BtfType::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::btf::BtfType +pub fn aya_obj::btf::BtfType::from(t: T) -> T +#[repr(u32)] pub enum aya_obj::btf::FuncLinkage +pub aya_obj::btf::FuncLinkage::Extern = 2 +pub aya_obj::btf::FuncLinkage::Global = 1 +pub aya_obj::btf::FuncLinkage::Static = 0 +pub aya_obj::btf::FuncLinkage::Unknown +impl core::convert::From for aya_obj::btf::FuncLinkage +pub fn aya_obj::btf::FuncLinkage::from(v: u32) -> Self +impl core::clone::Clone for aya_obj::btf::FuncLinkage +pub fn aya_obj::btf::FuncLinkage::clone(&self) -> aya_obj::btf::FuncLinkage +impl core::cmp::Eq for aya_obj::btf::FuncLinkage +impl core::cmp::PartialEq for aya_obj::btf::FuncLinkage +pub fn aya_obj::btf::FuncLinkage::eq(&self, other: &aya_obj::btf::FuncLinkage) -> bool +impl core::fmt::Debug for aya_obj::btf::FuncLinkage +pub fn aya_obj::btf::FuncLinkage::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::StructuralEq for aya_obj::btf::FuncLinkage +impl core::marker::StructuralPartialEq for aya_obj::btf::FuncLinkage +impl core::marker::Send for aya_obj::btf::FuncLinkage +impl core::marker::Sync for aya_obj::btf::FuncLinkage +impl core::marker::Unpin for aya_obj::btf::FuncLinkage +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::FuncLinkage +impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::FuncLinkage +impl core::convert::Into for aya_obj::btf::FuncLinkage where U: core::convert::From +pub fn aya_obj::btf::FuncLinkage::into(self) -> U +impl core::convert::TryFrom for aya_obj::btf::FuncLinkage where U: core::convert::Into +pub type aya_obj::btf::FuncLinkage::Error = core::convert::Infallible +pub fn aya_obj::btf::FuncLinkage::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::btf::FuncLinkage where U: core::convert::TryFrom +pub type aya_obj::btf::FuncLinkage::Error = >::Error +pub fn aya_obj::btf::FuncLinkage::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::btf::FuncLinkage where T: core::clone::Clone +pub type aya_obj::btf::FuncLinkage::Owned = T +pub fn aya_obj::btf::FuncLinkage::clone_into(&self, target: &mut T) +pub fn aya_obj::btf::FuncLinkage::to_owned(&self) -> T +impl core::any::Any for aya_obj::btf::FuncLinkage where T: 'static + core::marker::Sized +pub fn aya_obj::btf::FuncLinkage::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::btf::FuncLinkage where T: core::marker::Sized +pub fn aya_obj::btf::FuncLinkage::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::btf::FuncLinkage where T: core::marker::Sized +pub fn aya_obj::btf::FuncLinkage::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::btf::FuncLinkage +pub fn aya_obj::btf::FuncLinkage::from(t: T) -> T +#[repr(u32)] pub enum aya_obj::btf::IntEncoding +pub aya_obj::btf::IntEncoding::Bool = 4 +pub aya_obj::btf::IntEncoding::Char = 2 +pub aya_obj::btf::IntEncoding::None +pub aya_obj::btf::IntEncoding::Signed = 1 +pub aya_obj::btf::IntEncoding::Unknown +impl core::convert::From for aya_obj::btf::IntEncoding +pub fn aya_obj::btf::IntEncoding::from(v: u32) -> Self +impl core::clone::Clone for aya_obj::btf::IntEncoding +pub fn aya_obj::btf::IntEncoding::clone(&self) -> aya_obj::btf::IntEncoding +impl core::cmp::Eq for aya_obj::btf::IntEncoding +impl core::cmp::PartialEq for aya_obj::btf::IntEncoding +pub fn aya_obj::btf::IntEncoding::eq(&self, other: &aya_obj::btf::IntEncoding) -> bool +impl core::fmt::Debug for aya_obj::btf::IntEncoding +pub fn aya_obj::btf::IntEncoding::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::StructuralEq for aya_obj::btf::IntEncoding +impl core::marker::StructuralPartialEq for aya_obj::btf::IntEncoding +impl core::marker::Send for aya_obj::btf::IntEncoding +impl core::marker::Sync for aya_obj::btf::IntEncoding +impl core::marker::Unpin for aya_obj::btf::IntEncoding +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::IntEncoding +impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::IntEncoding +impl core::convert::Into for aya_obj::btf::IntEncoding where U: core::convert::From +pub fn aya_obj::btf::IntEncoding::into(self) -> U +impl core::convert::TryFrom for aya_obj::btf::IntEncoding where U: core::convert::Into +pub type aya_obj::btf::IntEncoding::Error = core::convert::Infallible +pub fn aya_obj::btf::IntEncoding::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::btf::IntEncoding where U: core::convert::TryFrom +pub type aya_obj::btf::IntEncoding::Error = >::Error +pub fn aya_obj::btf::IntEncoding::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::btf::IntEncoding where T: core::clone::Clone +pub type aya_obj::btf::IntEncoding::Owned = T +pub fn aya_obj::btf::IntEncoding::clone_into(&self, target: &mut T) +pub fn aya_obj::btf::IntEncoding::to_owned(&self) -> T +impl core::any::Any for aya_obj::btf::IntEncoding where T: 'static + core::marker::Sized +pub fn aya_obj::btf::IntEncoding::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::btf::IntEncoding where T: core::marker::Sized +pub fn aya_obj::btf::IntEncoding::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::btf::IntEncoding where T: core::marker::Sized +pub fn aya_obj::btf::IntEncoding::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::btf::IntEncoding +pub fn aya_obj::btf::IntEncoding::from(t: T) -> T +#[repr(u32)] pub enum aya_obj::btf::VarLinkage +pub aya_obj::btf::VarLinkage::Extern +pub aya_obj::btf::VarLinkage::Global +pub aya_obj::btf::VarLinkage::Static +pub aya_obj::btf::VarLinkage::Unknown +impl core::convert::From for aya_obj::btf::VarLinkage +pub fn aya_obj::btf::VarLinkage::from(v: u32) -> Self +impl core::clone::Clone for aya_obj::btf::VarLinkage +pub fn aya_obj::btf::VarLinkage::clone(&self) -> aya_obj::btf::VarLinkage +impl core::cmp::Eq for aya_obj::btf::VarLinkage +impl core::cmp::PartialEq for aya_obj::btf::VarLinkage +pub fn aya_obj::btf::VarLinkage::eq(&self, other: &aya_obj::btf::VarLinkage) -> bool +impl core::fmt::Debug for aya_obj::btf::VarLinkage +pub fn aya_obj::btf::VarLinkage::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::StructuralEq for aya_obj::btf::VarLinkage +impl core::marker::StructuralPartialEq for aya_obj::btf::VarLinkage +impl core::marker::Send for aya_obj::btf::VarLinkage +impl core::marker::Sync for aya_obj::btf::VarLinkage +impl core::marker::Unpin for aya_obj::btf::VarLinkage +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::VarLinkage +impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::VarLinkage +impl core::convert::Into for aya_obj::btf::VarLinkage where U: core::convert::From +pub fn aya_obj::btf::VarLinkage::into(self) -> U +impl core::convert::TryFrom for aya_obj::btf::VarLinkage where U: core::convert::Into +pub type aya_obj::btf::VarLinkage::Error = core::convert::Infallible +pub fn aya_obj::btf::VarLinkage::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::btf::VarLinkage where U: core::convert::TryFrom +pub type aya_obj::btf::VarLinkage::Error = >::Error +pub fn aya_obj::btf::VarLinkage::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::btf::VarLinkage where T: core::clone::Clone +pub type aya_obj::btf::VarLinkage::Owned = T +pub fn aya_obj::btf::VarLinkage::clone_into(&self, target: &mut T) +pub fn aya_obj::btf::VarLinkage::to_owned(&self) -> T +impl core::any::Any for aya_obj::btf::VarLinkage where T: 'static + core::marker::Sized +pub fn aya_obj::btf::VarLinkage::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::btf::VarLinkage where T: core::marker::Sized +pub fn aya_obj::btf::VarLinkage::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::btf::VarLinkage where T: core::marker::Sized +pub fn aya_obj::btf::VarLinkage::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::btf::VarLinkage +pub fn aya_obj::btf::VarLinkage::from(t: T) -> T +#[repr(C)] pub struct aya_obj::btf::Array +impl core::clone::Clone for aya_obj::btf::Array +pub fn aya_obj::btf::Array::clone(&self) -> aya_obj::btf::Array +impl core::fmt::Debug for aya_obj::btf::Array +pub fn aya_obj::btf::Array::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::btf::Array +impl core::marker::Sync for aya_obj::btf::Array +impl core::marker::Unpin for aya_obj::btf::Array +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::Array +impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::Array +impl core::convert::Into for aya_obj::btf::Array where U: core::convert::From +pub fn aya_obj::btf::Array::into(self) -> U +impl core::convert::TryFrom for aya_obj::btf::Array where U: core::convert::Into +pub type aya_obj::btf::Array::Error = core::convert::Infallible +pub fn aya_obj::btf::Array::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::btf::Array where U: core::convert::TryFrom +pub type aya_obj::btf::Array::Error = >::Error +pub fn aya_obj::btf::Array::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::btf::Array where T: core::clone::Clone +pub type aya_obj::btf::Array::Owned = T +pub fn aya_obj::btf::Array::clone_into(&self, target: &mut T) +pub fn aya_obj::btf::Array::to_owned(&self) -> T +impl core::any::Any for aya_obj::btf::Array where T: 'static + core::marker::Sized +pub fn aya_obj::btf::Array::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::btf::Array where T: core::marker::Sized +pub fn aya_obj::btf::Array::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::btf::Array where T: core::marker::Sized +pub fn aya_obj::btf::Array::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::btf::Array +pub fn aya_obj::btf::Array::from(t: T) -> T +pub struct aya_obj::btf::Btf +impl aya_obj::btf::Btf +pub fn aya_obj::btf::Btf::add_string(&mut self, name: &str) -> u32 +pub fn aya_obj::btf::Btf::add_type(&mut self, btf_type: aya_obj::btf::BtfType) -> u32 +pub fn aya_obj::btf::Btf::from_sys_fs() -> core::result::Result +pub fn aya_obj::btf::Btf::id_by_type_name_kind(&self, name: &str, kind: aya_obj::btf::BtfKind) -> core::result::Result +pub fn aya_obj::btf::Btf::new() -> aya_obj::btf::Btf +pub fn aya_obj::btf::Btf::parse(data: &[u8], endianness: object::endian::Endianness) -> core::result::Result +pub fn aya_obj::btf::Btf::parse_file>(path: P, endianness: object::endian::Endianness) -> core::result::Result +pub fn aya_obj::btf::Btf::to_bytes(&self) -> alloc::vec::Vec +impl core::default::Default for aya_obj::btf::Btf +pub fn aya_obj::btf::Btf::default() -> Self +impl core::clone::Clone for aya_obj::btf::Btf +pub fn aya_obj::btf::Btf::clone(&self) -> aya_obj::btf::Btf +impl core::fmt::Debug for aya_obj::btf::Btf +pub fn aya_obj::btf::Btf::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::btf::Btf +impl core::marker::Sync for aya_obj::btf::Btf +impl core::marker::Unpin for aya_obj::btf::Btf +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::Btf +impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::Btf +impl core::convert::Into for aya_obj::btf::Btf where U: core::convert::From +pub fn aya_obj::btf::Btf::into(self) -> U +impl core::convert::TryFrom for aya_obj::btf::Btf where U: core::convert::Into +pub type aya_obj::btf::Btf::Error = core::convert::Infallible +pub fn aya_obj::btf::Btf::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::btf::Btf where U: core::convert::TryFrom +pub type aya_obj::btf::Btf::Error = >::Error +pub fn aya_obj::btf::Btf::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::btf::Btf where T: core::clone::Clone +pub type aya_obj::btf::Btf::Owned = T +pub fn aya_obj::btf::Btf::clone_into(&self, target: &mut T) +pub fn aya_obj::btf::Btf::to_owned(&self) -> T +impl core::any::Any for aya_obj::btf::Btf where T: 'static + core::marker::Sized +pub fn aya_obj::btf::Btf::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::btf::Btf where T: core::marker::Sized +pub fn aya_obj::btf::Btf::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::btf::Btf where T: core::marker::Sized +pub fn aya_obj::btf::Btf::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::btf::Btf +pub fn aya_obj::btf::Btf::from(t: T) -> T +#[repr(C)] pub struct aya_obj::btf::BtfEnum +pub aya_obj::btf::BtfEnum::name_offset: u32 +pub aya_obj::btf::BtfEnum::value: u32 +impl core::clone::Clone for aya_obj::btf::BtfEnum +pub fn aya_obj::btf::BtfEnum::clone(&self) -> aya_obj::btf::BtfEnum +impl core::fmt::Debug for aya_obj::btf::BtfEnum +pub fn aya_obj::btf::BtfEnum::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::btf::BtfEnum +impl core::marker::Sync for aya_obj::btf::BtfEnum +impl core::marker::Unpin for aya_obj::btf::BtfEnum +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::BtfEnum +impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::BtfEnum +impl core::convert::Into for aya_obj::btf::BtfEnum where U: core::convert::From +pub fn aya_obj::btf::BtfEnum::into(self) -> U +impl core::convert::TryFrom for aya_obj::btf::BtfEnum where U: core::convert::Into +pub type aya_obj::btf::BtfEnum::Error = core::convert::Infallible +pub fn aya_obj::btf::BtfEnum::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::btf::BtfEnum where U: core::convert::TryFrom +pub type aya_obj::btf::BtfEnum::Error = >::Error +pub fn aya_obj::btf::BtfEnum::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::btf::BtfEnum where T: core::clone::Clone +pub type aya_obj::btf::BtfEnum::Owned = T +pub fn aya_obj::btf::BtfEnum::clone_into(&self, target: &mut T) +pub fn aya_obj::btf::BtfEnum::to_owned(&self) -> T +impl core::any::Any for aya_obj::btf::BtfEnum where T: 'static + core::marker::Sized +pub fn aya_obj::btf::BtfEnum::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::btf::BtfEnum where T: core::marker::Sized +pub fn aya_obj::btf::BtfEnum::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::btf::BtfEnum where T: core::marker::Sized +pub fn aya_obj::btf::BtfEnum::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::btf::BtfEnum +pub fn aya_obj::btf::BtfEnum::from(t: T) -> T +#[repr(C)] pub struct aya_obj::btf::BtfEnum64 +impl core::clone::Clone for aya_obj::btf::BtfEnum64 +pub fn aya_obj::btf::BtfEnum64::clone(&self) -> aya_obj::btf::BtfEnum64 +impl core::fmt::Debug for aya_obj::btf::BtfEnum64 +pub fn aya_obj::btf::BtfEnum64::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::btf::BtfEnum64 +impl core::marker::Sync for aya_obj::btf::BtfEnum64 +impl core::marker::Unpin for aya_obj::btf::BtfEnum64 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::BtfEnum64 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::BtfEnum64 +impl core::convert::Into for aya_obj::btf::BtfEnum64 where U: core::convert::From +pub fn aya_obj::btf::BtfEnum64::into(self) -> U +impl core::convert::TryFrom for aya_obj::btf::BtfEnum64 where U: core::convert::Into +pub type aya_obj::btf::BtfEnum64::Error = core::convert::Infallible +pub fn aya_obj::btf::BtfEnum64::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::btf::BtfEnum64 where U: core::convert::TryFrom +pub type aya_obj::btf::BtfEnum64::Error = >::Error +pub fn aya_obj::btf::BtfEnum64::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::btf::BtfEnum64 where T: core::clone::Clone +pub type aya_obj::btf::BtfEnum64::Owned = T +pub fn aya_obj::btf::BtfEnum64::clone_into(&self, target: &mut T) +pub fn aya_obj::btf::BtfEnum64::to_owned(&self) -> T +impl core::any::Any for aya_obj::btf::BtfEnum64 where T: 'static + core::marker::Sized +pub fn aya_obj::btf::BtfEnum64::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::btf::BtfEnum64 where T: core::marker::Sized +pub fn aya_obj::btf::BtfEnum64::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::btf::BtfEnum64 where T: core::marker::Sized +pub fn aya_obj::btf::BtfEnum64::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::btf::BtfEnum64 +pub fn aya_obj::btf::BtfEnum64::from(t: T) -> T +pub struct aya_obj::btf::BtfExt +impl core::clone::Clone for aya_obj::btf::BtfExt +pub fn aya_obj::btf::BtfExt::clone(&self) -> aya_obj::btf::BtfExt +impl core::fmt::Debug for aya_obj::btf::BtfExt +pub fn aya_obj::btf::BtfExt::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::btf::BtfExt +impl core::marker::Sync for aya_obj::btf::BtfExt +impl core::marker::Unpin for aya_obj::btf::BtfExt +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::BtfExt +impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::BtfExt +impl core::convert::Into for aya_obj::btf::BtfExt where U: core::convert::From +pub fn aya_obj::btf::BtfExt::into(self) -> U +impl core::convert::TryFrom for aya_obj::btf::BtfExt where U: core::convert::Into +pub type aya_obj::btf::BtfExt::Error = core::convert::Infallible +pub fn aya_obj::btf::BtfExt::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::btf::BtfExt where U: core::convert::TryFrom +pub type aya_obj::btf::BtfExt::Error = >::Error +pub fn aya_obj::btf::BtfExt::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::btf::BtfExt where T: core::clone::Clone +pub type aya_obj::btf::BtfExt::Owned = T +pub fn aya_obj::btf::BtfExt::clone_into(&self, target: &mut T) +pub fn aya_obj::btf::BtfExt::to_owned(&self) -> T +impl core::any::Any for aya_obj::btf::BtfExt where T: 'static + core::marker::Sized +pub fn aya_obj::btf::BtfExt::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::btf::BtfExt where T: core::marker::Sized +pub fn aya_obj::btf::BtfExt::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::btf::BtfExt where T: core::marker::Sized +pub fn aya_obj::btf::BtfExt::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::btf::BtfExt +pub fn aya_obj::btf::BtfExt::from(t: T) -> T +pub struct aya_obj::btf::BtfFeatures +impl aya_obj::btf::BtfFeatures +pub fn aya_obj::btf::BtfFeatures::btf_datasec(&self) -> bool +pub fn aya_obj::btf::BtfFeatures::btf_decl_tag(&self) -> bool +pub fn aya_obj::btf::BtfFeatures::btf_float(&self) -> bool +pub fn aya_obj::btf::BtfFeatures::btf_func(&self) -> bool +pub fn aya_obj::btf::BtfFeatures::btf_func_global(&self) -> bool +pub fn aya_obj::btf::BtfFeatures::btf_kind_func_proto(&self) -> bool +pub fn aya_obj::btf::BtfFeatures::btf_type_tag(&self) -> bool +impl core::default::Default for aya_obj::btf::BtfFeatures +pub fn aya_obj::btf::BtfFeatures::default() -> aya_obj::btf::BtfFeatures +impl core::fmt::Debug for aya_obj::btf::BtfFeatures +pub fn aya_obj::btf::BtfFeatures::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::btf::BtfFeatures +impl core::marker::Sync for aya_obj::btf::BtfFeatures +impl core::marker::Unpin for aya_obj::btf::BtfFeatures +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::BtfFeatures +impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::BtfFeatures +impl core::convert::Into for aya_obj::btf::BtfFeatures where U: core::convert::From +pub fn aya_obj::btf::BtfFeatures::into(self) -> U +impl core::convert::TryFrom for aya_obj::btf::BtfFeatures where U: core::convert::Into +pub type aya_obj::btf::BtfFeatures::Error = core::convert::Infallible +pub fn aya_obj::btf::BtfFeatures::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::btf::BtfFeatures where U: core::convert::TryFrom +pub type aya_obj::btf::BtfFeatures::Error = >::Error +pub fn aya_obj::btf::BtfFeatures::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_obj::btf::BtfFeatures where T: 'static + core::marker::Sized +pub fn aya_obj::btf::BtfFeatures::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::btf::BtfFeatures where T: core::marker::Sized +pub fn aya_obj::btf::BtfFeatures::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::btf::BtfFeatures where T: core::marker::Sized +pub fn aya_obj::btf::BtfFeatures::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::btf::BtfFeatures +pub fn aya_obj::btf::BtfFeatures::from(t: T) -> T +#[repr(C)] pub struct aya_obj::btf::BtfParam +pub aya_obj::btf::BtfParam::btf_type: u32 +pub aya_obj::btf::BtfParam::name_offset: u32 +impl core::clone::Clone for aya_obj::btf::BtfParam +pub fn aya_obj::btf::BtfParam::clone(&self) -> aya_obj::btf::BtfParam +impl core::fmt::Debug for aya_obj::btf::BtfParam +pub fn aya_obj::btf::BtfParam::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::btf::BtfParam +impl core::marker::Sync for aya_obj::btf::BtfParam +impl core::marker::Unpin for aya_obj::btf::BtfParam +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::BtfParam +impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::BtfParam +impl core::convert::Into for aya_obj::btf::BtfParam where U: core::convert::From +pub fn aya_obj::btf::BtfParam::into(self) -> U +impl core::convert::TryFrom for aya_obj::btf::BtfParam where U: core::convert::Into +pub type aya_obj::btf::BtfParam::Error = core::convert::Infallible +pub fn aya_obj::btf::BtfParam::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::btf::BtfParam where U: core::convert::TryFrom +pub type aya_obj::btf::BtfParam::Error = >::Error +pub fn aya_obj::btf::BtfParam::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::btf::BtfParam where T: core::clone::Clone +pub type aya_obj::btf::BtfParam::Owned = T +pub fn aya_obj::btf::BtfParam::clone_into(&self, target: &mut T) +pub fn aya_obj::btf::BtfParam::to_owned(&self) -> T +impl core::any::Any for aya_obj::btf::BtfParam where T: 'static + core::marker::Sized +pub fn aya_obj::btf::BtfParam::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::btf::BtfParam where T: core::marker::Sized +pub fn aya_obj::btf::BtfParam::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::btf::BtfParam where T: core::marker::Sized +pub fn aya_obj::btf::BtfParam::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::btf::BtfParam +pub fn aya_obj::btf::BtfParam::from(t: T) -> T +pub struct aya_obj::btf::BtfRelocationError +pub aya_obj::btf::BtfRelocationError::section: alloc::string::String +impl core::error::Error for aya_obj::btf::BtfRelocationError +pub fn aya_obj::btf::BtfRelocationError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)> +impl core::fmt::Display for aya_obj::btf::BtfRelocationError +pub fn aya_obj::btf::BtfRelocationError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::fmt::Debug for aya_obj::btf::BtfRelocationError +pub fn aya_obj::btf::BtfRelocationError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::btf::BtfRelocationError +impl core::marker::Sync for aya_obj::btf::BtfRelocationError +impl core::marker::Unpin for aya_obj::btf::BtfRelocationError +impl !core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::BtfRelocationError +impl !core::panic::unwind_safe::UnwindSafe for aya_obj::btf::BtfRelocationError +impl core::any::Provider for aya_obj::btf::BtfRelocationError where E: core::error::Error + core::marker::Sized +pub fn aya_obj::btf::BtfRelocationError::provide<'a>(&'a self, demand: &mut core::any::Demand<'a>) +impl core::convert::Into for aya_obj::btf::BtfRelocationError where U: core::convert::From +pub fn aya_obj::btf::BtfRelocationError::into(self) -> U +impl core::convert::TryFrom for aya_obj::btf::BtfRelocationError where U: core::convert::Into +pub type aya_obj::btf::BtfRelocationError::Error = core::convert::Infallible +pub fn aya_obj::btf::BtfRelocationError::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::btf::BtfRelocationError where U: core::convert::TryFrom +pub type aya_obj::btf::BtfRelocationError::Error = >::Error +pub fn aya_obj::btf::BtfRelocationError::try_into(self) -> core::result::Result>::Error> +impl alloc::string::ToString for aya_obj::btf::BtfRelocationError where T: core::fmt::Display + core::marker::Sized +pub fn aya_obj::btf::BtfRelocationError::to_string(&self) -> alloc::string::String +impl core::any::Any for aya_obj::btf::BtfRelocationError where T: 'static + core::marker::Sized +pub fn aya_obj::btf::BtfRelocationError::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::btf::BtfRelocationError where T: core::marker::Sized +pub fn aya_obj::btf::BtfRelocationError::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::btf::BtfRelocationError where T: core::marker::Sized +pub fn aya_obj::btf::BtfRelocationError::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::btf::BtfRelocationError +pub fn aya_obj::btf::BtfRelocationError::from(t: T) -> T +#[repr(C)] pub struct aya_obj::btf::Const +impl core::clone::Clone for aya_obj::btf::Const +pub fn aya_obj::btf::Const::clone(&self) -> aya_obj::btf::Const +impl core::fmt::Debug for aya_obj::btf::Const +pub fn aya_obj::btf::Const::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::btf::Const +impl core::marker::Sync for aya_obj::btf::Const +impl core::marker::Unpin for aya_obj::btf::Const +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::Const +impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::Const +impl core::convert::Into for aya_obj::btf::Const where U: core::convert::From +pub fn aya_obj::btf::Const::into(self) -> U +impl core::convert::TryFrom for aya_obj::btf::Const where U: core::convert::Into +pub type aya_obj::btf::Const::Error = core::convert::Infallible +pub fn aya_obj::btf::Const::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::btf::Const where U: core::convert::TryFrom +pub type aya_obj::btf::Const::Error = >::Error +pub fn aya_obj::btf::Const::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::btf::Const where T: core::clone::Clone +pub type aya_obj::btf::Const::Owned = T +pub fn aya_obj::btf::Const::clone_into(&self, target: &mut T) +pub fn aya_obj::btf::Const::to_owned(&self) -> T +impl core::any::Any for aya_obj::btf::Const where T: 'static + core::marker::Sized +pub fn aya_obj::btf::Const::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::btf::Const where T: core::marker::Sized +pub fn aya_obj::btf::Const::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::btf::Const where T: core::marker::Sized +pub fn aya_obj::btf::Const::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::btf::Const +pub fn aya_obj::btf::Const::from(t: T) -> T +#[repr(C)] pub struct aya_obj::btf::DataSec +impl aya_obj::btf::DataSec +pub fn aya_obj::btf::DataSec::new(name_offset: u32, entries: alloc::vec::Vec, size: u32) -> Self +impl core::clone::Clone for aya_obj::btf::DataSec +pub fn aya_obj::btf::DataSec::clone(&self) -> aya_obj::btf::DataSec +impl core::fmt::Debug for aya_obj::btf::DataSec +pub fn aya_obj::btf::DataSec::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::btf::DataSec +impl core::marker::Sync for aya_obj::btf::DataSec +impl core::marker::Unpin for aya_obj::btf::DataSec +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::DataSec +impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::DataSec +impl core::convert::Into for aya_obj::btf::DataSec where U: core::convert::From +pub fn aya_obj::btf::DataSec::into(self) -> U +impl core::convert::TryFrom for aya_obj::btf::DataSec where U: core::convert::Into +pub type aya_obj::btf::DataSec::Error = core::convert::Infallible +pub fn aya_obj::btf::DataSec::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::btf::DataSec where U: core::convert::TryFrom +pub type aya_obj::btf::DataSec::Error = >::Error +pub fn aya_obj::btf::DataSec::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::btf::DataSec where T: core::clone::Clone +pub type aya_obj::btf::DataSec::Owned = T +pub fn aya_obj::btf::DataSec::clone_into(&self, target: &mut T) +pub fn aya_obj::btf::DataSec::to_owned(&self) -> T +impl core::any::Any for aya_obj::btf::DataSec where T: 'static + core::marker::Sized +pub fn aya_obj::btf::DataSec::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::btf::DataSec where T: core::marker::Sized +pub fn aya_obj::btf::DataSec::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::btf::DataSec where T: core::marker::Sized +pub fn aya_obj::btf::DataSec::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::btf::DataSec +pub fn aya_obj::btf::DataSec::from(t: T) -> T +#[repr(C)] pub struct aya_obj::btf::DataSecEntry +pub aya_obj::btf::DataSecEntry::btf_type: u32 +pub aya_obj::btf::DataSecEntry::offset: u32 +pub aya_obj::btf::DataSecEntry::size: u32 +impl core::clone::Clone for aya_obj::btf::DataSecEntry +pub fn aya_obj::btf::DataSecEntry::clone(&self) -> aya_obj::btf::DataSecEntry +impl core::fmt::Debug for aya_obj::btf::DataSecEntry +pub fn aya_obj::btf::DataSecEntry::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::btf::DataSecEntry +impl core::marker::Sync for aya_obj::btf::DataSecEntry +impl core::marker::Unpin for aya_obj::btf::DataSecEntry +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::DataSecEntry +impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::DataSecEntry +impl core::convert::Into for aya_obj::btf::DataSecEntry where U: core::convert::From +pub fn aya_obj::btf::DataSecEntry::into(self) -> U +impl core::convert::TryFrom for aya_obj::btf::DataSecEntry where U: core::convert::Into +pub type aya_obj::btf::DataSecEntry::Error = core::convert::Infallible +pub fn aya_obj::btf::DataSecEntry::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::btf::DataSecEntry where U: core::convert::TryFrom +pub type aya_obj::btf::DataSecEntry::Error = >::Error +pub fn aya_obj::btf::DataSecEntry::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::btf::DataSecEntry where T: core::clone::Clone +pub type aya_obj::btf::DataSecEntry::Owned = T +pub fn aya_obj::btf::DataSecEntry::clone_into(&self, target: &mut T) +pub fn aya_obj::btf::DataSecEntry::to_owned(&self) -> T +impl core::any::Any for aya_obj::btf::DataSecEntry where T: 'static + core::marker::Sized +pub fn aya_obj::btf::DataSecEntry::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::btf::DataSecEntry where T: core::marker::Sized +pub fn aya_obj::btf::DataSecEntry::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::btf::DataSecEntry where T: core::marker::Sized +pub fn aya_obj::btf::DataSecEntry::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::btf::DataSecEntry +pub fn aya_obj::btf::DataSecEntry::from(t: T) -> T +#[repr(C)] pub struct aya_obj::btf::DeclTag +impl aya_obj::btf::DeclTag +pub fn aya_obj::btf::DeclTag::new(name_offset: u32, btf_type: u32, component_index: i32) -> Self +impl core::clone::Clone for aya_obj::btf::DeclTag +pub fn aya_obj::btf::DeclTag::clone(&self) -> aya_obj::btf::DeclTag +impl core::fmt::Debug for aya_obj::btf::DeclTag +pub fn aya_obj::btf::DeclTag::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::btf::DeclTag +impl core::marker::Sync for aya_obj::btf::DeclTag +impl core::marker::Unpin for aya_obj::btf::DeclTag +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::DeclTag +impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::DeclTag +impl core::convert::Into for aya_obj::btf::DeclTag where U: core::convert::From +pub fn aya_obj::btf::DeclTag::into(self) -> U +impl core::convert::TryFrom for aya_obj::btf::DeclTag where U: core::convert::Into +pub type aya_obj::btf::DeclTag::Error = core::convert::Infallible +pub fn aya_obj::btf::DeclTag::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::btf::DeclTag where U: core::convert::TryFrom +pub type aya_obj::btf::DeclTag::Error = >::Error +pub fn aya_obj::btf::DeclTag::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::btf::DeclTag where T: core::clone::Clone +pub type aya_obj::btf::DeclTag::Owned = T +pub fn aya_obj::btf::DeclTag::clone_into(&self, target: &mut T) +pub fn aya_obj::btf::DeclTag::to_owned(&self) -> T +impl core::any::Any for aya_obj::btf::DeclTag where T: 'static + core::marker::Sized +pub fn aya_obj::btf::DeclTag::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::btf::DeclTag where T: core::marker::Sized +pub fn aya_obj::btf::DeclTag::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::btf::DeclTag where T: core::marker::Sized +pub fn aya_obj::btf::DeclTag::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::btf::DeclTag +pub fn aya_obj::btf::DeclTag::from(t: T) -> T +#[repr(C)] pub struct aya_obj::btf::Enum +impl aya_obj::btf::Enum +pub fn aya_obj::btf::Enum::new(name_offset: u32, variants: alloc::vec::Vec) -> Self +impl core::clone::Clone for aya_obj::btf::Enum +pub fn aya_obj::btf::Enum::clone(&self) -> aya_obj::btf::Enum +impl core::fmt::Debug for aya_obj::btf::Enum +pub fn aya_obj::btf::Enum::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::btf::Enum +impl core::marker::Sync for aya_obj::btf::Enum +impl core::marker::Unpin for aya_obj::btf::Enum +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::Enum +impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::Enum +impl core::convert::Into for aya_obj::btf::Enum where U: core::convert::From +pub fn aya_obj::btf::Enum::into(self) -> U +impl core::convert::TryFrom for aya_obj::btf::Enum where U: core::convert::Into +pub type aya_obj::btf::Enum::Error = core::convert::Infallible +pub fn aya_obj::btf::Enum::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::btf::Enum where U: core::convert::TryFrom +pub type aya_obj::btf::Enum::Error = >::Error +pub fn aya_obj::btf::Enum::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::btf::Enum where T: core::clone::Clone +pub type aya_obj::btf::Enum::Owned = T +pub fn aya_obj::btf::Enum::clone_into(&self, target: &mut T) +pub fn aya_obj::btf::Enum::to_owned(&self) -> T +impl core::any::Any for aya_obj::btf::Enum where T: 'static + core::marker::Sized +pub fn aya_obj::btf::Enum::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::btf::Enum where T: core::marker::Sized +pub fn aya_obj::btf::Enum::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::btf::Enum where T: core::marker::Sized +pub fn aya_obj::btf::Enum::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::btf::Enum +pub fn aya_obj::btf::Enum::from(t: T) -> T +#[repr(C)] pub struct aya_obj::btf::Enum64 +impl core::clone::Clone for aya_obj::btf::Enum64 +pub fn aya_obj::btf::Enum64::clone(&self) -> aya_obj::btf::Enum64 +impl core::fmt::Debug for aya_obj::btf::Enum64 +pub fn aya_obj::btf::Enum64::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::btf::Enum64 +impl core::marker::Sync for aya_obj::btf::Enum64 +impl core::marker::Unpin for aya_obj::btf::Enum64 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::Enum64 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::Enum64 +impl core::convert::Into for aya_obj::btf::Enum64 where U: core::convert::From +pub fn aya_obj::btf::Enum64::into(self) -> U +impl core::convert::TryFrom for aya_obj::btf::Enum64 where U: core::convert::Into +pub type aya_obj::btf::Enum64::Error = core::convert::Infallible +pub fn aya_obj::btf::Enum64::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::btf::Enum64 where U: core::convert::TryFrom +pub type aya_obj::btf::Enum64::Error = >::Error +pub fn aya_obj::btf::Enum64::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::btf::Enum64 where T: core::clone::Clone +pub type aya_obj::btf::Enum64::Owned = T +pub fn aya_obj::btf::Enum64::clone_into(&self, target: &mut T) +pub fn aya_obj::btf::Enum64::to_owned(&self) -> T +impl core::any::Any for aya_obj::btf::Enum64 where T: 'static + core::marker::Sized +pub fn aya_obj::btf::Enum64::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::btf::Enum64 where T: core::marker::Sized +pub fn aya_obj::btf::Enum64::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::btf::Enum64 where T: core::marker::Sized +pub fn aya_obj::btf::Enum64::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::btf::Enum64 +pub fn aya_obj::btf::Enum64::from(t: T) -> T +#[repr(C)] pub struct aya_obj::btf::Float +impl aya_obj::btf::Float +pub fn aya_obj::btf::Float::new(name_offset: u32, size: u32) -> Self +impl core::clone::Clone for aya_obj::btf::Float +pub fn aya_obj::btf::Float::clone(&self) -> aya_obj::btf::Float +impl core::fmt::Debug for aya_obj::btf::Float +pub fn aya_obj::btf::Float::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::btf::Float +impl core::marker::Sync for aya_obj::btf::Float +impl core::marker::Unpin for aya_obj::btf::Float +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::Float +impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::Float +impl core::convert::Into for aya_obj::btf::Float where U: core::convert::From +pub fn aya_obj::btf::Float::into(self) -> U +impl core::convert::TryFrom for aya_obj::btf::Float where U: core::convert::Into +pub type aya_obj::btf::Float::Error = core::convert::Infallible +pub fn aya_obj::btf::Float::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::btf::Float where U: core::convert::TryFrom +pub type aya_obj::btf::Float::Error = >::Error +pub fn aya_obj::btf::Float::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::btf::Float where T: core::clone::Clone +pub type aya_obj::btf::Float::Owned = T +pub fn aya_obj::btf::Float::clone_into(&self, target: &mut T) +pub fn aya_obj::btf::Float::to_owned(&self) -> T +impl core::any::Any for aya_obj::btf::Float where T: 'static + core::marker::Sized +pub fn aya_obj::btf::Float::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::btf::Float where T: core::marker::Sized +pub fn aya_obj::btf::Float::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::btf::Float where T: core::marker::Sized +pub fn aya_obj::btf::Float::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::btf::Float +pub fn aya_obj::btf::Float::from(t: T) -> T +#[repr(C)] pub struct aya_obj::btf::Func +impl aya_obj::btf::Func +pub fn aya_obj::btf::Func::new(name_offset: u32, proto: u32, linkage: aya_obj::btf::FuncLinkage) -> Self +impl core::clone::Clone for aya_obj::btf::Func +pub fn aya_obj::btf::Func::clone(&self) -> aya_obj::btf::Func +impl core::fmt::Debug for aya_obj::btf::Func +pub fn aya_obj::btf::Func::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::btf::Func +impl core::marker::Sync for aya_obj::btf::Func +impl core::marker::Unpin for aya_obj::btf::Func +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::Func +impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::Func +impl core::convert::Into for aya_obj::btf::Func where U: core::convert::From +pub fn aya_obj::btf::Func::into(self) -> U +impl core::convert::TryFrom for aya_obj::btf::Func where U: core::convert::Into +pub type aya_obj::btf::Func::Error = core::convert::Infallible +pub fn aya_obj::btf::Func::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::btf::Func where U: core::convert::TryFrom +pub type aya_obj::btf::Func::Error = >::Error +pub fn aya_obj::btf::Func::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::btf::Func where T: core::clone::Clone +pub type aya_obj::btf::Func::Owned = T +pub fn aya_obj::btf::Func::clone_into(&self, target: &mut T) +pub fn aya_obj::btf::Func::to_owned(&self) -> T +impl core::any::Any for aya_obj::btf::Func where T: 'static + core::marker::Sized +pub fn aya_obj::btf::Func::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::btf::Func where T: core::marker::Sized +pub fn aya_obj::btf::Func::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::btf::Func where T: core::marker::Sized +pub fn aya_obj::btf::Func::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::btf::Func +pub fn aya_obj::btf::Func::from(t: T) -> T +pub struct aya_obj::btf::FuncInfo +pub aya_obj::btf::FuncInfo::data: std::collections::hash::map::HashMap +impl core::clone::Clone for aya_obj::btf::FuncInfo +pub fn aya_obj::btf::FuncInfo::clone(&self) -> aya_obj::btf::FuncInfo +impl core::fmt::Debug for aya_obj::btf::FuncInfo +pub fn aya_obj::btf::FuncInfo::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::btf::FuncInfo +impl core::marker::Sync for aya_obj::btf::FuncInfo +impl core::marker::Unpin for aya_obj::btf::FuncInfo +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::FuncInfo +impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::FuncInfo +impl core::convert::Into for aya_obj::btf::FuncInfo where U: core::convert::From +pub fn aya_obj::btf::FuncInfo::into(self) -> U +impl core::convert::TryFrom for aya_obj::btf::FuncInfo where U: core::convert::Into +pub type aya_obj::btf::FuncInfo::Error = core::convert::Infallible +pub fn aya_obj::btf::FuncInfo::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::btf::FuncInfo where U: core::convert::TryFrom +pub type aya_obj::btf::FuncInfo::Error = >::Error +pub fn aya_obj::btf::FuncInfo::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::btf::FuncInfo where T: core::clone::Clone +pub type aya_obj::btf::FuncInfo::Owned = T +pub fn aya_obj::btf::FuncInfo::clone_into(&self, target: &mut T) +pub fn aya_obj::btf::FuncInfo::to_owned(&self) -> T +impl core::any::Any for aya_obj::btf::FuncInfo where T: 'static + core::marker::Sized +pub fn aya_obj::btf::FuncInfo::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::btf::FuncInfo where T: core::marker::Sized +pub fn aya_obj::btf::FuncInfo::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::btf::FuncInfo where T: core::marker::Sized +pub fn aya_obj::btf::FuncInfo::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::btf::FuncInfo +pub fn aya_obj::btf::FuncInfo::from(t: T) -> T +#[repr(C)] pub struct aya_obj::btf::FuncProto +impl aya_obj::btf::FuncProto +pub fn aya_obj::btf::FuncProto::new(params: alloc::vec::Vec, return_type: u32) -> Self +impl core::clone::Clone for aya_obj::btf::FuncProto +pub fn aya_obj::btf::FuncProto::clone(&self) -> aya_obj::btf::FuncProto +impl core::fmt::Debug for aya_obj::btf::FuncProto +pub fn aya_obj::btf::FuncProto::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::btf::FuncProto +impl core::marker::Sync for aya_obj::btf::FuncProto +impl core::marker::Unpin for aya_obj::btf::FuncProto +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::FuncProto +impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::FuncProto +impl core::convert::Into for aya_obj::btf::FuncProto where U: core::convert::From +pub fn aya_obj::btf::FuncProto::into(self) -> U +impl core::convert::TryFrom for aya_obj::btf::FuncProto where U: core::convert::Into +pub type aya_obj::btf::FuncProto::Error = core::convert::Infallible +pub fn aya_obj::btf::FuncProto::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::btf::FuncProto where U: core::convert::TryFrom +pub type aya_obj::btf::FuncProto::Error = >::Error +pub fn aya_obj::btf::FuncProto::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::btf::FuncProto where T: core::clone::Clone +pub type aya_obj::btf::FuncProto::Owned = T +pub fn aya_obj::btf::FuncProto::clone_into(&self, target: &mut T) +pub fn aya_obj::btf::FuncProto::to_owned(&self) -> T +impl core::any::Any for aya_obj::btf::FuncProto where T: 'static + core::marker::Sized +pub fn aya_obj::btf::FuncProto::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::btf::FuncProto where T: core::marker::Sized +pub fn aya_obj::btf::FuncProto::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::btf::FuncProto where T: core::marker::Sized +pub fn aya_obj::btf::FuncProto::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::btf::FuncProto +pub fn aya_obj::btf::FuncProto::from(t: T) -> T +pub struct aya_obj::btf::FuncSecInfo +pub aya_obj::btf::FuncSecInfo::func_info: alloc::vec::Vec +pub aya_obj::btf::FuncSecInfo::num_info: u32 +impl aya_obj::btf::FuncSecInfo +pub fn aya_obj::btf::FuncSecInfo::func_info_bytes(&self) -> alloc::vec::Vec +pub fn aya_obj::btf::FuncSecInfo::len(&self) -> usize +impl core::clone::Clone for aya_obj::btf::FuncSecInfo +pub fn aya_obj::btf::FuncSecInfo::clone(&self) -> aya_obj::btf::FuncSecInfo +impl core::default::Default for aya_obj::btf::FuncSecInfo +pub fn aya_obj::btf::FuncSecInfo::default() -> aya_obj::btf::FuncSecInfo +impl core::fmt::Debug for aya_obj::btf::FuncSecInfo +pub fn aya_obj::btf::FuncSecInfo::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::btf::FuncSecInfo +impl core::marker::Sync for aya_obj::btf::FuncSecInfo +impl core::marker::Unpin for aya_obj::btf::FuncSecInfo +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::FuncSecInfo +impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::FuncSecInfo +impl core::convert::Into for aya_obj::btf::FuncSecInfo where U: core::convert::From +pub fn aya_obj::btf::FuncSecInfo::into(self) -> U +impl core::convert::TryFrom for aya_obj::btf::FuncSecInfo where U: core::convert::Into +pub type aya_obj::btf::FuncSecInfo::Error = core::convert::Infallible +pub fn aya_obj::btf::FuncSecInfo::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::btf::FuncSecInfo where U: core::convert::TryFrom +pub type aya_obj::btf::FuncSecInfo::Error = >::Error +pub fn aya_obj::btf::FuncSecInfo::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::btf::FuncSecInfo where T: core::clone::Clone +pub type aya_obj::btf::FuncSecInfo::Owned = T +pub fn aya_obj::btf::FuncSecInfo::clone_into(&self, target: &mut T) +pub fn aya_obj::btf::FuncSecInfo::to_owned(&self) -> T +impl core::any::Any for aya_obj::btf::FuncSecInfo where T: 'static + core::marker::Sized +pub fn aya_obj::btf::FuncSecInfo::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::btf::FuncSecInfo where T: core::marker::Sized +pub fn aya_obj::btf::FuncSecInfo::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::btf::FuncSecInfo where T: core::marker::Sized +pub fn aya_obj::btf::FuncSecInfo::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::btf::FuncSecInfo +pub fn aya_obj::btf::FuncSecInfo::from(t: T) -> T +#[repr(C)] pub struct aya_obj::btf::Fwd +impl core::clone::Clone for aya_obj::btf::Fwd +pub fn aya_obj::btf::Fwd::clone(&self) -> aya_obj::btf::Fwd +impl core::fmt::Debug for aya_obj::btf::Fwd +pub fn aya_obj::btf::Fwd::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::btf::Fwd +impl core::marker::Sync for aya_obj::btf::Fwd +impl core::marker::Unpin for aya_obj::btf::Fwd +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::Fwd +impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::Fwd +impl core::convert::Into for aya_obj::btf::Fwd where U: core::convert::From +pub fn aya_obj::btf::Fwd::into(self) -> U +impl core::convert::TryFrom for aya_obj::btf::Fwd where U: core::convert::Into +pub type aya_obj::btf::Fwd::Error = core::convert::Infallible +pub fn aya_obj::btf::Fwd::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::btf::Fwd where U: core::convert::TryFrom +pub type aya_obj::btf::Fwd::Error = >::Error +pub fn aya_obj::btf::Fwd::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::btf::Fwd where T: core::clone::Clone +pub type aya_obj::btf::Fwd::Owned = T +pub fn aya_obj::btf::Fwd::clone_into(&self, target: &mut T) +pub fn aya_obj::btf::Fwd::to_owned(&self) -> T +impl core::any::Any for aya_obj::btf::Fwd where T: 'static + core::marker::Sized +pub fn aya_obj::btf::Fwd::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::btf::Fwd where T: core::marker::Sized +pub fn aya_obj::btf::Fwd::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::btf::Fwd where T: core::marker::Sized +pub fn aya_obj::btf::Fwd::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::btf::Fwd +pub fn aya_obj::btf::Fwd::from(t: T) -> T +#[repr(C)] pub struct aya_obj::btf::Int +impl aya_obj::btf::Int +pub fn aya_obj::btf::Int::new(name_offset: u32, size: u32, encoding: aya_obj::btf::IntEncoding, offset: u32) -> Self +impl core::clone::Clone for aya_obj::btf::Int +pub fn aya_obj::btf::Int::clone(&self) -> aya_obj::btf::Int +impl core::fmt::Debug for aya_obj::btf::Int +pub fn aya_obj::btf::Int::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::btf::Int +impl core::marker::Sync for aya_obj::btf::Int +impl core::marker::Unpin for aya_obj::btf::Int +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::Int +impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::Int +impl core::convert::Into for aya_obj::btf::Int where U: core::convert::From +pub fn aya_obj::btf::Int::into(self) -> U +impl core::convert::TryFrom for aya_obj::btf::Int where U: core::convert::Into +pub type aya_obj::btf::Int::Error = core::convert::Infallible +pub fn aya_obj::btf::Int::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::btf::Int where U: core::convert::TryFrom +pub type aya_obj::btf::Int::Error = >::Error +pub fn aya_obj::btf::Int::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::btf::Int where T: core::clone::Clone +pub type aya_obj::btf::Int::Owned = T +pub fn aya_obj::btf::Int::clone_into(&self, target: &mut T) +pub fn aya_obj::btf::Int::to_owned(&self) -> T +impl core::any::Any for aya_obj::btf::Int where T: 'static + core::marker::Sized +pub fn aya_obj::btf::Int::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::btf::Int where T: core::marker::Sized +pub fn aya_obj::btf::Int::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::btf::Int where T: core::marker::Sized +pub fn aya_obj::btf::Int::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::btf::Int +pub fn aya_obj::btf::Int::from(t: T) -> T +pub struct aya_obj::btf::LineSecInfo +pub aya_obj::btf::LineSecInfo::line_info: alloc::vec::Vec +pub aya_obj::btf::LineSecInfo::num_info: u32 +impl aya_obj::btf::LineSecInfo +pub fn aya_obj::btf::LineSecInfo::len(&self) -> usize +pub fn aya_obj::btf::LineSecInfo::line_info_bytes(&self) -> alloc::vec::Vec +impl core::clone::Clone for aya_obj::btf::LineSecInfo +pub fn aya_obj::btf::LineSecInfo::clone(&self) -> aya_obj::btf::LineSecInfo +impl core::default::Default for aya_obj::btf::LineSecInfo +pub fn aya_obj::btf::LineSecInfo::default() -> aya_obj::btf::LineSecInfo +impl core::fmt::Debug for aya_obj::btf::LineSecInfo +pub fn aya_obj::btf::LineSecInfo::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::btf::LineSecInfo +impl core::marker::Sync for aya_obj::btf::LineSecInfo +impl core::marker::Unpin for aya_obj::btf::LineSecInfo +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::LineSecInfo +impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::LineSecInfo +impl core::convert::Into for aya_obj::btf::LineSecInfo where U: core::convert::From +pub fn aya_obj::btf::LineSecInfo::into(self) -> U +impl core::convert::TryFrom for aya_obj::btf::LineSecInfo where U: core::convert::Into +pub type aya_obj::btf::LineSecInfo::Error = core::convert::Infallible +pub fn aya_obj::btf::LineSecInfo::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::btf::LineSecInfo where U: core::convert::TryFrom +pub type aya_obj::btf::LineSecInfo::Error = >::Error +pub fn aya_obj::btf::LineSecInfo::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::btf::LineSecInfo where T: core::clone::Clone +pub type aya_obj::btf::LineSecInfo::Owned = T +pub fn aya_obj::btf::LineSecInfo::clone_into(&self, target: &mut T) +pub fn aya_obj::btf::LineSecInfo::to_owned(&self) -> T +impl core::any::Any for aya_obj::btf::LineSecInfo where T: 'static + core::marker::Sized +pub fn aya_obj::btf::LineSecInfo::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::btf::LineSecInfo where T: core::marker::Sized +pub fn aya_obj::btf::LineSecInfo::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::btf::LineSecInfo where T: core::marker::Sized +pub fn aya_obj::btf::LineSecInfo::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::btf::LineSecInfo +pub fn aya_obj::btf::LineSecInfo::from(t: T) -> T +#[repr(C)] pub struct aya_obj::btf::Ptr +impl aya_obj::btf::Ptr +pub fn aya_obj::btf::Ptr::new(name_offset: u32, btf_type: u32) -> Self +impl core::clone::Clone for aya_obj::btf::Ptr +pub fn aya_obj::btf::Ptr::clone(&self) -> aya_obj::btf::Ptr +impl core::fmt::Debug for aya_obj::btf::Ptr +pub fn aya_obj::btf::Ptr::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::btf::Ptr +impl core::marker::Sync for aya_obj::btf::Ptr +impl core::marker::Unpin for aya_obj::btf::Ptr +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::Ptr +impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::Ptr +impl core::convert::Into for aya_obj::btf::Ptr where U: core::convert::From +pub fn aya_obj::btf::Ptr::into(self) -> U +impl core::convert::TryFrom for aya_obj::btf::Ptr where U: core::convert::Into +pub type aya_obj::btf::Ptr::Error = core::convert::Infallible +pub fn aya_obj::btf::Ptr::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::btf::Ptr where U: core::convert::TryFrom +pub type aya_obj::btf::Ptr::Error = >::Error +pub fn aya_obj::btf::Ptr::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::btf::Ptr where T: core::clone::Clone +pub type aya_obj::btf::Ptr::Owned = T +pub fn aya_obj::btf::Ptr::clone_into(&self, target: &mut T) +pub fn aya_obj::btf::Ptr::to_owned(&self) -> T +impl core::any::Any for aya_obj::btf::Ptr where T: 'static + core::marker::Sized +pub fn aya_obj::btf::Ptr::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::btf::Ptr where T: core::marker::Sized +pub fn aya_obj::btf::Ptr::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::btf::Ptr where T: core::marker::Sized +pub fn aya_obj::btf::Ptr::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::btf::Ptr +pub fn aya_obj::btf::Ptr::from(t: T) -> T +pub struct aya_obj::btf::Restrict +impl core::clone::Clone for aya_obj::btf::Restrict +pub fn aya_obj::btf::Restrict::clone(&self) -> aya_obj::btf::Restrict +impl core::fmt::Debug for aya_obj::btf::Restrict +pub fn aya_obj::btf::Restrict::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::btf::Restrict +impl core::marker::Sync for aya_obj::btf::Restrict +impl core::marker::Unpin for aya_obj::btf::Restrict +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::Restrict +impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::Restrict +impl core::convert::Into for aya_obj::btf::Restrict where U: core::convert::From +pub fn aya_obj::btf::Restrict::into(self) -> U +impl core::convert::TryFrom for aya_obj::btf::Restrict where U: core::convert::Into +pub type aya_obj::btf::Restrict::Error = core::convert::Infallible +pub fn aya_obj::btf::Restrict::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::btf::Restrict where U: core::convert::TryFrom +pub type aya_obj::btf::Restrict::Error = >::Error +pub fn aya_obj::btf::Restrict::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::btf::Restrict where T: core::clone::Clone +pub type aya_obj::btf::Restrict::Owned = T +pub fn aya_obj::btf::Restrict::clone_into(&self, target: &mut T) +pub fn aya_obj::btf::Restrict::to_owned(&self) -> T +impl core::any::Any for aya_obj::btf::Restrict where T: 'static + core::marker::Sized +pub fn aya_obj::btf::Restrict::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::btf::Restrict where T: core::marker::Sized +pub fn aya_obj::btf::Restrict::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::btf::Restrict where T: core::marker::Sized +pub fn aya_obj::btf::Restrict::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::btf::Restrict +pub fn aya_obj::btf::Restrict::from(t: T) -> T +#[repr(C)] pub struct aya_obj::btf::Struct +impl core::clone::Clone for aya_obj::btf::Struct +pub fn aya_obj::btf::Struct::clone(&self) -> aya_obj::btf::Struct +impl core::fmt::Debug for aya_obj::btf::Struct +pub fn aya_obj::btf::Struct::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::btf::Struct +impl core::marker::Sync for aya_obj::btf::Struct +impl core::marker::Unpin for aya_obj::btf::Struct +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::Struct +impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::Struct +impl core::convert::Into for aya_obj::btf::Struct where U: core::convert::From +pub fn aya_obj::btf::Struct::into(self) -> U +impl core::convert::TryFrom for aya_obj::btf::Struct where U: core::convert::Into +pub type aya_obj::btf::Struct::Error = core::convert::Infallible +pub fn aya_obj::btf::Struct::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::btf::Struct where U: core::convert::TryFrom +pub type aya_obj::btf::Struct::Error = >::Error +pub fn aya_obj::btf::Struct::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::btf::Struct where T: core::clone::Clone +pub type aya_obj::btf::Struct::Owned = T +pub fn aya_obj::btf::Struct::clone_into(&self, target: &mut T) +pub fn aya_obj::btf::Struct::to_owned(&self) -> T +impl core::any::Any for aya_obj::btf::Struct where T: 'static + core::marker::Sized +pub fn aya_obj::btf::Struct::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::btf::Struct where T: core::marker::Sized +pub fn aya_obj::btf::Struct::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::btf::Struct where T: core::marker::Sized +pub fn aya_obj::btf::Struct::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::btf::Struct +pub fn aya_obj::btf::Struct::from(t: T) -> T +#[repr(C)] pub struct aya_obj::btf::TypeTag +impl aya_obj::btf::TypeTag +pub fn aya_obj::btf::TypeTag::new(name_offset: u32, btf_type: u32) -> Self +impl core::clone::Clone for aya_obj::btf::TypeTag +pub fn aya_obj::btf::TypeTag::clone(&self) -> aya_obj::btf::TypeTag +impl core::fmt::Debug for aya_obj::btf::TypeTag +pub fn aya_obj::btf::TypeTag::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::btf::TypeTag +impl core::marker::Sync for aya_obj::btf::TypeTag +impl core::marker::Unpin for aya_obj::btf::TypeTag +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::TypeTag +impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::TypeTag +impl core::convert::Into for aya_obj::btf::TypeTag where U: core::convert::From +pub fn aya_obj::btf::TypeTag::into(self) -> U +impl core::convert::TryFrom for aya_obj::btf::TypeTag where U: core::convert::Into +pub type aya_obj::btf::TypeTag::Error = core::convert::Infallible +pub fn aya_obj::btf::TypeTag::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::btf::TypeTag where U: core::convert::TryFrom +pub type aya_obj::btf::TypeTag::Error = >::Error +pub fn aya_obj::btf::TypeTag::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::btf::TypeTag where T: core::clone::Clone +pub type aya_obj::btf::TypeTag::Owned = T +pub fn aya_obj::btf::TypeTag::clone_into(&self, target: &mut T) +pub fn aya_obj::btf::TypeTag::to_owned(&self) -> T +impl core::any::Any for aya_obj::btf::TypeTag where T: 'static + core::marker::Sized +pub fn aya_obj::btf::TypeTag::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::btf::TypeTag where T: core::marker::Sized +pub fn aya_obj::btf::TypeTag::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::btf::TypeTag where T: core::marker::Sized +pub fn aya_obj::btf::TypeTag::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::btf::TypeTag +pub fn aya_obj::btf::TypeTag::from(t: T) -> T +#[repr(C)] pub struct aya_obj::btf::Typedef +impl core::clone::Clone for aya_obj::btf::Typedef +pub fn aya_obj::btf::Typedef::clone(&self) -> aya_obj::btf::Typedef +impl core::fmt::Debug for aya_obj::btf::Typedef +pub fn aya_obj::btf::Typedef::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::btf::Typedef +impl core::marker::Sync for aya_obj::btf::Typedef +impl core::marker::Unpin for aya_obj::btf::Typedef +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::Typedef +impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::Typedef +impl core::convert::Into for aya_obj::btf::Typedef where U: core::convert::From +pub fn aya_obj::btf::Typedef::into(self) -> U +impl core::convert::TryFrom for aya_obj::btf::Typedef where U: core::convert::Into +pub type aya_obj::btf::Typedef::Error = core::convert::Infallible +pub fn aya_obj::btf::Typedef::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::btf::Typedef where U: core::convert::TryFrom +pub type aya_obj::btf::Typedef::Error = >::Error +pub fn aya_obj::btf::Typedef::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::btf::Typedef where T: core::clone::Clone +pub type aya_obj::btf::Typedef::Owned = T +pub fn aya_obj::btf::Typedef::clone_into(&self, target: &mut T) +pub fn aya_obj::btf::Typedef::to_owned(&self) -> T +impl core::any::Any for aya_obj::btf::Typedef where T: 'static + core::marker::Sized +pub fn aya_obj::btf::Typedef::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::btf::Typedef where T: core::marker::Sized +pub fn aya_obj::btf::Typedef::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::btf::Typedef where T: core::marker::Sized +pub fn aya_obj::btf::Typedef::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::btf::Typedef +pub fn aya_obj::btf::Typedef::from(t: T) -> T +#[repr(C)] pub struct aya_obj::btf::Union +impl core::clone::Clone for aya_obj::btf::Union +pub fn aya_obj::btf::Union::clone(&self) -> aya_obj::btf::Union +impl core::fmt::Debug for aya_obj::btf::Union +pub fn aya_obj::btf::Union::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::btf::Union +impl core::marker::Sync for aya_obj::btf::Union +impl core::marker::Unpin for aya_obj::btf::Union +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::Union +impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::Union +impl core::convert::Into for aya_obj::btf::Union where U: core::convert::From +pub fn aya_obj::btf::Union::into(self) -> U +impl core::convert::TryFrom for aya_obj::btf::Union where U: core::convert::Into +pub type aya_obj::btf::Union::Error = core::convert::Infallible +pub fn aya_obj::btf::Union::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::btf::Union where U: core::convert::TryFrom +pub type aya_obj::btf::Union::Error = >::Error +pub fn aya_obj::btf::Union::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::btf::Union where T: core::clone::Clone +pub type aya_obj::btf::Union::Owned = T +pub fn aya_obj::btf::Union::clone_into(&self, target: &mut T) +pub fn aya_obj::btf::Union::to_owned(&self) -> T +impl core::any::Any for aya_obj::btf::Union where T: 'static + core::marker::Sized +pub fn aya_obj::btf::Union::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::btf::Union where T: core::marker::Sized +pub fn aya_obj::btf::Union::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::btf::Union where T: core::marker::Sized +pub fn aya_obj::btf::Union::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::btf::Union +pub fn aya_obj::btf::Union::from(t: T) -> T +#[repr(C)] pub struct aya_obj::btf::Var +impl aya_obj::btf::Var +pub fn aya_obj::btf::Var::new(name_offset: u32, btf_type: u32, linkage: aya_obj::btf::VarLinkage) -> Self +impl core::clone::Clone for aya_obj::btf::Var +pub fn aya_obj::btf::Var::clone(&self) -> aya_obj::btf::Var +impl core::fmt::Debug for aya_obj::btf::Var +pub fn aya_obj::btf::Var::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::btf::Var +impl core::marker::Sync for aya_obj::btf::Var +impl core::marker::Unpin for aya_obj::btf::Var +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::Var +impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::Var +impl core::convert::Into for aya_obj::btf::Var where U: core::convert::From +pub fn aya_obj::btf::Var::into(self) -> U +impl core::convert::TryFrom for aya_obj::btf::Var where U: core::convert::Into +pub type aya_obj::btf::Var::Error = core::convert::Infallible +pub fn aya_obj::btf::Var::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::btf::Var where U: core::convert::TryFrom +pub type aya_obj::btf::Var::Error = >::Error +pub fn aya_obj::btf::Var::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::btf::Var where T: core::clone::Clone +pub type aya_obj::btf::Var::Owned = T +pub fn aya_obj::btf::Var::clone_into(&self, target: &mut T) +pub fn aya_obj::btf::Var::to_owned(&self) -> T +impl core::any::Any for aya_obj::btf::Var where T: 'static + core::marker::Sized +pub fn aya_obj::btf::Var::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::btf::Var where T: core::marker::Sized +pub fn aya_obj::btf::Var::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::btf::Var where T: core::marker::Sized +pub fn aya_obj::btf::Var::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::btf::Var +pub fn aya_obj::btf::Var::from(t: T) -> T +#[repr(C)] pub struct aya_obj::btf::Volatile +impl core::clone::Clone for aya_obj::btf::Volatile +pub fn aya_obj::btf::Volatile::clone(&self) -> aya_obj::btf::Volatile +impl core::fmt::Debug for aya_obj::btf::Volatile +pub fn aya_obj::btf::Volatile::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::btf::Volatile +impl core::marker::Sync for aya_obj::btf::Volatile +impl core::marker::Unpin for aya_obj::btf::Volatile +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::Volatile +impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::Volatile +impl core::convert::Into for aya_obj::btf::Volatile where U: core::convert::From +pub fn aya_obj::btf::Volatile::into(self) -> U +impl core::convert::TryFrom for aya_obj::btf::Volatile where U: core::convert::Into +pub type aya_obj::btf::Volatile::Error = core::convert::Infallible +pub fn aya_obj::btf::Volatile::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::btf::Volatile where U: core::convert::TryFrom +pub type aya_obj::btf::Volatile::Error = >::Error +pub fn aya_obj::btf::Volatile::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::btf::Volatile where T: core::clone::Clone +pub type aya_obj::btf::Volatile::Owned = T +pub fn aya_obj::btf::Volatile::clone_into(&self, target: &mut T) +pub fn aya_obj::btf::Volatile::to_owned(&self) -> T +impl core::any::Any for aya_obj::btf::Volatile where T: 'static + core::marker::Sized +pub fn aya_obj::btf::Volatile::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::btf::Volatile where T: core::marker::Sized +pub fn aya_obj::btf::Volatile::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::btf::Volatile where T: core::marker::Sized +pub fn aya_obj::btf::Volatile::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::btf::Volatile +pub fn aya_obj::btf::Volatile::from(t: T) -> T +pub mod aya_obj::generated +pub mod aya_obj::generated::bpf_core_relo_kind +pub const aya_obj::generated::bpf_core_relo_kind::BPF_CORE_ENUMVAL_EXISTS: aya_obj::generated::bpf_core_relo_kind::Type = 10u32 +pub const aya_obj::generated::bpf_core_relo_kind::BPF_CORE_ENUMVAL_VALUE: aya_obj::generated::bpf_core_relo_kind::Type = 11u32 +pub const aya_obj::generated::bpf_core_relo_kind::BPF_CORE_FIELD_BYTE_OFFSET: aya_obj::generated::bpf_core_relo_kind::Type = 0u32 +pub const aya_obj::generated::bpf_core_relo_kind::BPF_CORE_FIELD_BYTE_SIZE: aya_obj::generated::bpf_core_relo_kind::Type = 1u32 +pub const aya_obj::generated::bpf_core_relo_kind::BPF_CORE_FIELD_EXISTS: aya_obj::generated::bpf_core_relo_kind::Type = 2u32 +pub const aya_obj::generated::bpf_core_relo_kind::BPF_CORE_FIELD_LSHIFT_U64: aya_obj::generated::bpf_core_relo_kind::Type = 4u32 +pub const aya_obj::generated::bpf_core_relo_kind::BPF_CORE_FIELD_RSHIFT_U64: aya_obj::generated::bpf_core_relo_kind::Type = 5u32 +pub const aya_obj::generated::bpf_core_relo_kind::BPF_CORE_FIELD_SIGNED: aya_obj::generated::bpf_core_relo_kind::Type = 3u32 +pub const aya_obj::generated::bpf_core_relo_kind::BPF_CORE_TYPE_EXISTS: aya_obj::generated::bpf_core_relo_kind::Type = 8u32 +pub const aya_obj::generated::bpf_core_relo_kind::BPF_CORE_TYPE_ID_LOCAL: aya_obj::generated::bpf_core_relo_kind::Type = 6u32 +pub const aya_obj::generated::bpf_core_relo_kind::BPF_CORE_TYPE_ID_TARGET: aya_obj::generated::bpf_core_relo_kind::Type = 7u32 +pub const aya_obj::generated::bpf_core_relo_kind::BPF_CORE_TYPE_MATCHES: aya_obj::generated::bpf_core_relo_kind::Type = 12u32 +pub const aya_obj::generated::bpf_core_relo_kind::BPF_CORE_TYPE_SIZE: aya_obj::generated::bpf_core_relo_kind::Type = 9u32 +pub type aya_obj::generated::bpf_core_relo_kind::Type = core::ffi::c_uint +#[repr(u32)] pub enum aya_obj::generated::bpf_attach_type +pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_DEVICE = 6 +pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_GETSOCKOPT = 21 +pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_INET4_BIND = 8 +pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_INET4_CONNECT = 10 +pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_INET4_GETPEERNAME = 29 +pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_INET4_GETSOCKNAME = 31 +pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_INET4_POST_BIND = 12 +pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_INET6_BIND = 9 +pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_INET6_CONNECT = 11 +pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_INET6_GETPEERNAME = 30 +pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_INET6_GETSOCKNAME = 32 +pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_INET6_POST_BIND = 13 +pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_INET_EGRESS = 1 +pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_INET_INGRESS = 0 +pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_INET_SOCK_CREATE = 2 +pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_INET_SOCK_RELEASE = 34 +pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_SETSOCKOPT = 22 +pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_SOCK_OPS = 3 +pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_SYSCTL = 18 +pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_UDP4_RECVMSG = 19 +pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_UDP4_SENDMSG = 14 +pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_UDP6_RECVMSG = 20 +pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_UDP6_SENDMSG = 15 +pub aya_obj::generated::bpf_attach_type::BPF_FLOW_DISSECTOR = 17 +pub aya_obj::generated::bpf_attach_type::BPF_LIRC_MODE2 = 16 +pub aya_obj::generated::bpf_attach_type::BPF_LSM_CGROUP = 43 +pub aya_obj::generated::bpf_attach_type::BPF_LSM_MAC = 27 +pub aya_obj::generated::bpf_attach_type::BPF_MODIFY_RETURN = 26 +pub aya_obj::generated::bpf_attach_type::BPF_PERF_EVENT = 41 +pub aya_obj::generated::bpf_attach_type::BPF_SK_LOOKUP = 36 +pub aya_obj::generated::bpf_attach_type::BPF_SK_MSG_VERDICT = 7 +pub aya_obj::generated::bpf_attach_type::BPF_SK_REUSEPORT_SELECT = 39 +pub aya_obj::generated::bpf_attach_type::BPF_SK_REUSEPORT_SELECT_OR_MIGRATE = 40 +pub aya_obj::generated::bpf_attach_type::BPF_SK_SKB_STREAM_PARSER = 4 +pub aya_obj::generated::bpf_attach_type::BPF_SK_SKB_STREAM_VERDICT = 5 +pub aya_obj::generated::bpf_attach_type::BPF_SK_SKB_VERDICT = 38 +pub aya_obj::generated::bpf_attach_type::BPF_STRUCT_OPS = 44 +pub aya_obj::generated::bpf_attach_type::BPF_TRACE_FENTRY = 24 +pub aya_obj::generated::bpf_attach_type::BPF_TRACE_FEXIT = 25 +pub aya_obj::generated::bpf_attach_type::BPF_TRACE_ITER = 28 +pub aya_obj::generated::bpf_attach_type::BPF_TRACE_KPROBE_MULTI = 42 +pub aya_obj::generated::bpf_attach_type::BPF_TRACE_RAW_TP = 23 +pub aya_obj::generated::bpf_attach_type::BPF_XDP = 37 +pub aya_obj::generated::bpf_attach_type::BPF_XDP_CPUMAP = 35 +pub aya_obj::generated::bpf_attach_type::BPF_XDP_DEVMAP = 33 +pub aya_obj::generated::bpf_attach_type::__MAX_BPF_ATTACH_TYPE = 45 +impl core::convert::From for aya_obj::generated::bpf_attach_type +pub fn aya_obj::generated::bpf_attach_type::from(s: aya_obj::programs::cgroup_sock::CgroupSockAttachType) -> aya_obj::generated::bpf_attach_type +impl core::convert::From for aya_obj::generated::bpf_attach_type +pub fn aya_obj::generated::bpf_attach_type::from(s: aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType) -> aya_obj::generated::bpf_attach_type +impl core::convert::From for aya_obj::generated::bpf_attach_type +pub fn aya_obj::generated::bpf_attach_type::from(s: aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType) -> aya_obj::generated::bpf_attach_type +impl core::clone::Clone for aya_obj::generated::bpf_attach_type +pub fn aya_obj::generated::bpf_attach_type::clone(&self) -> aya_obj::generated::bpf_attach_type +impl core::cmp::Eq for aya_obj::generated::bpf_attach_type +impl core::cmp::PartialEq for aya_obj::generated::bpf_attach_type +pub fn aya_obj::generated::bpf_attach_type::eq(&self, other: &aya_obj::generated::bpf_attach_type) -> bool +impl core::fmt::Debug for aya_obj::generated::bpf_attach_type +pub fn aya_obj::generated::bpf_attach_type::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::hash::Hash for aya_obj::generated::bpf_attach_type +pub fn aya_obj::generated::bpf_attach_type::hash<__H: core::hash::Hasher>(&self, state: &mut __H) +impl core::marker::Copy for aya_obj::generated::bpf_attach_type +impl core::marker::StructuralEq for aya_obj::generated::bpf_attach_type +impl core::marker::StructuralPartialEq for aya_obj::generated::bpf_attach_type +impl core::marker::Send for aya_obj::generated::bpf_attach_type +impl core::marker::Sync for aya_obj::generated::bpf_attach_type +impl core::marker::Unpin for aya_obj::generated::bpf_attach_type +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attach_type +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attach_type +impl core::convert::Into for aya_obj::generated::bpf_attach_type where U: core::convert::From +pub fn aya_obj::generated::bpf_attach_type::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_attach_type where U: core::convert::Into +pub type aya_obj::generated::bpf_attach_type::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_attach_type::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_attach_type where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_attach_type::Error = >::Error +pub fn aya_obj::generated::bpf_attach_type::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_attach_type where T: core::clone::Clone +pub type aya_obj::generated::bpf_attach_type::Owned = T +pub fn aya_obj::generated::bpf_attach_type::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_attach_type::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_attach_type where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_attach_type::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_attach_type where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attach_type::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_attach_type where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attach_type::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_attach_type +pub fn aya_obj::generated::bpf_attach_type::from(t: T) -> T +#[repr(u32)] pub enum aya_obj::generated::bpf_cmd +pub aya_obj::generated::bpf_cmd::BPF_BTF_GET_FD_BY_ID = 19 +pub aya_obj::generated::bpf_cmd::BPF_BTF_GET_NEXT_ID = 23 +pub aya_obj::generated::bpf_cmd::BPF_BTF_LOAD = 18 +pub aya_obj::generated::bpf_cmd::BPF_ENABLE_STATS = 32 +pub aya_obj::generated::bpf_cmd::BPF_ITER_CREATE = 33 +pub aya_obj::generated::bpf_cmd::BPF_LINK_CREATE = 28 +pub aya_obj::generated::bpf_cmd::BPF_LINK_DETACH = 34 +pub aya_obj::generated::bpf_cmd::BPF_LINK_GET_FD_BY_ID = 30 +pub aya_obj::generated::bpf_cmd::BPF_LINK_GET_NEXT_ID = 31 +pub aya_obj::generated::bpf_cmd::BPF_LINK_UPDATE = 29 +pub aya_obj::generated::bpf_cmd::BPF_MAP_CREATE = 0 +pub aya_obj::generated::bpf_cmd::BPF_MAP_DELETE_BATCH = 27 +pub aya_obj::generated::bpf_cmd::BPF_MAP_DELETE_ELEM = 3 +pub aya_obj::generated::bpf_cmd::BPF_MAP_FREEZE = 22 +pub aya_obj::generated::bpf_cmd::BPF_MAP_GET_FD_BY_ID = 14 +pub aya_obj::generated::bpf_cmd::BPF_MAP_GET_NEXT_ID = 12 +pub aya_obj::generated::bpf_cmd::BPF_MAP_GET_NEXT_KEY = 4 +pub aya_obj::generated::bpf_cmd::BPF_MAP_LOOKUP_AND_DELETE_BATCH = 25 +pub aya_obj::generated::bpf_cmd::BPF_MAP_LOOKUP_AND_DELETE_ELEM = 21 +pub aya_obj::generated::bpf_cmd::BPF_MAP_LOOKUP_BATCH = 24 +pub aya_obj::generated::bpf_cmd::BPF_MAP_LOOKUP_ELEM = 1 +pub aya_obj::generated::bpf_cmd::BPF_MAP_UPDATE_BATCH = 26 +pub aya_obj::generated::bpf_cmd::BPF_MAP_UPDATE_ELEM = 2 +pub aya_obj::generated::bpf_cmd::BPF_OBJ_GET = 7 +pub aya_obj::generated::bpf_cmd::BPF_OBJ_GET_INFO_BY_FD = 15 +pub aya_obj::generated::bpf_cmd::BPF_OBJ_PIN = 6 +pub aya_obj::generated::bpf_cmd::BPF_PROG_ATTACH = 8 +pub aya_obj::generated::bpf_cmd::BPF_PROG_BIND_MAP = 35 +pub aya_obj::generated::bpf_cmd::BPF_PROG_DETACH = 9 +pub aya_obj::generated::bpf_cmd::BPF_PROG_GET_FD_BY_ID = 13 +pub aya_obj::generated::bpf_cmd::BPF_PROG_GET_NEXT_ID = 11 +pub aya_obj::generated::bpf_cmd::BPF_PROG_LOAD = 5 +pub aya_obj::generated::bpf_cmd::BPF_PROG_QUERY = 16 +pub aya_obj::generated::bpf_cmd::BPF_PROG_TEST_RUN = 10 +pub aya_obj::generated::bpf_cmd::BPF_RAW_TRACEPOINT_OPEN = 17 +pub aya_obj::generated::bpf_cmd::BPF_TASK_FD_QUERY = 20 +impl aya_obj::generated::bpf_cmd +pub const aya_obj::generated::bpf_cmd::BPF_PROG_RUN: aya_obj::generated::bpf_cmd +impl core::clone::Clone for aya_obj::generated::bpf_cmd +pub fn aya_obj::generated::bpf_cmd::clone(&self) -> aya_obj::generated::bpf_cmd +impl core::cmp::Eq for aya_obj::generated::bpf_cmd +impl core::cmp::PartialEq for aya_obj::generated::bpf_cmd +pub fn aya_obj::generated::bpf_cmd::eq(&self, other: &aya_obj::generated::bpf_cmd) -> bool +impl core::fmt::Debug for aya_obj::generated::bpf_cmd +pub fn aya_obj::generated::bpf_cmd::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::hash::Hash for aya_obj::generated::bpf_cmd +pub fn aya_obj::generated::bpf_cmd::hash<__H: core::hash::Hasher>(&self, state: &mut __H) +impl core::marker::Copy for aya_obj::generated::bpf_cmd +impl core::marker::StructuralEq for aya_obj::generated::bpf_cmd +impl core::marker::StructuralPartialEq for aya_obj::generated::bpf_cmd +impl core::marker::Send for aya_obj::generated::bpf_cmd +impl core::marker::Sync for aya_obj::generated::bpf_cmd +impl core::marker::Unpin for aya_obj::generated::bpf_cmd +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_cmd +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_cmd +impl core::convert::Into for aya_obj::generated::bpf_cmd where U: core::convert::From +pub fn aya_obj::generated::bpf_cmd::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_cmd where U: core::convert::Into +pub type aya_obj::generated::bpf_cmd::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_cmd::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_cmd where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_cmd::Error = >::Error +pub fn aya_obj::generated::bpf_cmd::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_cmd where T: core::clone::Clone +pub type aya_obj::generated::bpf_cmd::Owned = T +pub fn aya_obj::generated::bpf_cmd::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_cmd::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_cmd where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_cmd::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_cmd where T: core::marker::Sized +pub fn aya_obj::generated::bpf_cmd::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_cmd where T: core::marker::Sized +pub fn aya_obj::generated::bpf_cmd::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_cmd +pub fn aya_obj::generated::bpf_cmd::from(t: T) -> T +#[repr(u32)] pub enum aya_obj::generated::bpf_link_type +pub aya_obj::generated::bpf_link_type::BPF_LINK_TYPE_CGROUP = 3 +pub aya_obj::generated::bpf_link_type::BPF_LINK_TYPE_ITER = 4 +pub aya_obj::generated::bpf_link_type::BPF_LINK_TYPE_KPROBE_MULTI = 8 +pub aya_obj::generated::bpf_link_type::BPF_LINK_TYPE_NETFILTER = 10 +pub aya_obj::generated::bpf_link_type::BPF_LINK_TYPE_NETNS = 5 +pub aya_obj::generated::bpf_link_type::BPF_LINK_TYPE_PERF_EVENT = 7 +pub aya_obj::generated::bpf_link_type::BPF_LINK_TYPE_RAW_TRACEPOINT = 1 +pub aya_obj::generated::bpf_link_type::BPF_LINK_TYPE_STRUCT_OPS = 9 +pub aya_obj::generated::bpf_link_type::BPF_LINK_TYPE_TRACING = 2 +pub aya_obj::generated::bpf_link_type::BPF_LINK_TYPE_UNSPEC = 0 +pub aya_obj::generated::bpf_link_type::BPF_LINK_TYPE_XDP = 6 +pub aya_obj::generated::bpf_link_type::MAX_BPF_LINK_TYPE = 11 +impl core::clone::Clone for aya_obj::generated::bpf_link_type +pub fn aya_obj::generated::bpf_link_type::clone(&self) -> aya_obj::generated::bpf_link_type +impl core::cmp::Eq for aya_obj::generated::bpf_link_type +impl core::cmp::PartialEq for aya_obj::generated::bpf_link_type +pub fn aya_obj::generated::bpf_link_type::eq(&self, other: &aya_obj::generated::bpf_link_type) -> bool +impl core::fmt::Debug for aya_obj::generated::bpf_link_type +pub fn aya_obj::generated::bpf_link_type::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::hash::Hash for aya_obj::generated::bpf_link_type +pub fn aya_obj::generated::bpf_link_type::hash<__H: core::hash::Hasher>(&self, state: &mut __H) +impl core::marker::Copy for aya_obj::generated::bpf_link_type +impl core::marker::StructuralEq for aya_obj::generated::bpf_link_type +impl core::marker::StructuralPartialEq for aya_obj::generated::bpf_link_type +impl core::marker::Send for aya_obj::generated::bpf_link_type +impl core::marker::Sync for aya_obj::generated::bpf_link_type +impl core::marker::Unpin for aya_obj::generated::bpf_link_type +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_link_type +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_link_type +impl core::convert::Into for aya_obj::generated::bpf_link_type where U: core::convert::From +pub fn aya_obj::generated::bpf_link_type::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_link_type where U: core::convert::Into +pub type aya_obj::generated::bpf_link_type::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_link_type::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_link_type where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_link_type::Error = >::Error +pub fn aya_obj::generated::bpf_link_type::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_link_type where T: core::clone::Clone +pub type aya_obj::generated::bpf_link_type::Owned = T +pub fn aya_obj::generated::bpf_link_type::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_link_type::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_link_type where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_link_type::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_link_type where T: core::marker::Sized +pub fn aya_obj::generated::bpf_link_type::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_link_type where T: core::marker::Sized +pub fn aya_obj::generated::bpf_link_type::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_link_type +pub fn aya_obj::generated::bpf_link_type::from(t: T) -> T +#[repr(u32)] pub enum aya_obj::generated::bpf_map_type +pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_ARRAY = 2 +pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_ARRAY_OF_MAPS = 12 +pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_BLOOM_FILTER = 30 +pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_CGROUP_ARRAY = 8 +pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_CGROUP_STORAGE_DEPRECATED = 19 +pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_CGRP_STORAGE = 32 +pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_CPUMAP = 16 +pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_DEVMAP = 14 +pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_DEVMAP_HASH = 25 +pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_HASH = 1 +pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_HASH_OF_MAPS = 13 +pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_INODE_STORAGE = 28 +pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_LPM_TRIE = 11 +pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_LRU_HASH = 9 +pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_LRU_PERCPU_HASH = 10 +pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_PERCPU_ARRAY = 6 +pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE = 21 +pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_PERCPU_HASH = 5 +pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_PERF_EVENT_ARRAY = 4 +pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_PROG_ARRAY = 3 +pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_QUEUE = 22 +pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_REUSEPORT_SOCKARRAY = 20 +pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_RINGBUF = 27 +pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_SK_STORAGE = 24 +pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_SOCKHASH = 18 +pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_SOCKMAP = 15 +pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_STACK = 23 +pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_STACK_TRACE = 7 +pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_STRUCT_OPS = 26 +pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_TASK_STORAGE = 29 +pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_UNSPEC = 0 +pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_USER_RINGBUF = 31 +pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_XSKMAP = 17 +impl aya_obj::generated::bpf_map_type +pub const aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_CGROUP_STORAGE: aya_obj::generated::bpf_map_type +impl core::convert::TryFrom for aya_obj::generated::bpf_map_type +pub type aya_obj::generated::bpf_map_type::Error = aya_obj::maps::InvalidMapTypeError +pub fn aya_obj::generated::bpf_map_type::try_from(map_type: u32) -> core::result::Result +impl core::clone::Clone for aya_obj::generated::bpf_map_type +pub fn aya_obj::generated::bpf_map_type::clone(&self) -> aya_obj::generated::bpf_map_type +impl core::cmp::Eq for aya_obj::generated::bpf_map_type +impl core::cmp::PartialEq for aya_obj::generated::bpf_map_type +pub fn aya_obj::generated::bpf_map_type::eq(&self, other: &aya_obj::generated::bpf_map_type) -> bool +impl core::fmt::Debug for aya_obj::generated::bpf_map_type +pub fn aya_obj::generated::bpf_map_type::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::hash::Hash for aya_obj::generated::bpf_map_type +pub fn aya_obj::generated::bpf_map_type::hash<__H: core::hash::Hasher>(&self, state: &mut __H) +impl core::marker::Copy for aya_obj::generated::bpf_map_type +impl core::marker::StructuralEq for aya_obj::generated::bpf_map_type +impl core::marker::StructuralPartialEq for aya_obj::generated::bpf_map_type +impl core::marker::Send for aya_obj::generated::bpf_map_type +impl core::marker::Sync for aya_obj::generated::bpf_map_type +impl core::marker::Unpin for aya_obj::generated::bpf_map_type +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_map_type +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_map_type +impl core::convert::Into for aya_obj::generated::bpf_map_type where U: core::convert::From +pub fn aya_obj::generated::bpf_map_type::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_map_type where U: core::convert::Into +pub type aya_obj::generated::bpf_map_type::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_map_type::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_map_type where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_map_type::Error = >::Error +pub fn aya_obj::generated::bpf_map_type::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_map_type where T: core::clone::Clone +pub type aya_obj::generated::bpf_map_type::Owned = T +pub fn aya_obj::generated::bpf_map_type::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_map_type::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_map_type where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_map_type::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_map_type where T: core::marker::Sized +pub fn aya_obj::generated::bpf_map_type::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_map_type where T: core::marker::Sized +pub fn aya_obj::generated::bpf_map_type::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_map_type +pub fn aya_obj::generated::bpf_map_type::from(t: T) -> T +#[repr(u32)] pub enum aya_obj::generated::bpf_prog_type +pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_CGROUP_DEVICE = 15 +pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_CGROUP_SKB = 8 +pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_CGROUP_SOCK = 9 +pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_CGROUP_SOCKOPT = 25 +pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_CGROUP_SOCK_ADDR = 18 +pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_CGROUP_SYSCTL = 23 +pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_EXT = 28 +pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_FLOW_DISSECTOR = 22 +pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_KPROBE = 2 +pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_LIRC_MODE2 = 20 +pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_LSM = 29 +pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_LWT_IN = 10 +pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_LWT_OUT = 11 +pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_LWT_SEG6LOCAL = 19 +pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_LWT_XMIT = 12 +pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_NETFILTER = 32 +pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_PERF_EVENT = 7 +pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_RAW_TRACEPOINT = 17 +pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_RAW_TRACEPOINT_WRITABLE = 24 +pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_SCHED_ACT = 4 +pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_SCHED_CLS = 3 +pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_SK_LOOKUP = 30 +pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_SK_MSG = 16 +pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_SK_REUSEPORT = 21 +pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_SK_SKB = 14 +pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_SOCKET_FILTER = 1 +pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_SOCK_OPS = 13 +pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_STRUCT_OPS = 27 +pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_SYSCALL = 31 +pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_TRACEPOINT = 5 +pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_TRACING = 26 +pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_UNSPEC = 0 +pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_XDP = 6 +impl core::clone::Clone for aya_obj::generated::bpf_prog_type +pub fn aya_obj::generated::bpf_prog_type::clone(&self) -> aya_obj::generated::bpf_prog_type +impl core::cmp::Eq for aya_obj::generated::bpf_prog_type +impl core::cmp::PartialEq for aya_obj::generated::bpf_prog_type +pub fn aya_obj::generated::bpf_prog_type::eq(&self, other: &aya_obj::generated::bpf_prog_type) -> bool +impl core::fmt::Debug for aya_obj::generated::bpf_prog_type +pub fn aya_obj::generated::bpf_prog_type::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::hash::Hash for aya_obj::generated::bpf_prog_type +pub fn aya_obj::generated::bpf_prog_type::hash<__H: core::hash::Hasher>(&self, state: &mut __H) +impl core::marker::Copy for aya_obj::generated::bpf_prog_type +impl core::marker::StructuralEq for aya_obj::generated::bpf_prog_type +impl core::marker::StructuralPartialEq for aya_obj::generated::bpf_prog_type +impl core::marker::Send for aya_obj::generated::bpf_prog_type +impl core::marker::Sync for aya_obj::generated::bpf_prog_type +impl core::marker::Unpin for aya_obj::generated::bpf_prog_type +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_prog_type +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_prog_type +impl core::convert::Into for aya_obj::generated::bpf_prog_type where U: core::convert::From +pub fn aya_obj::generated::bpf_prog_type::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_prog_type where U: core::convert::Into +pub type aya_obj::generated::bpf_prog_type::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_prog_type::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_prog_type where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_prog_type::Error = >::Error +pub fn aya_obj::generated::bpf_prog_type::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_prog_type where T: core::clone::Clone +pub type aya_obj::generated::bpf_prog_type::Owned = T +pub fn aya_obj::generated::bpf_prog_type::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_prog_type::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_prog_type where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_prog_type::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_prog_type where T: core::marker::Sized +pub fn aya_obj::generated::bpf_prog_type::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_prog_type where T: core::marker::Sized +pub fn aya_obj::generated::bpf_prog_type::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_prog_type +pub fn aya_obj::generated::bpf_prog_type::from(t: T) -> T +#[repr(u32)] pub enum aya_obj::generated::btf_func_linkage +pub aya_obj::generated::btf_func_linkage::BTF_FUNC_EXTERN = 2 +pub aya_obj::generated::btf_func_linkage::BTF_FUNC_GLOBAL = 1 +pub aya_obj::generated::btf_func_linkage::BTF_FUNC_STATIC = 0 +impl core::clone::Clone for aya_obj::generated::btf_func_linkage +pub fn aya_obj::generated::btf_func_linkage::clone(&self) -> aya_obj::generated::btf_func_linkage +impl core::cmp::Eq for aya_obj::generated::btf_func_linkage +impl core::cmp::PartialEq for aya_obj::generated::btf_func_linkage +pub fn aya_obj::generated::btf_func_linkage::eq(&self, other: &aya_obj::generated::btf_func_linkage) -> bool +impl core::fmt::Debug for aya_obj::generated::btf_func_linkage +pub fn aya_obj::generated::btf_func_linkage::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::hash::Hash for aya_obj::generated::btf_func_linkage +pub fn aya_obj::generated::btf_func_linkage::hash<__H: core::hash::Hasher>(&self, state: &mut __H) +impl core::marker::Copy for aya_obj::generated::btf_func_linkage +impl core::marker::StructuralEq for aya_obj::generated::btf_func_linkage +impl core::marker::StructuralPartialEq for aya_obj::generated::btf_func_linkage +impl core::marker::Send for aya_obj::generated::btf_func_linkage +impl core::marker::Sync for aya_obj::generated::btf_func_linkage +impl core::marker::Unpin for aya_obj::generated::btf_func_linkage +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::btf_func_linkage +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::btf_func_linkage +impl core::convert::Into for aya_obj::generated::btf_func_linkage where U: core::convert::From +pub fn aya_obj::generated::btf_func_linkage::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::btf_func_linkage where U: core::convert::Into +pub type aya_obj::generated::btf_func_linkage::Error = core::convert::Infallible +pub fn aya_obj::generated::btf_func_linkage::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::btf_func_linkage where U: core::convert::TryFrom +pub type aya_obj::generated::btf_func_linkage::Error = >::Error +pub fn aya_obj::generated::btf_func_linkage::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::btf_func_linkage where T: core::clone::Clone +pub type aya_obj::generated::btf_func_linkage::Owned = T +pub fn aya_obj::generated::btf_func_linkage::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::btf_func_linkage::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::btf_func_linkage where T: 'static + core::marker::Sized +pub fn aya_obj::generated::btf_func_linkage::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::btf_func_linkage where T: core::marker::Sized +pub fn aya_obj::generated::btf_func_linkage::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::btf_func_linkage where T: core::marker::Sized +pub fn aya_obj::generated::btf_func_linkage::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::btf_func_linkage +pub fn aya_obj::generated::btf_func_linkage::from(t: T) -> T +#[repr(u32)] pub enum aya_obj::generated::perf_event_sample_format +pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_ADDR = 8 +pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_AUX = 1048576 +pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_BRANCH_STACK = 2048 +pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_CALLCHAIN = 32 +pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_CGROUP = 2097152 +pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_CODE_PAGE_SIZE = 8388608 +pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_CPU = 128 +pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_DATA_PAGE_SIZE = 4194304 +pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_DATA_SRC = 32768 +pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_ID = 64 +pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_IDENTIFIER = 65536 +pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_IP = 1 +pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_MAX = 33554432 +pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_PERIOD = 256 +pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_PHYS_ADDR = 524288 +pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_RAW = 1024 +pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_READ = 16 +pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_REGS_INTR = 262144 +pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_REGS_USER = 4096 +pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_STACK_USER = 8192 +pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_STREAM_ID = 512 +pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_TID = 2 +pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_TIME = 4 +pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_TRANSACTION = 131072 +pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_WEIGHT = 16384 +pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_WEIGHT_STRUCT = 16777216 +impl core::clone::Clone for aya_obj::generated::perf_event_sample_format +pub fn aya_obj::generated::perf_event_sample_format::clone(&self) -> aya_obj::generated::perf_event_sample_format +impl core::cmp::Eq for aya_obj::generated::perf_event_sample_format +impl core::cmp::PartialEq for aya_obj::generated::perf_event_sample_format +pub fn aya_obj::generated::perf_event_sample_format::eq(&self, other: &aya_obj::generated::perf_event_sample_format) -> bool +impl core::fmt::Debug for aya_obj::generated::perf_event_sample_format +pub fn aya_obj::generated::perf_event_sample_format::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::hash::Hash for aya_obj::generated::perf_event_sample_format +pub fn aya_obj::generated::perf_event_sample_format::hash<__H: core::hash::Hasher>(&self, state: &mut __H) +impl core::marker::Copy for aya_obj::generated::perf_event_sample_format +impl core::marker::StructuralEq for aya_obj::generated::perf_event_sample_format +impl core::marker::StructuralPartialEq for aya_obj::generated::perf_event_sample_format +impl core::marker::Send for aya_obj::generated::perf_event_sample_format +impl core::marker::Sync for aya_obj::generated::perf_event_sample_format +impl core::marker::Unpin for aya_obj::generated::perf_event_sample_format +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::perf_event_sample_format +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::perf_event_sample_format +impl core::convert::Into for aya_obj::generated::perf_event_sample_format where U: core::convert::From +pub fn aya_obj::generated::perf_event_sample_format::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::perf_event_sample_format where U: core::convert::Into +pub type aya_obj::generated::perf_event_sample_format::Error = core::convert::Infallible +pub fn aya_obj::generated::perf_event_sample_format::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::perf_event_sample_format where U: core::convert::TryFrom +pub type aya_obj::generated::perf_event_sample_format::Error = >::Error +pub fn aya_obj::generated::perf_event_sample_format::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::perf_event_sample_format where T: core::clone::Clone +pub type aya_obj::generated::perf_event_sample_format::Owned = T +pub fn aya_obj::generated::perf_event_sample_format::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::perf_event_sample_format::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::perf_event_sample_format where T: 'static + core::marker::Sized +pub fn aya_obj::generated::perf_event_sample_format::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::perf_event_sample_format where T: core::marker::Sized +pub fn aya_obj::generated::perf_event_sample_format::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::perf_event_sample_format where T: core::marker::Sized +pub fn aya_obj::generated::perf_event_sample_format::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::perf_event_sample_format +pub fn aya_obj::generated::perf_event_sample_format::from(t: T) -> T +#[repr(u32)] pub enum aya_obj::generated::perf_event_type +pub aya_obj::generated::perf_event_type::PERF_RECORD_AUX = 11 +pub aya_obj::generated::perf_event_type::PERF_RECORD_AUX_OUTPUT_HW_ID = 21 +pub aya_obj::generated::perf_event_type::PERF_RECORD_BPF_EVENT = 18 +pub aya_obj::generated::perf_event_type::PERF_RECORD_CGROUP = 19 +pub aya_obj::generated::perf_event_type::PERF_RECORD_COMM = 3 +pub aya_obj::generated::perf_event_type::PERF_RECORD_EXIT = 4 +pub aya_obj::generated::perf_event_type::PERF_RECORD_FORK = 7 +pub aya_obj::generated::perf_event_type::PERF_RECORD_ITRACE_START = 12 +pub aya_obj::generated::perf_event_type::PERF_RECORD_KSYMBOL = 17 +pub aya_obj::generated::perf_event_type::PERF_RECORD_LOST = 2 +pub aya_obj::generated::perf_event_type::PERF_RECORD_LOST_SAMPLES = 13 +pub aya_obj::generated::perf_event_type::PERF_RECORD_MAX = 22 +pub aya_obj::generated::perf_event_type::PERF_RECORD_MMAP = 1 +pub aya_obj::generated::perf_event_type::PERF_RECORD_MMAP2 = 10 +pub aya_obj::generated::perf_event_type::PERF_RECORD_NAMESPACES = 16 +pub aya_obj::generated::perf_event_type::PERF_RECORD_READ = 8 +pub aya_obj::generated::perf_event_type::PERF_RECORD_SAMPLE = 9 +pub aya_obj::generated::perf_event_type::PERF_RECORD_SWITCH = 14 +pub aya_obj::generated::perf_event_type::PERF_RECORD_SWITCH_CPU_WIDE = 15 +pub aya_obj::generated::perf_event_type::PERF_RECORD_TEXT_POKE = 20 +pub aya_obj::generated::perf_event_type::PERF_RECORD_THROTTLE = 5 +pub aya_obj::generated::perf_event_type::PERF_RECORD_UNTHROTTLE = 6 +impl core::clone::Clone for aya_obj::generated::perf_event_type +pub fn aya_obj::generated::perf_event_type::clone(&self) -> aya_obj::generated::perf_event_type +impl core::cmp::Eq for aya_obj::generated::perf_event_type +impl core::cmp::PartialEq for aya_obj::generated::perf_event_type +pub fn aya_obj::generated::perf_event_type::eq(&self, other: &aya_obj::generated::perf_event_type) -> bool +impl core::fmt::Debug for aya_obj::generated::perf_event_type +pub fn aya_obj::generated::perf_event_type::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::hash::Hash for aya_obj::generated::perf_event_type +pub fn aya_obj::generated::perf_event_type::hash<__H: core::hash::Hasher>(&self, state: &mut __H) +impl core::marker::Copy for aya_obj::generated::perf_event_type +impl core::marker::StructuralEq for aya_obj::generated::perf_event_type +impl core::marker::StructuralPartialEq for aya_obj::generated::perf_event_type +impl core::marker::Send for aya_obj::generated::perf_event_type +impl core::marker::Sync for aya_obj::generated::perf_event_type +impl core::marker::Unpin for aya_obj::generated::perf_event_type +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::perf_event_type +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::perf_event_type +impl core::convert::Into for aya_obj::generated::perf_event_type where U: core::convert::From +pub fn aya_obj::generated::perf_event_type::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::perf_event_type where U: core::convert::Into +pub type aya_obj::generated::perf_event_type::Error = core::convert::Infallible +pub fn aya_obj::generated::perf_event_type::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::perf_event_type where U: core::convert::TryFrom +pub type aya_obj::generated::perf_event_type::Error = >::Error +pub fn aya_obj::generated::perf_event_type::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::perf_event_type where T: core::clone::Clone +pub type aya_obj::generated::perf_event_type::Owned = T +pub fn aya_obj::generated::perf_event_type::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::perf_event_type::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::perf_event_type where T: 'static + core::marker::Sized +pub fn aya_obj::generated::perf_event_type::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::perf_event_type where T: core::marker::Sized +pub fn aya_obj::generated::perf_event_type::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::perf_event_type where T: core::marker::Sized +pub fn aya_obj::generated::perf_event_type::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::perf_event_type +pub fn aya_obj::generated::perf_event_type::from(t: T) -> T +#[repr(u32)] pub enum aya_obj::generated::perf_hw_cache_id +pub aya_obj::generated::perf_hw_cache_id::PERF_COUNT_HW_CACHE_BPU = 5 +pub aya_obj::generated::perf_hw_cache_id::PERF_COUNT_HW_CACHE_DTLB = 3 +pub aya_obj::generated::perf_hw_cache_id::PERF_COUNT_HW_CACHE_ITLB = 4 +pub aya_obj::generated::perf_hw_cache_id::PERF_COUNT_HW_CACHE_L1D = 0 +pub aya_obj::generated::perf_hw_cache_id::PERF_COUNT_HW_CACHE_L1I = 1 +pub aya_obj::generated::perf_hw_cache_id::PERF_COUNT_HW_CACHE_LL = 2 +pub aya_obj::generated::perf_hw_cache_id::PERF_COUNT_HW_CACHE_MAX = 7 +pub aya_obj::generated::perf_hw_cache_id::PERF_COUNT_HW_CACHE_NODE = 6 +impl core::clone::Clone for aya_obj::generated::perf_hw_cache_id +pub fn aya_obj::generated::perf_hw_cache_id::clone(&self) -> aya_obj::generated::perf_hw_cache_id +impl core::cmp::Eq for aya_obj::generated::perf_hw_cache_id +impl core::cmp::PartialEq for aya_obj::generated::perf_hw_cache_id +pub fn aya_obj::generated::perf_hw_cache_id::eq(&self, other: &aya_obj::generated::perf_hw_cache_id) -> bool +impl core::fmt::Debug for aya_obj::generated::perf_hw_cache_id +pub fn aya_obj::generated::perf_hw_cache_id::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::hash::Hash for aya_obj::generated::perf_hw_cache_id +pub fn aya_obj::generated::perf_hw_cache_id::hash<__H: core::hash::Hasher>(&self, state: &mut __H) +impl core::marker::Copy for aya_obj::generated::perf_hw_cache_id +impl core::marker::StructuralEq for aya_obj::generated::perf_hw_cache_id +impl core::marker::StructuralPartialEq for aya_obj::generated::perf_hw_cache_id +impl core::marker::Send for aya_obj::generated::perf_hw_cache_id +impl core::marker::Sync for aya_obj::generated::perf_hw_cache_id +impl core::marker::Unpin for aya_obj::generated::perf_hw_cache_id +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::perf_hw_cache_id +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::perf_hw_cache_id +impl core::convert::Into for aya_obj::generated::perf_hw_cache_id where U: core::convert::From +pub fn aya_obj::generated::perf_hw_cache_id::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::perf_hw_cache_id where U: core::convert::Into +pub type aya_obj::generated::perf_hw_cache_id::Error = core::convert::Infallible +pub fn aya_obj::generated::perf_hw_cache_id::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::perf_hw_cache_id where U: core::convert::TryFrom +pub type aya_obj::generated::perf_hw_cache_id::Error = >::Error +pub fn aya_obj::generated::perf_hw_cache_id::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::perf_hw_cache_id where T: core::clone::Clone +pub type aya_obj::generated::perf_hw_cache_id::Owned = T +pub fn aya_obj::generated::perf_hw_cache_id::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::perf_hw_cache_id::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::perf_hw_cache_id where T: 'static + core::marker::Sized +pub fn aya_obj::generated::perf_hw_cache_id::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::perf_hw_cache_id where T: core::marker::Sized +pub fn aya_obj::generated::perf_hw_cache_id::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::perf_hw_cache_id where T: core::marker::Sized +pub fn aya_obj::generated::perf_hw_cache_id::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::perf_hw_cache_id +pub fn aya_obj::generated::perf_hw_cache_id::from(t: T) -> T +#[repr(u32)] pub enum aya_obj::generated::perf_hw_cache_op_id +pub aya_obj::generated::perf_hw_cache_op_id::PERF_COUNT_HW_CACHE_OP_MAX = 3 +pub aya_obj::generated::perf_hw_cache_op_id::PERF_COUNT_HW_CACHE_OP_PREFETCH = 2 +pub aya_obj::generated::perf_hw_cache_op_id::PERF_COUNT_HW_CACHE_OP_READ = 0 +pub aya_obj::generated::perf_hw_cache_op_id::PERF_COUNT_HW_CACHE_OP_WRITE = 1 +impl core::clone::Clone for aya_obj::generated::perf_hw_cache_op_id +pub fn aya_obj::generated::perf_hw_cache_op_id::clone(&self) -> aya_obj::generated::perf_hw_cache_op_id +impl core::cmp::Eq for aya_obj::generated::perf_hw_cache_op_id +impl core::cmp::PartialEq for aya_obj::generated::perf_hw_cache_op_id +pub fn aya_obj::generated::perf_hw_cache_op_id::eq(&self, other: &aya_obj::generated::perf_hw_cache_op_id) -> bool +impl core::fmt::Debug for aya_obj::generated::perf_hw_cache_op_id +pub fn aya_obj::generated::perf_hw_cache_op_id::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::hash::Hash for aya_obj::generated::perf_hw_cache_op_id +pub fn aya_obj::generated::perf_hw_cache_op_id::hash<__H: core::hash::Hasher>(&self, state: &mut __H) +impl core::marker::Copy for aya_obj::generated::perf_hw_cache_op_id +impl core::marker::StructuralEq for aya_obj::generated::perf_hw_cache_op_id +impl core::marker::StructuralPartialEq for aya_obj::generated::perf_hw_cache_op_id +impl core::marker::Send for aya_obj::generated::perf_hw_cache_op_id +impl core::marker::Sync for aya_obj::generated::perf_hw_cache_op_id +impl core::marker::Unpin for aya_obj::generated::perf_hw_cache_op_id +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::perf_hw_cache_op_id +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::perf_hw_cache_op_id +impl core::convert::Into for aya_obj::generated::perf_hw_cache_op_id where U: core::convert::From +pub fn aya_obj::generated::perf_hw_cache_op_id::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::perf_hw_cache_op_id where U: core::convert::Into +pub type aya_obj::generated::perf_hw_cache_op_id::Error = core::convert::Infallible +pub fn aya_obj::generated::perf_hw_cache_op_id::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::perf_hw_cache_op_id where U: core::convert::TryFrom +pub type aya_obj::generated::perf_hw_cache_op_id::Error = >::Error +pub fn aya_obj::generated::perf_hw_cache_op_id::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::perf_hw_cache_op_id where T: core::clone::Clone +pub type aya_obj::generated::perf_hw_cache_op_id::Owned = T +pub fn aya_obj::generated::perf_hw_cache_op_id::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::perf_hw_cache_op_id::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::perf_hw_cache_op_id where T: 'static + core::marker::Sized +pub fn aya_obj::generated::perf_hw_cache_op_id::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::perf_hw_cache_op_id where T: core::marker::Sized +pub fn aya_obj::generated::perf_hw_cache_op_id::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::perf_hw_cache_op_id where T: core::marker::Sized +pub fn aya_obj::generated::perf_hw_cache_op_id::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::perf_hw_cache_op_id +pub fn aya_obj::generated::perf_hw_cache_op_id::from(t: T) -> T +#[repr(u32)] pub enum aya_obj::generated::perf_hw_cache_op_result_id +pub aya_obj::generated::perf_hw_cache_op_result_id::PERF_COUNT_HW_CACHE_RESULT_ACCESS = 0 +pub aya_obj::generated::perf_hw_cache_op_result_id::PERF_COUNT_HW_CACHE_RESULT_MAX = 2 +pub aya_obj::generated::perf_hw_cache_op_result_id::PERF_COUNT_HW_CACHE_RESULT_MISS = 1 +impl core::clone::Clone for aya_obj::generated::perf_hw_cache_op_result_id +pub fn aya_obj::generated::perf_hw_cache_op_result_id::clone(&self) -> aya_obj::generated::perf_hw_cache_op_result_id +impl core::cmp::Eq for aya_obj::generated::perf_hw_cache_op_result_id +impl core::cmp::PartialEq for aya_obj::generated::perf_hw_cache_op_result_id +pub fn aya_obj::generated::perf_hw_cache_op_result_id::eq(&self, other: &aya_obj::generated::perf_hw_cache_op_result_id) -> bool +impl core::fmt::Debug for aya_obj::generated::perf_hw_cache_op_result_id +pub fn aya_obj::generated::perf_hw_cache_op_result_id::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::hash::Hash for aya_obj::generated::perf_hw_cache_op_result_id +pub fn aya_obj::generated::perf_hw_cache_op_result_id::hash<__H: core::hash::Hasher>(&self, state: &mut __H) +impl core::marker::Copy for aya_obj::generated::perf_hw_cache_op_result_id +impl core::marker::StructuralEq for aya_obj::generated::perf_hw_cache_op_result_id +impl core::marker::StructuralPartialEq for aya_obj::generated::perf_hw_cache_op_result_id +impl core::marker::Send for aya_obj::generated::perf_hw_cache_op_result_id +impl core::marker::Sync for aya_obj::generated::perf_hw_cache_op_result_id +impl core::marker::Unpin for aya_obj::generated::perf_hw_cache_op_result_id +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::perf_hw_cache_op_result_id +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::perf_hw_cache_op_result_id +impl core::convert::Into for aya_obj::generated::perf_hw_cache_op_result_id where U: core::convert::From +pub fn aya_obj::generated::perf_hw_cache_op_result_id::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::perf_hw_cache_op_result_id where U: core::convert::Into +pub type aya_obj::generated::perf_hw_cache_op_result_id::Error = core::convert::Infallible +pub fn aya_obj::generated::perf_hw_cache_op_result_id::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::perf_hw_cache_op_result_id where U: core::convert::TryFrom +pub type aya_obj::generated::perf_hw_cache_op_result_id::Error = >::Error +pub fn aya_obj::generated::perf_hw_cache_op_result_id::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::perf_hw_cache_op_result_id where T: core::clone::Clone +pub type aya_obj::generated::perf_hw_cache_op_result_id::Owned = T +pub fn aya_obj::generated::perf_hw_cache_op_result_id::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::perf_hw_cache_op_result_id::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::perf_hw_cache_op_result_id where T: 'static + core::marker::Sized +pub fn aya_obj::generated::perf_hw_cache_op_result_id::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::perf_hw_cache_op_result_id where T: core::marker::Sized +pub fn aya_obj::generated::perf_hw_cache_op_result_id::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::perf_hw_cache_op_result_id where T: core::marker::Sized +pub fn aya_obj::generated::perf_hw_cache_op_result_id::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::perf_hw_cache_op_result_id +pub fn aya_obj::generated::perf_hw_cache_op_result_id::from(t: T) -> T +#[repr(u32)] pub enum aya_obj::generated::perf_hw_id +pub aya_obj::generated::perf_hw_id::PERF_COUNT_HW_BRANCH_INSTRUCTIONS = 4 +pub aya_obj::generated::perf_hw_id::PERF_COUNT_HW_BRANCH_MISSES = 5 +pub aya_obj::generated::perf_hw_id::PERF_COUNT_HW_BUS_CYCLES = 6 +pub aya_obj::generated::perf_hw_id::PERF_COUNT_HW_CACHE_MISSES = 3 +pub aya_obj::generated::perf_hw_id::PERF_COUNT_HW_CACHE_REFERENCES = 2 +pub aya_obj::generated::perf_hw_id::PERF_COUNT_HW_CPU_CYCLES = 0 +pub aya_obj::generated::perf_hw_id::PERF_COUNT_HW_INSTRUCTIONS = 1 +pub aya_obj::generated::perf_hw_id::PERF_COUNT_HW_MAX = 10 +pub aya_obj::generated::perf_hw_id::PERF_COUNT_HW_REF_CPU_CYCLES = 9 +pub aya_obj::generated::perf_hw_id::PERF_COUNT_HW_STALLED_CYCLES_BACKEND = 8 +pub aya_obj::generated::perf_hw_id::PERF_COUNT_HW_STALLED_CYCLES_FRONTEND = 7 +impl core::clone::Clone for aya_obj::generated::perf_hw_id +pub fn aya_obj::generated::perf_hw_id::clone(&self) -> aya_obj::generated::perf_hw_id +impl core::cmp::Eq for aya_obj::generated::perf_hw_id +impl core::cmp::PartialEq for aya_obj::generated::perf_hw_id +pub fn aya_obj::generated::perf_hw_id::eq(&self, other: &aya_obj::generated::perf_hw_id) -> bool +impl core::fmt::Debug for aya_obj::generated::perf_hw_id +pub fn aya_obj::generated::perf_hw_id::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::hash::Hash for aya_obj::generated::perf_hw_id +pub fn aya_obj::generated::perf_hw_id::hash<__H: core::hash::Hasher>(&self, state: &mut __H) +impl core::marker::Copy for aya_obj::generated::perf_hw_id +impl core::marker::StructuralEq for aya_obj::generated::perf_hw_id +impl core::marker::StructuralPartialEq for aya_obj::generated::perf_hw_id +impl core::marker::Send for aya_obj::generated::perf_hw_id +impl core::marker::Sync for aya_obj::generated::perf_hw_id +impl core::marker::Unpin for aya_obj::generated::perf_hw_id +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::perf_hw_id +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::perf_hw_id +impl core::convert::Into for aya_obj::generated::perf_hw_id where U: core::convert::From +pub fn aya_obj::generated::perf_hw_id::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::perf_hw_id where U: core::convert::Into +pub type aya_obj::generated::perf_hw_id::Error = core::convert::Infallible +pub fn aya_obj::generated::perf_hw_id::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::perf_hw_id where U: core::convert::TryFrom +pub type aya_obj::generated::perf_hw_id::Error = >::Error +pub fn aya_obj::generated::perf_hw_id::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::perf_hw_id where T: core::clone::Clone +pub type aya_obj::generated::perf_hw_id::Owned = T +pub fn aya_obj::generated::perf_hw_id::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::perf_hw_id::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::perf_hw_id where T: 'static + core::marker::Sized +pub fn aya_obj::generated::perf_hw_id::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::perf_hw_id where T: core::marker::Sized +pub fn aya_obj::generated::perf_hw_id::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::perf_hw_id where T: core::marker::Sized +pub fn aya_obj::generated::perf_hw_id::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::perf_hw_id +pub fn aya_obj::generated::perf_hw_id::from(t: T) -> T +#[repr(u32)] pub enum aya_obj::generated::perf_sw_ids +pub aya_obj::generated::perf_sw_ids::PERF_COUNT_SW_ALIGNMENT_FAULTS = 7 +pub aya_obj::generated::perf_sw_ids::PERF_COUNT_SW_BPF_OUTPUT = 10 +pub aya_obj::generated::perf_sw_ids::PERF_COUNT_SW_CGROUP_SWITCHES = 11 +pub aya_obj::generated::perf_sw_ids::PERF_COUNT_SW_CONTEXT_SWITCHES = 3 +pub aya_obj::generated::perf_sw_ids::PERF_COUNT_SW_CPU_CLOCK = 0 +pub aya_obj::generated::perf_sw_ids::PERF_COUNT_SW_CPU_MIGRATIONS = 4 +pub aya_obj::generated::perf_sw_ids::PERF_COUNT_SW_DUMMY = 9 +pub aya_obj::generated::perf_sw_ids::PERF_COUNT_SW_EMULATION_FAULTS = 8 +pub aya_obj::generated::perf_sw_ids::PERF_COUNT_SW_MAX = 12 +pub aya_obj::generated::perf_sw_ids::PERF_COUNT_SW_PAGE_FAULTS = 2 +pub aya_obj::generated::perf_sw_ids::PERF_COUNT_SW_PAGE_FAULTS_MAJ = 6 +pub aya_obj::generated::perf_sw_ids::PERF_COUNT_SW_PAGE_FAULTS_MIN = 5 +pub aya_obj::generated::perf_sw_ids::PERF_COUNT_SW_TASK_CLOCK = 1 +impl core::clone::Clone for aya_obj::generated::perf_sw_ids +pub fn aya_obj::generated::perf_sw_ids::clone(&self) -> aya_obj::generated::perf_sw_ids +impl core::cmp::Eq for aya_obj::generated::perf_sw_ids +impl core::cmp::PartialEq for aya_obj::generated::perf_sw_ids +pub fn aya_obj::generated::perf_sw_ids::eq(&self, other: &aya_obj::generated::perf_sw_ids) -> bool +impl core::fmt::Debug for aya_obj::generated::perf_sw_ids +pub fn aya_obj::generated::perf_sw_ids::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::hash::Hash for aya_obj::generated::perf_sw_ids +pub fn aya_obj::generated::perf_sw_ids::hash<__H: core::hash::Hasher>(&self, state: &mut __H) +impl core::marker::Copy for aya_obj::generated::perf_sw_ids +impl core::marker::StructuralEq for aya_obj::generated::perf_sw_ids +impl core::marker::StructuralPartialEq for aya_obj::generated::perf_sw_ids +impl core::marker::Send for aya_obj::generated::perf_sw_ids +impl core::marker::Sync for aya_obj::generated::perf_sw_ids +impl core::marker::Unpin for aya_obj::generated::perf_sw_ids +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::perf_sw_ids +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::perf_sw_ids +impl core::convert::Into for aya_obj::generated::perf_sw_ids where U: core::convert::From +pub fn aya_obj::generated::perf_sw_ids::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::perf_sw_ids where U: core::convert::Into +pub type aya_obj::generated::perf_sw_ids::Error = core::convert::Infallible +pub fn aya_obj::generated::perf_sw_ids::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::perf_sw_ids where U: core::convert::TryFrom +pub type aya_obj::generated::perf_sw_ids::Error = >::Error +pub fn aya_obj::generated::perf_sw_ids::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::perf_sw_ids where T: core::clone::Clone +pub type aya_obj::generated::perf_sw_ids::Owned = T +pub fn aya_obj::generated::perf_sw_ids::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::perf_sw_ids::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::perf_sw_ids where T: 'static + core::marker::Sized +pub fn aya_obj::generated::perf_sw_ids::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::perf_sw_ids where T: core::marker::Sized +pub fn aya_obj::generated::perf_sw_ids::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::perf_sw_ids where T: core::marker::Sized +pub fn aya_obj::generated::perf_sw_ids::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::perf_sw_ids +pub fn aya_obj::generated::perf_sw_ids::from(t: T) -> T +#[repr(u32)] pub enum aya_obj::generated::perf_type_id +pub aya_obj::generated::perf_type_id::PERF_TYPE_BREAKPOINT = 5 +pub aya_obj::generated::perf_type_id::PERF_TYPE_HARDWARE = 0 +pub aya_obj::generated::perf_type_id::PERF_TYPE_HW_CACHE = 3 +pub aya_obj::generated::perf_type_id::PERF_TYPE_MAX = 6 +pub aya_obj::generated::perf_type_id::PERF_TYPE_RAW = 4 +pub aya_obj::generated::perf_type_id::PERF_TYPE_SOFTWARE = 1 +pub aya_obj::generated::perf_type_id::PERF_TYPE_TRACEPOINT = 2 +impl core::clone::Clone for aya_obj::generated::perf_type_id +pub fn aya_obj::generated::perf_type_id::clone(&self) -> aya_obj::generated::perf_type_id +impl core::cmp::Eq for aya_obj::generated::perf_type_id +impl core::cmp::PartialEq for aya_obj::generated::perf_type_id +pub fn aya_obj::generated::perf_type_id::eq(&self, other: &aya_obj::generated::perf_type_id) -> bool +impl core::fmt::Debug for aya_obj::generated::perf_type_id +pub fn aya_obj::generated::perf_type_id::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::hash::Hash for aya_obj::generated::perf_type_id +pub fn aya_obj::generated::perf_type_id::hash<__H: core::hash::Hasher>(&self, state: &mut __H) +impl core::marker::Copy for aya_obj::generated::perf_type_id +impl core::marker::StructuralEq for aya_obj::generated::perf_type_id +impl core::marker::StructuralPartialEq for aya_obj::generated::perf_type_id +impl core::marker::Send for aya_obj::generated::perf_type_id +impl core::marker::Sync for aya_obj::generated::perf_type_id +impl core::marker::Unpin for aya_obj::generated::perf_type_id +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::perf_type_id +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::perf_type_id +impl core::convert::Into for aya_obj::generated::perf_type_id where U: core::convert::From +pub fn aya_obj::generated::perf_type_id::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::perf_type_id where U: core::convert::Into +pub type aya_obj::generated::perf_type_id::Error = core::convert::Infallible +pub fn aya_obj::generated::perf_type_id::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::perf_type_id where U: core::convert::TryFrom +pub type aya_obj::generated::perf_type_id::Error = >::Error +pub fn aya_obj::generated::perf_type_id::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::perf_type_id where T: core::clone::Clone +pub type aya_obj::generated::perf_type_id::Owned = T +pub fn aya_obj::generated::perf_type_id::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::perf_type_id::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::perf_type_id where T: 'static + core::marker::Sized +pub fn aya_obj::generated::perf_type_id::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::perf_type_id where T: core::marker::Sized +pub fn aya_obj::generated::perf_type_id::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::perf_type_id where T: core::marker::Sized +pub fn aya_obj::generated::perf_type_id::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::perf_type_id +pub fn aya_obj::generated::perf_type_id::from(t: T) -> T +#[repr(C)] pub union aya_obj::generated::bpf_attr +pub aya_obj::generated::bpf_attr::__bindgen_anon_1: aya_obj::generated::bpf_attr__bindgen_ty_1 +pub aya_obj::generated::bpf_attr::__bindgen_anon_2: aya_obj::generated::bpf_attr__bindgen_ty_2 +pub aya_obj::generated::bpf_attr::__bindgen_anon_3: aya_obj::generated::bpf_attr__bindgen_ty_4 +pub aya_obj::generated::bpf_attr::__bindgen_anon_4: aya_obj::generated::bpf_attr__bindgen_ty_5 +pub aya_obj::generated::bpf_attr::__bindgen_anon_5: aya_obj::generated::bpf_attr__bindgen_ty_6 +pub aya_obj::generated::bpf_attr::__bindgen_anon_6: aya_obj::generated::bpf_attr__bindgen_ty_8 +pub aya_obj::generated::bpf_attr::__bindgen_anon_7: aya_obj::generated::bpf_attr__bindgen_ty_12 +pub aya_obj::generated::bpf_attr::batch: aya_obj::generated::bpf_attr__bindgen_ty_3 +pub aya_obj::generated::bpf_attr::enable_stats: aya_obj::generated::bpf_attr__bindgen_ty_17 +pub aya_obj::generated::bpf_attr::info: aya_obj::generated::bpf_attr__bindgen_ty_9 +pub aya_obj::generated::bpf_attr::iter_create: aya_obj::generated::bpf_attr__bindgen_ty_18 +pub aya_obj::generated::bpf_attr::link_create: aya_obj::generated::bpf_attr__bindgen_ty_14 +pub aya_obj::generated::bpf_attr::link_detach: aya_obj::generated::bpf_attr__bindgen_ty_16 +pub aya_obj::generated::bpf_attr::link_update: aya_obj::generated::bpf_attr__bindgen_ty_15 +pub aya_obj::generated::bpf_attr::prog_bind_map: aya_obj::generated::bpf_attr__bindgen_ty_19 +pub aya_obj::generated::bpf_attr::query: aya_obj::generated::bpf_attr__bindgen_ty_10 +pub aya_obj::generated::bpf_attr::raw_tracepoint: aya_obj::generated::bpf_attr__bindgen_ty_11 +pub aya_obj::generated::bpf_attr::task_fd_query: aya_obj::generated::bpf_attr__bindgen_ty_13 +pub aya_obj::generated::bpf_attr::test: aya_obj::generated::bpf_attr__bindgen_ty_7 +impl core::clone::Clone for aya_obj::generated::bpf_attr +pub fn aya_obj::generated::bpf_attr::clone(&self) -> aya_obj::generated::bpf_attr +impl core::marker::Copy for aya_obj::generated::bpf_attr +impl core::marker::Send for aya_obj::generated::bpf_attr +impl core::marker::Sync for aya_obj::generated::bpf_attr +impl core::marker::Unpin for aya_obj::generated::bpf_attr +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr +impl core::convert::Into for aya_obj::generated::bpf_attr where U: core::convert::From +pub fn aya_obj::generated::bpf_attr::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_attr where U: core::convert::Into +pub type aya_obj::generated::bpf_attr::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_attr::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_attr where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_attr::Error = >::Error +pub fn aya_obj::generated::bpf_attr::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_attr where T: core::clone::Clone +pub type aya_obj::generated::bpf_attr::Owned = T +pub fn aya_obj::generated::bpf_attr::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_attr::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_attr where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_attr::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_attr where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_attr where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_attr +pub fn aya_obj::generated::bpf_attr::from(t: T) -> T +#[repr(C)] pub union aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1 +pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1::map_fd: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1::prog_fd: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1 +impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1 +impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1 +impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1 +impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1 +impl core::convert::Into for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1 where U: core::convert::From +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1 where U: core::convert::Into +pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1::Error = >::Error +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1 where T: core::clone::Clone +pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1::Owned = T +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub union aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2 +pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2::target_fd: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2::target_ifindex: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2 +impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2 +impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2 +impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2 +impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2 +impl core::convert::Into for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2 where U: core::convert::From +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2 where U: core::convert::Into +pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2::Error = >::Error +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2 where T: core::clone::Clone +pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2::Owned = T +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2::from(t: T) -> T +#[repr(C)] pub union aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3 +pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3::__bindgen_anon_1: aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 +pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3::kprobe_multi: aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 +pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3::netfilter: aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 +pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3::perf_event: aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 +pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3::target_btf_id: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3::tracing: aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 +impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3 +impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3 +impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3 +impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3 +impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3 +impl core::convert::Into for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3 where U: core::convert::From +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3 where U: core::convert::Into +pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3::Error = >::Error +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3 where T: core::clone::Clone +pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3::Owned = T +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3::from(t: T) -> T +#[repr(C)] pub union aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1 +pub aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1::new_map_fd: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1::new_prog_fd: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1 +impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1 +impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1 +impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1 +impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1 +impl core::convert::Into for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1 where U: core::convert::From +pub fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1 where U: core::convert::Into +pub type aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1::Error = >::Error +pub fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1 where T: core::clone::Clone +pub type aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1::Owned = T +pub fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub union aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2 +pub aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2::old_map_fd: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2::old_prog_fd: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2 +impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2 +impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2 +impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2 +impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2 +impl core::convert::Into for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2 where U: core::convert::From +pub fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2 where U: core::convert::Into +pub type aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2::Error = >::Error +pub fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2 where T: core::clone::Clone +pub type aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2::Owned = T +pub fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2::from(t: T) -> T +#[repr(C)] pub union aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1 +pub aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1::next_key: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1::value: aya_obj::generated::__u64 +impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1 +impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1 +impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1 +impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1 +impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1 +impl core::convert::Into for aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1 where U: core::convert::From +pub fn aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1 where U: core::convert::Into +pub type aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1::Error = >::Error +pub fn aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1 where T: core::clone::Clone +pub type aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1::Owned = T +pub fn aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub union aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1 +pub aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1::attach_btf_obj_fd: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1::attach_prog_fd: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1 +impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1 +impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1 +impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1 +impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1 +impl core::convert::Into for aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1 where U: core::convert::From +pub fn aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1 where U: core::convert::Into +pub type aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1::Error = >::Error +pub fn aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1 where T: core::clone::Clone +pub type aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1::Owned = T +pub fn aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub union aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1 +pub aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1::btf_id: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1::link_id: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1::map_id: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1::prog_id: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1::start_id: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1 +impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1 +impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1 +impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1 +impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1 +impl core::convert::Into for aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1 where U: core::convert::From +pub fn aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1 where U: core::convert::Into +pub type aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1::Error = >::Error +pub fn aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1 where T: core::clone::Clone +pub type aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1::Owned = T +pub fn aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub union aya_obj::generated::bpf_cpumap_val__bindgen_ty_1 +pub aya_obj::generated::bpf_cpumap_val__bindgen_ty_1::fd: core::ffi::c_int +pub aya_obj::generated::bpf_cpumap_val__bindgen_ty_1::id: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::bpf_cpumap_val__bindgen_ty_1 +pub fn aya_obj::generated::bpf_cpumap_val__bindgen_ty_1::clone(&self) -> aya_obj::generated::bpf_cpumap_val__bindgen_ty_1 +impl core::marker::Copy for aya_obj::generated::bpf_cpumap_val__bindgen_ty_1 +impl core::marker::Send for aya_obj::generated::bpf_cpumap_val__bindgen_ty_1 +impl core::marker::Sync for aya_obj::generated::bpf_cpumap_val__bindgen_ty_1 +impl core::marker::Unpin for aya_obj::generated::bpf_cpumap_val__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_cpumap_val__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_cpumap_val__bindgen_ty_1 +impl core::convert::Into for aya_obj::generated::bpf_cpumap_val__bindgen_ty_1 where U: core::convert::From +pub fn aya_obj::generated::bpf_cpumap_val__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_cpumap_val__bindgen_ty_1 where U: core::convert::Into +pub type aya_obj::generated::bpf_cpumap_val__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_cpumap_val__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_cpumap_val__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_cpumap_val__bindgen_ty_1::Error = >::Error +pub fn aya_obj::generated::bpf_cpumap_val__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_cpumap_val__bindgen_ty_1 where T: core::clone::Clone +pub type aya_obj::generated::bpf_cpumap_val__bindgen_ty_1::Owned = T +pub fn aya_obj::generated::bpf_cpumap_val__bindgen_ty_1::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_cpumap_val__bindgen_ty_1::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_cpumap_val__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_cpumap_val__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_cpumap_val__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_cpumap_val__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_cpumap_val__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_cpumap_val__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_cpumap_val__bindgen_ty_1 +pub fn aya_obj::generated::bpf_cpumap_val__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub union aya_obj::generated::bpf_devmap_val__bindgen_ty_1 +pub aya_obj::generated::bpf_devmap_val__bindgen_ty_1::fd: core::ffi::c_int +pub aya_obj::generated::bpf_devmap_val__bindgen_ty_1::id: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::bpf_devmap_val__bindgen_ty_1 +pub fn aya_obj::generated::bpf_devmap_val__bindgen_ty_1::clone(&self) -> aya_obj::generated::bpf_devmap_val__bindgen_ty_1 +impl core::marker::Copy for aya_obj::generated::bpf_devmap_val__bindgen_ty_1 +impl core::marker::Send for aya_obj::generated::bpf_devmap_val__bindgen_ty_1 +impl core::marker::Sync for aya_obj::generated::bpf_devmap_val__bindgen_ty_1 +impl core::marker::Unpin for aya_obj::generated::bpf_devmap_val__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_devmap_val__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_devmap_val__bindgen_ty_1 +impl core::convert::Into for aya_obj::generated::bpf_devmap_val__bindgen_ty_1 where U: core::convert::From +pub fn aya_obj::generated::bpf_devmap_val__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_devmap_val__bindgen_ty_1 where U: core::convert::Into +pub type aya_obj::generated::bpf_devmap_val__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_devmap_val__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_devmap_val__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_devmap_val__bindgen_ty_1::Error = >::Error +pub fn aya_obj::generated::bpf_devmap_val__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_devmap_val__bindgen_ty_1 where T: core::clone::Clone +pub type aya_obj::generated::bpf_devmap_val__bindgen_ty_1::Owned = T +pub fn aya_obj::generated::bpf_devmap_val__bindgen_ty_1::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_devmap_val__bindgen_ty_1::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_devmap_val__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_devmap_val__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_devmap_val__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_devmap_val__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_devmap_val__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_devmap_val__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_devmap_val__bindgen_ty_1 +pub fn aya_obj::generated::bpf_devmap_val__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub union aya_obj::generated::bpf_link_info__bindgen_ty_1 +pub aya_obj::generated::bpf_link_info__bindgen_ty_1::cgroup: aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3 +pub aya_obj::generated::bpf_link_info__bindgen_ty_1::iter: aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4 +pub aya_obj::generated::bpf_link_info__bindgen_ty_1::netfilter: aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8 +pub aya_obj::generated::bpf_link_info__bindgen_ty_1::netns: aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5 +pub aya_obj::generated::bpf_link_info__bindgen_ty_1::raw_tracepoint: aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1 +pub aya_obj::generated::bpf_link_info__bindgen_ty_1::struct_ops: aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7 +pub aya_obj::generated::bpf_link_info__bindgen_ty_1::tracing: aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2 +pub aya_obj::generated::bpf_link_info__bindgen_ty_1::xdp: aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6 +impl core::clone::Clone for aya_obj::generated::bpf_link_info__bindgen_ty_1 +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1::clone(&self) -> aya_obj::generated::bpf_link_info__bindgen_ty_1 +impl core::marker::Copy for aya_obj::generated::bpf_link_info__bindgen_ty_1 +impl core::marker::Send for aya_obj::generated::bpf_link_info__bindgen_ty_1 +impl core::marker::Sync for aya_obj::generated::bpf_link_info__bindgen_ty_1 +impl core::marker::Unpin for aya_obj::generated::bpf_link_info__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1 +impl core::convert::Into for aya_obj::generated::bpf_link_info__bindgen_ty_1 where U: core::convert::From +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_link_info__bindgen_ty_1 where U: core::convert::Into +pub type aya_obj::generated::bpf_link_info__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_link_info__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_link_info__bindgen_ty_1::Error = >::Error +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_link_info__bindgen_ty_1 where T: core::clone::Clone +pub type aya_obj::generated::bpf_link_info__bindgen_ty_1::Owned = T +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_link_info__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_link_info__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_link_info__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_link_info__bindgen_ty_1 +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub union aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 +pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1::map: aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 +impl core::clone::Clone for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1::clone(&self) -> aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 +impl core::marker::Copy for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 +impl core::marker::Send for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 +impl core::marker::Sync for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 +impl core::marker::Unpin for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 +impl core::convert::Into for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 where U: core::convert::From +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 where U: core::convert::Into +pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1::Error = >::Error +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 where T: core::clone::Clone +pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1::Owned = T +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub union aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 +pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::cgroup: aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 +pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::task: aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 +impl core::clone::Clone for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::clone(&self) -> aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 +impl core::marker::Copy for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 +impl core::marker::Send for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 +impl core::marker::Sync for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 +impl core::marker::Unpin for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 +impl core::convert::Into for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 where U: core::convert::From +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 where U: core::convert::Into +pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::Error = >::Error +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 where T: core::clone::Clone +pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::Owned = T +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::from(t: T) -> T +#[repr(C)] pub union aya_obj::generated::btf_type__bindgen_ty_1 +pub aya_obj::generated::btf_type__bindgen_ty_1::size: aya_obj::generated::__u32 +pub aya_obj::generated::btf_type__bindgen_ty_1::type_: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::btf_type__bindgen_ty_1 +pub fn aya_obj::generated::btf_type__bindgen_ty_1::clone(&self) -> aya_obj::generated::btf_type__bindgen_ty_1 +impl core::marker::Copy for aya_obj::generated::btf_type__bindgen_ty_1 +impl core::marker::Send for aya_obj::generated::btf_type__bindgen_ty_1 +impl core::marker::Sync for aya_obj::generated::btf_type__bindgen_ty_1 +impl core::marker::Unpin for aya_obj::generated::btf_type__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::btf_type__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::btf_type__bindgen_ty_1 +impl core::convert::Into for aya_obj::generated::btf_type__bindgen_ty_1 where U: core::convert::From +pub fn aya_obj::generated::btf_type__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::btf_type__bindgen_ty_1 where U: core::convert::Into +pub type aya_obj::generated::btf_type__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_obj::generated::btf_type__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::btf_type__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_obj::generated::btf_type__bindgen_ty_1::Error = >::Error +pub fn aya_obj::generated::btf_type__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::btf_type__bindgen_ty_1 where T: core::clone::Clone +pub type aya_obj::generated::btf_type__bindgen_ty_1::Owned = T +pub fn aya_obj::generated::btf_type__bindgen_ty_1::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::btf_type__bindgen_ty_1::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::btf_type__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::btf_type__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::btf_type__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_obj::generated::btf_type__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::btf_type__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_obj::generated::btf_type__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::btf_type__bindgen_ty_1 +pub fn aya_obj::generated::btf_type__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub union aya_obj::generated::perf_event_attr__bindgen_ty_1 +pub aya_obj::generated::perf_event_attr__bindgen_ty_1::sample_freq: aya_obj::generated::__u64 +pub aya_obj::generated::perf_event_attr__bindgen_ty_1::sample_period: aya_obj::generated::__u64 +impl core::clone::Clone for aya_obj::generated::perf_event_attr__bindgen_ty_1 +pub fn aya_obj::generated::perf_event_attr__bindgen_ty_1::clone(&self) -> aya_obj::generated::perf_event_attr__bindgen_ty_1 +impl core::marker::Copy for aya_obj::generated::perf_event_attr__bindgen_ty_1 +impl core::marker::Send for aya_obj::generated::perf_event_attr__bindgen_ty_1 +impl core::marker::Sync for aya_obj::generated::perf_event_attr__bindgen_ty_1 +impl core::marker::Unpin for aya_obj::generated::perf_event_attr__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::perf_event_attr__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::perf_event_attr__bindgen_ty_1 +impl core::convert::Into for aya_obj::generated::perf_event_attr__bindgen_ty_1 where U: core::convert::From +pub fn aya_obj::generated::perf_event_attr__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::perf_event_attr__bindgen_ty_1 where U: core::convert::Into +pub type aya_obj::generated::perf_event_attr__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_obj::generated::perf_event_attr__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::perf_event_attr__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_obj::generated::perf_event_attr__bindgen_ty_1::Error = >::Error +pub fn aya_obj::generated::perf_event_attr__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::perf_event_attr__bindgen_ty_1 where T: core::clone::Clone +pub type aya_obj::generated::perf_event_attr__bindgen_ty_1::Owned = T +pub fn aya_obj::generated::perf_event_attr__bindgen_ty_1::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::perf_event_attr__bindgen_ty_1::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::perf_event_attr__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::perf_event_attr__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::perf_event_attr__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_obj::generated::perf_event_attr__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::perf_event_attr__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_obj::generated::perf_event_attr__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::perf_event_attr__bindgen_ty_1 +pub fn aya_obj::generated::perf_event_attr__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub union aya_obj::generated::perf_event_attr__bindgen_ty_2 +pub aya_obj::generated::perf_event_attr__bindgen_ty_2::wakeup_events: aya_obj::generated::__u32 +pub aya_obj::generated::perf_event_attr__bindgen_ty_2::wakeup_watermark: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::perf_event_attr__bindgen_ty_2 +pub fn aya_obj::generated::perf_event_attr__bindgen_ty_2::clone(&self) -> aya_obj::generated::perf_event_attr__bindgen_ty_2 +impl core::marker::Copy for aya_obj::generated::perf_event_attr__bindgen_ty_2 +impl core::marker::Send for aya_obj::generated::perf_event_attr__bindgen_ty_2 +impl core::marker::Sync for aya_obj::generated::perf_event_attr__bindgen_ty_2 +impl core::marker::Unpin for aya_obj::generated::perf_event_attr__bindgen_ty_2 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::perf_event_attr__bindgen_ty_2 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::perf_event_attr__bindgen_ty_2 +impl core::convert::Into for aya_obj::generated::perf_event_attr__bindgen_ty_2 where U: core::convert::From +pub fn aya_obj::generated::perf_event_attr__bindgen_ty_2::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::perf_event_attr__bindgen_ty_2 where U: core::convert::Into +pub type aya_obj::generated::perf_event_attr__bindgen_ty_2::Error = core::convert::Infallible +pub fn aya_obj::generated::perf_event_attr__bindgen_ty_2::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::perf_event_attr__bindgen_ty_2 where U: core::convert::TryFrom +pub type aya_obj::generated::perf_event_attr__bindgen_ty_2::Error = >::Error +pub fn aya_obj::generated::perf_event_attr__bindgen_ty_2::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::perf_event_attr__bindgen_ty_2 where T: core::clone::Clone +pub type aya_obj::generated::perf_event_attr__bindgen_ty_2::Owned = T +pub fn aya_obj::generated::perf_event_attr__bindgen_ty_2::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::perf_event_attr__bindgen_ty_2::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::perf_event_attr__bindgen_ty_2 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::perf_event_attr__bindgen_ty_2::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::perf_event_attr__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_obj::generated::perf_event_attr__bindgen_ty_2::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::perf_event_attr__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_obj::generated::perf_event_attr__bindgen_ty_2::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::perf_event_attr__bindgen_ty_2 +pub fn aya_obj::generated::perf_event_attr__bindgen_ty_2::from(t: T) -> T +#[repr(C)] pub union aya_obj::generated::perf_event_attr__bindgen_ty_3 +pub aya_obj::generated::perf_event_attr__bindgen_ty_3::bp_addr: aya_obj::generated::__u64 +pub aya_obj::generated::perf_event_attr__bindgen_ty_3::config1: aya_obj::generated::__u64 +pub aya_obj::generated::perf_event_attr__bindgen_ty_3::kprobe_func: aya_obj::generated::__u64 +pub aya_obj::generated::perf_event_attr__bindgen_ty_3::uprobe_path: aya_obj::generated::__u64 +impl core::clone::Clone for aya_obj::generated::perf_event_attr__bindgen_ty_3 +pub fn aya_obj::generated::perf_event_attr__bindgen_ty_3::clone(&self) -> aya_obj::generated::perf_event_attr__bindgen_ty_3 +impl core::marker::Copy for aya_obj::generated::perf_event_attr__bindgen_ty_3 +impl core::marker::Send for aya_obj::generated::perf_event_attr__bindgen_ty_3 +impl core::marker::Sync for aya_obj::generated::perf_event_attr__bindgen_ty_3 +impl core::marker::Unpin for aya_obj::generated::perf_event_attr__bindgen_ty_3 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::perf_event_attr__bindgen_ty_3 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::perf_event_attr__bindgen_ty_3 +impl core::convert::Into for aya_obj::generated::perf_event_attr__bindgen_ty_3 where U: core::convert::From +pub fn aya_obj::generated::perf_event_attr__bindgen_ty_3::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::perf_event_attr__bindgen_ty_3 where U: core::convert::Into +pub type aya_obj::generated::perf_event_attr__bindgen_ty_3::Error = core::convert::Infallible +pub fn aya_obj::generated::perf_event_attr__bindgen_ty_3::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::perf_event_attr__bindgen_ty_3 where U: core::convert::TryFrom +pub type aya_obj::generated::perf_event_attr__bindgen_ty_3::Error = >::Error +pub fn aya_obj::generated::perf_event_attr__bindgen_ty_3::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::perf_event_attr__bindgen_ty_3 where T: core::clone::Clone +pub type aya_obj::generated::perf_event_attr__bindgen_ty_3::Owned = T +pub fn aya_obj::generated::perf_event_attr__bindgen_ty_3::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::perf_event_attr__bindgen_ty_3::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::perf_event_attr__bindgen_ty_3 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::perf_event_attr__bindgen_ty_3::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::perf_event_attr__bindgen_ty_3 where T: core::marker::Sized +pub fn aya_obj::generated::perf_event_attr__bindgen_ty_3::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::perf_event_attr__bindgen_ty_3 where T: core::marker::Sized +pub fn aya_obj::generated::perf_event_attr__bindgen_ty_3::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::perf_event_attr__bindgen_ty_3 +pub fn aya_obj::generated::perf_event_attr__bindgen_ty_3::from(t: T) -> T +#[repr(C)] pub union aya_obj::generated::perf_event_attr__bindgen_ty_4 +pub aya_obj::generated::perf_event_attr__bindgen_ty_4::bp_len: aya_obj::generated::__u64 +pub aya_obj::generated::perf_event_attr__bindgen_ty_4::config2: aya_obj::generated::__u64 +pub aya_obj::generated::perf_event_attr__bindgen_ty_4::kprobe_addr: aya_obj::generated::__u64 +pub aya_obj::generated::perf_event_attr__bindgen_ty_4::probe_offset: aya_obj::generated::__u64 +impl core::clone::Clone for aya_obj::generated::perf_event_attr__bindgen_ty_4 +pub fn aya_obj::generated::perf_event_attr__bindgen_ty_4::clone(&self) -> aya_obj::generated::perf_event_attr__bindgen_ty_4 +impl core::marker::Copy for aya_obj::generated::perf_event_attr__bindgen_ty_4 +impl core::marker::Send for aya_obj::generated::perf_event_attr__bindgen_ty_4 +impl core::marker::Sync for aya_obj::generated::perf_event_attr__bindgen_ty_4 +impl core::marker::Unpin for aya_obj::generated::perf_event_attr__bindgen_ty_4 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::perf_event_attr__bindgen_ty_4 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::perf_event_attr__bindgen_ty_4 +impl core::convert::Into for aya_obj::generated::perf_event_attr__bindgen_ty_4 where U: core::convert::From +pub fn aya_obj::generated::perf_event_attr__bindgen_ty_4::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::perf_event_attr__bindgen_ty_4 where U: core::convert::Into +pub type aya_obj::generated::perf_event_attr__bindgen_ty_4::Error = core::convert::Infallible +pub fn aya_obj::generated::perf_event_attr__bindgen_ty_4::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::perf_event_attr__bindgen_ty_4 where U: core::convert::TryFrom +pub type aya_obj::generated::perf_event_attr__bindgen_ty_4::Error = >::Error +pub fn aya_obj::generated::perf_event_attr__bindgen_ty_4::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::perf_event_attr__bindgen_ty_4 where T: core::clone::Clone +pub type aya_obj::generated::perf_event_attr__bindgen_ty_4::Owned = T +pub fn aya_obj::generated::perf_event_attr__bindgen_ty_4::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::perf_event_attr__bindgen_ty_4::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::perf_event_attr__bindgen_ty_4 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::perf_event_attr__bindgen_ty_4::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::perf_event_attr__bindgen_ty_4 where T: core::marker::Sized +pub fn aya_obj::generated::perf_event_attr__bindgen_ty_4::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::perf_event_attr__bindgen_ty_4 where T: core::marker::Sized +pub fn aya_obj::generated::perf_event_attr__bindgen_ty_4::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::perf_event_attr__bindgen_ty_4 +pub fn aya_obj::generated::perf_event_attr__bindgen_ty_4::from(t: T) -> T +#[repr(C)] pub union aya_obj::generated::perf_event_mmap_page__bindgen_ty_1 +pub aya_obj::generated::perf_event_mmap_page__bindgen_ty_1::__bindgen_anon_1: aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1 +pub aya_obj::generated::perf_event_mmap_page__bindgen_ty_1::capabilities: aya_obj::generated::__u64 +impl core::clone::Clone for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1 +pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1::clone(&self) -> aya_obj::generated::perf_event_mmap_page__bindgen_ty_1 +impl core::marker::Copy for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1 +impl core::marker::Send for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1 +impl core::marker::Sync for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1 +impl core::marker::Unpin for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1 +impl core::convert::Into for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1 where U: core::convert::From +pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1 where U: core::convert::Into +pub type aya_obj::generated::perf_event_mmap_page__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_obj::generated::perf_event_mmap_page__bindgen_ty_1::Error = >::Error +pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1 where T: core::clone::Clone +pub type aya_obj::generated::perf_event_mmap_page__bindgen_ty_1::Owned = T +pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1 +pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::__BindgenBitfieldUnit +impl aya_obj::generated::__BindgenBitfieldUnit where Storage: core::convert::AsRef<[u8]> + core::convert::AsMut<[u8]> +pub fn aya_obj::generated::__BindgenBitfieldUnit::get(&self, bit_offset: usize, bit_width: u8) -> u64 +pub fn aya_obj::generated::__BindgenBitfieldUnit::get_bit(&self, index: usize) -> bool +pub fn aya_obj::generated::__BindgenBitfieldUnit::set(&mut self, bit_offset: usize, bit_width: u8, val: u64) +pub fn aya_obj::generated::__BindgenBitfieldUnit::set_bit(&mut self, index: usize, val: bool) +impl aya_obj::generated::__BindgenBitfieldUnit +pub const fn aya_obj::generated::__BindgenBitfieldUnit::new(storage: Storage) -> Self +impl core::clone::Clone for aya_obj::generated::__BindgenBitfieldUnit +pub fn aya_obj::generated::__BindgenBitfieldUnit::clone(&self) -> aya_obj::generated::__BindgenBitfieldUnit +impl core::cmp::Eq for aya_obj::generated::__BindgenBitfieldUnit +impl core::cmp::Ord for aya_obj::generated::__BindgenBitfieldUnit +pub fn aya_obj::generated::__BindgenBitfieldUnit::cmp(&self, other: &aya_obj::generated::__BindgenBitfieldUnit) -> core::cmp::Ordering +impl core::cmp::PartialEq> for aya_obj::generated::__BindgenBitfieldUnit +pub fn aya_obj::generated::__BindgenBitfieldUnit::eq(&self, other: &aya_obj::generated::__BindgenBitfieldUnit) -> bool +impl core::cmp::PartialOrd> for aya_obj::generated::__BindgenBitfieldUnit +pub fn aya_obj::generated::__BindgenBitfieldUnit::partial_cmp(&self, other: &aya_obj::generated::__BindgenBitfieldUnit) -> core::option::Option +impl core::default::Default for aya_obj::generated::__BindgenBitfieldUnit +pub fn aya_obj::generated::__BindgenBitfieldUnit::default() -> aya_obj::generated::__BindgenBitfieldUnit +impl core::fmt::Debug for aya_obj::generated::__BindgenBitfieldUnit +pub fn aya_obj::generated::__BindgenBitfieldUnit::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::hash::Hash for aya_obj::generated::__BindgenBitfieldUnit +pub fn aya_obj::generated::__BindgenBitfieldUnit::hash<__H: core::hash::Hasher>(&self, state: &mut __H) +impl core::marker::Copy for aya_obj::generated::__BindgenBitfieldUnit +impl core::marker::StructuralEq for aya_obj::generated::__BindgenBitfieldUnit +impl core::marker::StructuralPartialEq for aya_obj::generated::__BindgenBitfieldUnit +impl core::marker::Send for aya_obj::generated::__BindgenBitfieldUnit where Storage: core::marker::Send +impl core::marker::Sync for aya_obj::generated::__BindgenBitfieldUnit where Storage: core::marker::Sync +impl core::marker::Unpin for aya_obj::generated::__BindgenBitfieldUnit where Storage: core::marker::Unpin +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::__BindgenBitfieldUnit where Storage: core::panic::unwind_safe::RefUnwindSafe +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::__BindgenBitfieldUnit where Storage: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya_obj::generated::__BindgenBitfieldUnit where U: core::convert::From +pub fn aya_obj::generated::__BindgenBitfieldUnit::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::__BindgenBitfieldUnit where U: core::convert::Into +pub type aya_obj::generated::__BindgenBitfieldUnit::Error = core::convert::Infallible +pub fn aya_obj::generated::__BindgenBitfieldUnit::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::__BindgenBitfieldUnit where U: core::convert::TryFrom +pub type aya_obj::generated::__BindgenBitfieldUnit::Error = >::Error +pub fn aya_obj::generated::__BindgenBitfieldUnit::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::__BindgenBitfieldUnit where T: core::clone::Clone +pub type aya_obj::generated::__BindgenBitfieldUnit::Owned = T +pub fn aya_obj::generated::__BindgenBitfieldUnit::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::__BindgenBitfieldUnit::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::__BindgenBitfieldUnit where T: 'static + core::marker::Sized +pub fn aya_obj::generated::__BindgenBitfieldUnit::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::__BindgenBitfieldUnit where T: core::marker::Sized +pub fn aya_obj::generated::__BindgenBitfieldUnit::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::__BindgenBitfieldUnit where T: core::marker::Sized +pub fn aya_obj::generated::__BindgenBitfieldUnit::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::__BindgenBitfieldUnit +pub fn aya_obj::generated::__BindgenBitfieldUnit::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::__IncompleteArrayField(_, _) +impl aya_obj::generated::__IncompleteArrayField +pub fn aya_obj::generated::__IncompleteArrayField::as_mut_ptr(&mut self) -> *mut T +pub unsafe fn aya_obj::generated::__IncompleteArrayField::as_mut_slice(&mut self, len: usize) -> &mut [T] +pub fn aya_obj::generated::__IncompleteArrayField::as_ptr(&self) -> *const T +pub unsafe fn aya_obj::generated::__IncompleteArrayField::as_slice(&self, len: usize) -> &[T] +pub const fn aya_obj::generated::__IncompleteArrayField::new() -> Self +impl core::fmt::Debug for aya_obj::generated::__IncompleteArrayField +pub fn aya_obj::generated::__IncompleteArrayField::fmt(&self, fmt: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::default::Default for aya_obj::generated::__IncompleteArrayField +pub fn aya_obj::generated::__IncompleteArrayField::default() -> aya_obj::generated::__IncompleteArrayField +impl core::marker::Send for aya_obj::generated::__IncompleteArrayField where T: core::marker::Send +impl core::marker::Sync for aya_obj::generated::__IncompleteArrayField where T: core::marker::Sync +impl core::marker::Unpin for aya_obj::generated::__IncompleteArrayField where T: core::marker::Unpin +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::__IncompleteArrayField where T: core::panic::unwind_safe::RefUnwindSafe +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::__IncompleteArrayField where T: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya_obj::generated::__IncompleteArrayField where U: core::convert::From +pub fn aya_obj::generated::__IncompleteArrayField::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::__IncompleteArrayField where U: core::convert::Into +pub type aya_obj::generated::__IncompleteArrayField::Error = core::convert::Infallible +pub fn aya_obj::generated::__IncompleteArrayField::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::__IncompleteArrayField where U: core::convert::TryFrom +pub type aya_obj::generated::__IncompleteArrayField::Error = >::Error +pub fn aya_obj::generated::__IncompleteArrayField::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_obj::generated::__IncompleteArrayField where T: 'static + core::marker::Sized +pub fn aya_obj::generated::__IncompleteArrayField::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::__IncompleteArrayField where T: core::marker::Sized +pub fn aya_obj::generated::__IncompleteArrayField::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::__IncompleteArrayField where T: core::marker::Sized +pub fn aya_obj::generated::__IncompleteArrayField::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::__IncompleteArrayField +pub fn aya_obj::generated::__IncompleteArrayField::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_1 +pub aya_obj::generated::bpf_attr__bindgen_ty_1::btf_fd: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_1::btf_key_type_id: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_1::btf_value_type_id: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_1::btf_vmlinux_value_type_id: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_1::inner_map_fd: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_1::key_size: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_1::map_extra: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_attr__bindgen_ty_1::map_flags: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_1::map_ifindex: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_1::map_name: [core::ffi::c_char; 16] +pub aya_obj::generated::bpf_attr__bindgen_ty_1::map_type: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_1::max_entries: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_1::numa_node: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_1::value_size: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_1 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_1::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_1 +impl core::fmt::Debug for aya_obj::generated::bpf_attr__bindgen_ty_1 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_1::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_1 +impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_1 +impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_1 +impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_1 +impl core::convert::Into for aya_obj::generated::bpf_attr__bindgen_ty_1 where U: core::convert::From +pub fn aya_obj::generated::bpf_attr__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_attr__bindgen_ty_1 where U: core::convert::Into +pub type aya_obj::generated::bpf_attr__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_attr__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_attr__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_attr__bindgen_ty_1::Error = >::Error +pub fn aya_obj::generated::bpf_attr__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_1 where T: core::clone::Clone +pub type aya_obj::generated::bpf_attr__bindgen_ty_1::Owned = T +pub fn aya_obj::generated::bpf_attr__bindgen_ty_1::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_attr__bindgen_ty_1::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_attr__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_attr__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_attr__bindgen_ty_1 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_10 +pub aya_obj::generated::bpf_attr__bindgen_ty_10::attach_flags: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_10::attach_type: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_10::prog_attach_flags: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_attr__bindgen_ty_10::prog_cnt: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_10::prog_ids: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_attr__bindgen_ty_10::query_flags: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_10::target_fd: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_10 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_10::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_10 +impl core::fmt::Debug for aya_obj::generated::bpf_attr__bindgen_ty_10 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_10::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_10 +impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_10 +impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_10 +impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_10 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_10 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_10 +impl core::convert::Into for aya_obj::generated::bpf_attr__bindgen_ty_10 where U: core::convert::From +pub fn aya_obj::generated::bpf_attr__bindgen_ty_10::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_attr__bindgen_ty_10 where U: core::convert::Into +pub type aya_obj::generated::bpf_attr__bindgen_ty_10::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_attr__bindgen_ty_10::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_attr__bindgen_ty_10 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_attr__bindgen_ty_10::Error = >::Error +pub fn aya_obj::generated::bpf_attr__bindgen_ty_10::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_10 where T: core::clone::Clone +pub type aya_obj::generated::bpf_attr__bindgen_ty_10::Owned = T +pub fn aya_obj::generated::bpf_attr__bindgen_ty_10::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_attr__bindgen_ty_10::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_10 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_10::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_attr__bindgen_ty_10 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_10::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_attr__bindgen_ty_10 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_10::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_attr__bindgen_ty_10 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_10::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_11 +pub aya_obj::generated::bpf_attr__bindgen_ty_11::name: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_attr__bindgen_ty_11::prog_fd: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_11 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_11::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_11 +impl core::fmt::Debug for aya_obj::generated::bpf_attr__bindgen_ty_11 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_11::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_11 +impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_11 +impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_11 +impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_11 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_11 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_11 +impl core::convert::Into for aya_obj::generated::bpf_attr__bindgen_ty_11 where U: core::convert::From +pub fn aya_obj::generated::bpf_attr__bindgen_ty_11::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_attr__bindgen_ty_11 where U: core::convert::Into +pub type aya_obj::generated::bpf_attr__bindgen_ty_11::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_attr__bindgen_ty_11::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_attr__bindgen_ty_11 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_attr__bindgen_ty_11::Error = >::Error +pub fn aya_obj::generated::bpf_attr__bindgen_ty_11::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_11 where T: core::clone::Clone +pub type aya_obj::generated::bpf_attr__bindgen_ty_11::Owned = T +pub fn aya_obj::generated::bpf_attr__bindgen_ty_11::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_attr__bindgen_ty_11::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_11 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_11::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_attr__bindgen_ty_11 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_11::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_attr__bindgen_ty_11 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_11::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_attr__bindgen_ty_11 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_11::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_12 +pub aya_obj::generated::bpf_attr__bindgen_ty_12::btf: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_attr__bindgen_ty_12::btf_log_buf: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_attr__bindgen_ty_12::btf_log_level: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_12::btf_log_size: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_12::btf_log_true_size: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_12::btf_size: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_12 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_12::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_12 +impl core::fmt::Debug for aya_obj::generated::bpf_attr__bindgen_ty_12 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_12::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_12 +impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_12 +impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_12 +impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_12 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_12 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_12 +impl core::convert::Into for aya_obj::generated::bpf_attr__bindgen_ty_12 where U: core::convert::From +pub fn aya_obj::generated::bpf_attr__bindgen_ty_12::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_attr__bindgen_ty_12 where U: core::convert::Into +pub type aya_obj::generated::bpf_attr__bindgen_ty_12::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_attr__bindgen_ty_12::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_attr__bindgen_ty_12 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_attr__bindgen_ty_12::Error = >::Error +pub fn aya_obj::generated::bpf_attr__bindgen_ty_12::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_12 where T: core::clone::Clone +pub type aya_obj::generated::bpf_attr__bindgen_ty_12::Owned = T +pub fn aya_obj::generated::bpf_attr__bindgen_ty_12::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_attr__bindgen_ty_12::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_12 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_12::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_attr__bindgen_ty_12 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_12::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_attr__bindgen_ty_12 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_12::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_attr__bindgen_ty_12 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_12::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_13 +pub aya_obj::generated::bpf_attr__bindgen_ty_13::buf: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_attr__bindgen_ty_13::buf_len: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_13::fd: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_13::fd_type: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_13::flags: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_13::pid: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_13::probe_addr: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_attr__bindgen_ty_13::probe_offset: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_attr__bindgen_ty_13::prog_id: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_13 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_13::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_13 +impl core::fmt::Debug for aya_obj::generated::bpf_attr__bindgen_ty_13 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_13::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_13 +impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_13 +impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_13 +impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_13 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_13 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_13 +impl core::convert::Into for aya_obj::generated::bpf_attr__bindgen_ty_13 where U: core::convert::From +pub fn aya_obj::generated::bpf_attr__bindgen_ty_13::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_attr__bindgen_ty_13 where U: core::convert::Into +pub type aya_obj::generated::bpf_attr__bindgen_ty_13::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_attr__bindgen_ty_13::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_attr__bindgen_ty_13 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_attr__bindgen_ty_13::Error = >::Error +pub fn aya_obj::generated::bpf_attr__bindgen_ty_13::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_13 where T: core::clone::Clone +pub type aya_obj::generated::bpf_attr__bindgen_ty_13::Owned = T +pub fn aya_obj::generated::bpf_attr__bindgen_ty_13::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_attr__bindgen_ty_13::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_13 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_13::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_attr__bindgen_ty_13 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_13::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_attr__bindgen_ty_13 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_13::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_attr__bindgen_ty_13 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_13::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_14 +pub aya_obj::generated::bpf_attr__bindgen_ty_14::__bindgen_anon_1: aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1 +pub aya_obj::generated::bpf_attr__bindgen_ty_14::__bindgen_anon_2: aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2 +pub aya_obj::generated::bpf_attr__bindgen_ty_14::__bindgen_anon_3: aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3 +pub aya_obj::generated::bpf_attr__bindgen_ty_14::attach_type: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_14::flags: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_14 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_14 +impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_14 +impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_14 +impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_14 +impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_14 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14 +impl core::convert::Into for aya_obj::generated::bpf_attr__bindgen_ty_14 where U: core::convert::From +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_attr__bindgen_ty_14 where U: core::convert::Into +pub type aya_obj::generated::bpf_attr__bindgen_ty_14::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_attr__bindgen_ty_14 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_attr__bindgen_ty_14::Error = >::Error +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_14 where T: core::clone::Clone +pub type aya_obj::generated::bpf_attr__bindgen_ty_14::Owned = T +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_14 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_attr__bindgen_ty_14 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_attr__bindgen_ty_14 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_attr__bindgen_ty_14 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 +pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::iter_info: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::iter_info_len: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 +impl core::fmt::Debug for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 +impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 +impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 +impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 +impl core::convert::Into for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 where U: core::convert::From +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 where U: core::convert::Into +pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::Error = >::Error +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 where T: core::clone::Clone +pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::Owned = T +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 +pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::bpf_cookie: aya_obj::generated::__u64 +impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 +impl core::fmt::Debug for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 +impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 +impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 +impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 +impl core::convert::Into for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 where U: core::convert::From +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 where U: core::convert::Into +pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::Error = >::Error +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 where T: core::clone::Clone +pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::Owned = T +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 +pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::addrs: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::cnt: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::cookies: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::flags: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::syms: aya_obj::generated::__u64 +impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 +impl core::fmt::Debug for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 +impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 +impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 +impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 +impl core::convert::Into for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 where U: core::convert::From +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 where U: core::convert::Into +pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::Error = >::Error +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 where T: core::clone::Clone +pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::Owned = T +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 +pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::cookie: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::target_btf_id: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 +impl core::fmt::Debug for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 +impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 +impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 +impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 +impl core::convert::Into for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 where U: core::convert::From +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 where U: core::convert::Into +pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::Error = >::Error +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 where T: core::clone::Clone +pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::Owned = T +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 +pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::flags: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::hooknum: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::pf: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::priority: aya_obj::generated::__s32 +impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 +impl core::fmt::Debug for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 +impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 +impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 +impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 +impl core::convert::Into for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 where U: core::convert::From +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 where U: core::convert::Into +pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::Error = >::Error +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 where T: core::clone::Clone +pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::Owned = T +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_15 +pub aya_obj::generated::bpf_attr__bindgen_ty_15::__bindgen_anon_1: aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1 +pub aya_obj::generated::bpf_attr__bindgen_ty_15::__bindgen_anon_2: aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2 +pub aya_obj::generated::bpf_attr__bindgen_ty_15::flags: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_15::link_fd: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_15 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_15::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_15 +impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_15 +impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_15 +impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_15 +impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_15 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_15 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_15 +impl core::convert::Into for aya_obj::generated::bpf_attr__bindgen_ty_15 where U: core::convert::From +pub fn aya_obj::generated::bpf_attr__bindgen_ty_15::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_attr__bindgen_ty_15 where U: core::convert::Into +pub type aya_obj::generated::bpf_attr__bindgen_ty_15::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_attr__bindgen_ty_15::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_attr__bindgen_ty_15 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_attr__bindgen_ty_15::Error = >::Error +pub fn aya_obj::generated::bpf_attr__bindgen_ty_15::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_15 where T: core::clone::Clone +pub type aya_obj::generated::bpf_attr__bindgen_ty_15::Owned = T +pub fn aya_obj::generated::bpf_attr__bindgen_ty_15::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_attr__bindgen_ty_15::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_15 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_15::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_attr__bindgen_ty_15 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_15::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_attr__bindgen_ty_15 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_15::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_attr__bindgen_ty_15 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_15::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_16 +pub aya_obj::generated::bpf_attr__bindgen_ty_16::link_fd: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_16 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_16::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_16 +impl core::fmt::Debug for aya_obj::generated::bpf_attr__bindgen_ty_16 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_16::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_16 +impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_16 +impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_16 +impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_16 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_16 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_16 +impl core::convert::Into for aya_obj::generated::bpf_attr__bindgen_ty_16 where U: core::convert::From +pub fn aya_obj::generated::bpf_attr__bindgen_ty_16::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_attr__bindgen_ty_16 where U: core::convert::Into +pub type aya_obj::generated::bpf_attr__bindgen_ty_16::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_attr__bindgen_ty_16::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_attr__bindgen_ty_16 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_attr__bindgen_ty_16::Error = >::Error +pub fn aya_obj::generated::bpf_attr__bindgen_ty_16::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_16 where T: core::clone::Clone +pub type aya_obj::generated::bpf_attr__bindgen_ty_16::Owned = T +pub fn aya_obj::generated::bpf_attr__bindgen_ty_16::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_attr__bindgen_ty_16::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_16 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_16::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_attr__bindgen_ty_16 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_16::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_attr__bindgen_ty_16 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_16::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_attr__bindgen_ty_16 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_16::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_17 +pub aya_obj::generated::bpf_attr__bindgen_ty_17::type_: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_17 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_17::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_17 +impl core::fmt::Debug for aya_obj::generated::bpf_attr__bindgen_ty_17 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_17::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_17 +impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_17 +impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_17 +impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_17 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_17 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_17 +impl core::convert::Into for aya_obj::generated::bpf_attr__bindgen_ty_17 where U: core::convert::From +pub fn aya_obj::generated::bpf_attr__bindgen_ty_17::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_attr__bindgen_ty_17 where U: core::convert::Into +pub type aya_obj::generated::bpf_attr__bindgen_ty_17::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_attr__bindgen_ty_17::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_attr__bindgen_ty_17 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_attr__bindgen_ty_17::Error = >::Error +pub fn aya_obj::generated::bpf_attr__bindgen_ty_17::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_17 where T: core::clone::Clone +pub type aya_obj::generated::bpf_attr__bindgen_ty_17::Owned = T +pub fn aya_obj::generated::bpf_attr__bindgen_ty_17::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_attr__bindgen_ty_17::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_17 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_17::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_attr__bindgen_ty_17 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_17::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_attr__bindgen_ty_17 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_17::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_attr__bindgen_ty_17 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_17::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_18 +pub aya_obj::generated::bpf_attr__bindgen_ty_18::flags: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_18::link_fd: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_18 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_18::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_18 +impl core::fmt::Debug for aya_obj::generated::bpf_attr__bindgen_ty_18 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_18::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_18 +impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_18 +impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_18 +impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_18 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_18 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_18 +impl core::convert::Into for aya_obj::generated::bpf_attr__bindgen_ty_18 where U: core::convert::From +pub fn aya_obj::generated::bpf_attr__bindgen_ty_18::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_attr__bindgen_ty_18 where U: core::convert::Into +pub type aya_obj::generated::bpf_attr__bindgen_ty_18::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_attr__bindgen_ty_18::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_attr__bindgen_ty_18 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_attr__bindgen_ty_18::Error = >::Error +pub fn aya_obj::generated::bpf_attr__bindgen_ty_18::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_18 where T: core::clone::Clone +pub type aya_obj::generated::bpf_attr__bindgen_ty_18::Owned = T +pub fn aya_obj::generated::bpf_attr__bindgen_ty_18::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_attr__bindgen_ty_18::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_18 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_18::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_attr__bindgen_ty_18 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_18::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_attr__bindgen_ty_18 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_18::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_attr__bindgen_ty_18 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_18::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_19 +pub aya_obj::generated::bpf_attr__bindgen_ty_19::flags: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_19::map_fd: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_19::prog_fd: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_19 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_19::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_19 +impl core::fmt::Debug for aya_obj::generated::bpf_attr__bindgen_ty_19 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_19::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_19 +impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_19 +impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_19 +impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_19 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_19 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_19 +impl core::convert::Into for aya_obj::generated::bpf_attr__bindgen_ty_19 where U: core::convert::From +pub fn aya_obj::generated::bpf_attr__bindgen_ty_19::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_attr__bindgen_ty_19 where U: core::convert::Into +pub type aya_obj::generated::bpf_attr__bindgen_ty_19::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_attr__bindgen_ty_19::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_attr__bindgen_ty_19 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_attr__bindgen_ty_19::Error = >::Error +pub fn aya_obj::generated::bpf_attr__bindgen_ty_19::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_19 where T: core::clone::Clone +pub type aya_obj::generated::bpf_attr__bindgen_ty_19::Owned = T +pub fn aya_obj::generated::bpf_attr__bindgen_ty_19::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_attr__bindgen_ty_19::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_19 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_19::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_attr__bindgen_ty_19 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_19::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_attr__bindgen_ty_19 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_19::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_attr__bindgen_ty_19 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_19::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_2 +pub aya_obj::generated::bpf_attr__bindgen_ty_2::__bindgen_anon_1: aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1 +pub aya_obj::generated::bpf_attr__bindgen_ty_2::flags: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_attr__bindgen_ty_2::key: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_attr__bindgen_ty_2::map_fd: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_2 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_2::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_2 +impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_2 +impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_2 +impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_2 +impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_2 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_2 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_2 +impl core::convert::Into for aya_obj::generated::bpf_attr__bindgen_ty_2 where U: core::convert::From +pub fn aya_obj::generated::bpf_attr__bindgen_ty_2::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_attr__bindgen_ty_2 where U: core::convert::Into +pub type aya_obj::generated::bpf_attr__bindgen_ty_2::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_attr__bindgen_ty_2::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_attr__bindgen_ty_2 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_attr__bindgen_ty_2::Error = >::Error +pub fn aya_obj::generated::bpf_attr__bindgen_ty_2::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_2 where T: core::clone::Clone +pub type aya_obj::generated::bpf_attr__bindgen_ty_2::Owned = T +pub fn aya_obj::generated::bpf_attr__bindgen_ty_2::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_attr__bindgen_ty_2::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_2 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_2::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_attr__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_2::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_attr__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_2::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_attr__bindgen_ty_2 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_2::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_3 +pub aya_obj::generated::bpf_attr__bindgen_ty_3::count: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_3::elem_flags: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_attr__bindgen_ty_3::flags: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_attr__bindgen_ty_3::in_batch: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_attr__bindgen_ty_3::keys: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_attr__bindgen_ty_3::map_fd: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_3::out_batch: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_attr__bindgen_ty_3::values: aya_obj::generated::__u64 +impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_3 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_3::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_3 +impl core::fmt::Debug for aya_obj::generated::bpf_attr__bindgen_ty_3 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_3::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_3 +impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_3 +impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_3 +impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_3 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_3 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_3 +impl core::convert::Into for aya_obj::generated::bpf_attr__bindgen_ty_3 where U: core::convert::From +pub fn aya_obj::generated::bpf_attr__bindgen_ty_3::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_attr__bindgen_ty_3 where U: core::convert::Into +pub type aya_obj::generated::bpf_attr__bindgen_ty_3::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_attr__bindgen_ty_3::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_attr__bindgen_ty_3 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_attr__bindgen_ty_3::Error = >::Error +pub fn aya_obj::generated::bpf_attr__bindgen_ty_3::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_3 where T: core::clone::Clone +pub type aya_obj::generated::bpf_attr__bindgen_ty_3::Owned = T +pub fn aya_obj::generated::bpf_attr__bindgen_ty_3::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_attr__bindgen_ty_3::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_3 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_3::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_attr__bindgen_ty_3 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_3::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_attr__bindgen_ty_3 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_3::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_attr__bindgen_ty_3 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_3::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_4 +pub aya_obj::generated::bpf_attr__bindgen_ty_4::__bindgen_anon_1: aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1 +pub aya_obj::generated::bpf_attr__bindgen_ty_4::attach_btf_id: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_4::core_relo_cnt: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_4::core_relo_rec_size: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_4::core_relos: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_attr__bindgen_ty_4::expected_attach_type: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_4::fd_array: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_attr__bindgen_ty_4::func_info: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_attr__bindgen_ty_4::func_info_cnt: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_4::func_info_rec_size: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_4::insn_cnt: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_4::insns: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_attr__bindgen_ty_4::kern_version: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_4::license: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_attr__bindgen_ty_4::line_info: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_attr__bindgen_ty_4::line_info_cnt: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_4::line_info_rec_size: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_4::log_buf: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_attr__bindgen_ty_4::log_level: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_4::log_size: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_4::log_true_size: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_4::prog_btf_fd: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_4::prog_flags: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_4::prog_ifindex: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_4::prog_name: [core::ffi::c_char; 16] +pub aya_obj::generated::bpf_attr__bindgen_ty_4::prog_type: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_4 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_4::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_4 +impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_4 +impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_4 +impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_4 +impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_4 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_4 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_4 +impl core::convert::Into for aya_obj::generated::bpf_attr__bindgen_ty_4 where U: core::convert::From +pub fn aya_obj::generated::bpf_attr__bindgen_ty_4::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_attr__bindgen_ty_4 where U: core::convert::Into +pub type aya_obj::generated::bpf_attr__bindgen_ty_4::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_attr__bindgen_ty_4::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_attr__bindgen_ty_4 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_attr__bindgen_ty_4::Error = >::Error +pub fn aya_obj::generated::bpf_attr__bindgen_ty_4::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_4 where T: core::clone::Clone +pub type aya_obj::generated::bpf_attr__bindgen_ty_4::Owned = T +pub fn aya_obj::generated::bpf_attr__bindgen_ty_4::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_attr__bindgen_ty_4::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_4 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_4::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_attr__bindgen_ty_4 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_4::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_attr__bindgen_ty_4 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_4::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_attr__bindgen_ty_4 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_4::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_5 +pub aya_obj::generated::bpf_attr__bindgen_ty_5::bpf_fd: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_5::file_flags: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_5::path_fd: aya_obj::generated::__s32 +pub aya_obj::generated::bpf_attr__bindgen_ty_5::pathname: aya_obj::generated::__u64 +impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_5 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_5::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_5 +impl core::fmt::Debug for aya_obj::generated::bpf_attr__bindgen_ty_5 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_5::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_5 +impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_5 +impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_5 +impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_5 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_5 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_5 +impl core::convert::Into for aya_obj::generated::bpf_attr__bindgen_ty_5 where U: core::convert::From +pub fn aya_obj::generated::bpf_attr__bindgen_ty_5::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_attr__bindgen_ty_5 where U: core::convert::Into +pub type aya_obj::generated::bpf_attr__bindgen_ty_5::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_attr__bindgen_ty_5::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_attr__bindgen_ty_5 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_attr__bindgen_ty_5::Error = >::Error +pub fn aya_obj::generated::bpf_attr__bindgen_ty_5::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_5 where T: core::clone::Clone +pub type aya_obj::generated::bpf_attr__bindgen_ty_5::Owned = T +pub fn aya_obj::generated::bpf_attr__bindgen_ty_5::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_attr__bindgen_ty_5::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_5 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_5::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_attr__bindgen_ty_5 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_5::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_attr__bindgen_ty_5 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_5::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_attr__bindgen_ty_5 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_5::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_6 +pub aya_obj::generated::bpf_attr__bindgen_ty_6::attach_bpf_fd: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_6::attach_flags: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_6::attach_type: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_6::replace_bpf_fd: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_6::target_fd: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_6 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_6::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_6 +impl core::fmt::Debug for aya_obj::generated::bpf_attr__bindgen_ty_6 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_6::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_6 +impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_6 +impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_6 +impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_6 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_6 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_6 +impl core::convert::Into for aya_obj::generated::bpf_attr__bindgen_ty_6 where U: core::convert::From +pub fn aya_obj::generated::bpf_attr__bindgen_ty_6::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_attr__bindgen_ty_6 where U: core::convert::Into +pub type aya_obj::generated::bpf_attr__bindgen_ty_6::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_attr__bindgen_ty_6::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_attr__bindgen_ty_6 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_attr__bindgen_ty_6::Error = >::Error +pub fn aya_obj::generated::bpf_attr__bindgen_ty_6::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_6 where T: core::clone::Clone +pub type aya_obj::generated::bpf_attr__bindgen_ty_6::Owned = T +pub fn aya_obj::generated::bpf_attr__bindgen_ty_6::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_attr__bindgen_ty_6::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_6 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_6::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_attr__bindgen_ty_6 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_6::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_attr__bindgen_ty_6 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_6::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_attr__bindgen_ty_6 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_6::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_7 +pub aya_obj::generated::bpf_attr__bindgen_ty_7::batch_size: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_7::cpu: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_7::ctx_in: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_attr__bindgen_ty_7::ctx_out: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_attr__bindgen_ty_7::ctx_size_in: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_7::ctx_size_out: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_7::data_in: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_attr__bindgen_ty_7::data_out: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_attr__bindgen_ty_7::data_size_in: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_7::data_size_out: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_7::duration: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_7::flags: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_7::prog_fd: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_7::repeat: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_7::retval: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_7 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_7::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_7 +impl core::fmt::Debug for aya_obj::generated::bpf_attr__bindgen_ty_7 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_7::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_7 +impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_7 +impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_7 +impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_7 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_7 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_7 +impl core::convert::Into for aya_obj::generated::bpf_attr__bindgen_ty_7 where U: core::convert::From +pub fn aya_obj::generated::bpf_attr__bindgen_ty_7::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_attr__bindgen_ty_7 where U: core::convert::Into +pub type aya_obj::generated::bpf_attr__bindgen_ty_7::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_attr__bindgen_ty_7::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_attr__bindgen_ty_7 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_attr__bindgen_ty_7::Error = >::Error +pub fn aya_obj::generated::bpf_attr__bindgen_ty_7::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_7 where T: core::clone::Clone +pub type aya_obj::generated::bpf_attr__bindgen_ty_7::Owned = T +pub fn aya_obj::generated::bpf_attr__bindgen_ty_7::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_attr__bindgen_ty_7::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_7 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_7::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_attr__bindgen_ty_7 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_7::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_attr__bindgen_ty_7 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_7::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_attr__bindgen_ty_7 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_7::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_8 +pub aya_obj::generated::bpf_attr__bindgen_ty_8::__bindgen_anon_1: aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1 +pub aya_obj::generated::bpf_attr__bindgen_ty_8::next_id: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_8::open_flags: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_8 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_8::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_8 +impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_8 +impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_8 +impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_8 +impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_8 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_8 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_8 +impl core::convert::Into for aya_obj::generated::bpf_attr__bindgen_ty_8 where U: core::convert::From +pub fn aya_obj::generated::bpf_attr__bindgen_ty_8::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_attr__bindgen_ty_8 where U: core::convert::Into +pub type aya_obj::generated::bpf_attr__bindgen_ty_8::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_attr__bindgen_ty_8::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_attr__bindgen_ty_8 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_attr__bindgen_ty_8::Error = >::Error +pub fn aya_obj::generated::bpf_attr__bindgen_ty_8::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_8 where T: core::clone::Clone +pub type aya_obj::generated::bpf_attr__bindgen_ty_8::Owned = T +pub fn aya_obj::generated::bpf_attr__bindgen_ty_8::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_attr__bindgen_ty_8::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_8 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_8::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_attr__bindgen_ty_8 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_8::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_attr__bindgen_ty_8 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_8::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_attr__bindgen_ty_8 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_8::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_9 +pub aya_obj::generated::bpf_attr__bindgen_ty_9::bpf_fd: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_attr__bindgen_ty_9::info: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_attr__bindgen_ty_9::info_len: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_9 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_9::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_9 +impl core::fmt::Debug for aya_obj::generated::bpf_attr__bindgen_ty_9 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_9::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_9 +impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_9 +impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_9 +impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_9 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_9 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_9 +impl core::convert::Into for aya_obj::generated::bpf_attr__bindgen_ty_9 where U: core::convert::From +pub fn aya_obj::generated::bpf_attr__bindgen_ty_9::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_attr__bindgen_ty_9 where U: core::convert::Into +pub type aya_obj::generated::bpf_attr__bindgen_ty_9::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_attr__bindgen_ty_9::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_attr__bindgen_ty_9 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_attr__bindgen_ty_9::Error = >::Error +pub fn aya_obj::generated::bpf_attr__bindgen_ty_9::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_9 where T: core::clone::Clone +pub type aya_obj::generated::bpf_attr__bindgen_ty_9::Owned = T +pub fn aya_obj::generated::bpf_attr__bindgen_ty_9::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_attr__bindgen_ty_9::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_9 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_9::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_attr__bindgen_ty_9 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_9::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_attr__bindgen_ty_9 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_attr__bindgen_ty_9::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_attr__bindgen_ty_9 +pub fn aya_obj::generated::bpf_attr__bindgen_ty_9::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_btf_info +pub aya_obj::generated::bpf_btf_info::btf: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_btf_info::btf_size: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_btf_info::id: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_btf_info::kernel_btf: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_btf_info::name: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_btf_info::name_len: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::bpf_btf_info +pub fn aya_obj::generated::bpf_btf_info::clone(&self) -> aya_obj::generated::bpf_btf_info +impl core::fmt::Debug for aya_obj::generated::bpf_btf_info +pub fn aya_obj::generated::bpf_btf_info::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::bpf_btf_info +impl core::marker::Send for aya_obj::generated::bpf_btf_info +impl core::marker::Sync for aya_obj::generated::bpf_btf_info +impl core::marker::Unpin for aya_obj::generated::bpf_btf_info +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_btf_info +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_btf_info +impl core::convert::Into for aya_obj::generated::bpf_btf_info where U: core::convert::From +pub fn aya_obj::generated::bpf_btf_info::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_btf_info where U: core::convert::Into +pub type aya_obj::generated::bpf_btf_info::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_btf_info::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_btf_info where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_btf_info::Error = >::Error +pub fn aya_obj::generated::bpf_btf_info::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_btf_info where T: core::clone::Clone +pub type aya_obj::generated::bpf_btf_info::Owned = T +pub fn aya_obj::generated::bpf_btf_info::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_btf_info::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_btf_info where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_btf_info::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_btf_info where T: core::marker::Sized +pub fn aya_obj::generated::bpf_btf_info::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_btf_info where T: core::marker::Sized +pub fn aya_obj::generated::bpf_btf_info::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_btf_info +pub fn aya_obj::generated::bpf_btf_info::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_core_relo +pub aya_obj::generated::bpf_core_relo::access_str_off: core::ffi::c_uint +pub aya_obj::generated::bpf_core_relo::insn_off: core::ffi::c_uint +pub aya_obj::generated::bpf_core_relo::kind: aya_obj::generated::bpf_core_relo_kind::Type +pub aya_obj::generated::bpf_core_relo::type_id: core::ffi::c_uint +impl core::clone::Clone for aya_obj::generated::bpf_core_relo +pub fn aya_obj::generated::bpf_core_relo::clone(&self) -> aya_obj::generated::bpf_core_relo +impl core::fmt::Debug for aya_obj::generated::bpf_core_relo +pub fn aya_obj::generated::bpf_core_relo::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::bpf_core_relo +impl core::marker::Send for aya_obj::generated::bpf_core_relo +impl core::marker::Sync for aya_obj::generated::bpf_core_relo +impl core::marker::Unpin for aya_obj::generated::bpf_core_relo +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_core_relo +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_core_relo +impl core::convert::Into for aya_obj::generated::bpf_core_relo where U: core::convert::From +pub fn aya_obj::generated::bpf_core_relo::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_core_relo where U: core::convert::Into +pub type aya_obj::generated::bpf_core_relo::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_core_relo::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_core_relo where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_core_relo::Error = >::Error +pub fn aya_obj::generated::bpf_core_relo::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_core_relo where T: core::clone::Clone +pub type aya_obj::generated::bpf_core_relo::Owned = T +pub fn aya_obj::generated::bpf_core_relo::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_core_relo::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_core_relo where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_core_relo::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_core_relo where T: core::marker::Sized +pub fn aya_obj::generated::bpf_core_relo::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_core_relo where T: core::marker::Sized +pub fn aya_obj::generated::bpf_core_relo::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_core_relo +pub fn aya_obj::generated::bpf_core_relo::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_cpumap_val +pub aya_obj::generated::bpf_cpumap_val::bpf_prog: aya_obj::generated::bpf_cpumap_val__bindgen_ty_1 +pub aya_obj::generated::bpf_cpumap_val::qsize: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::bpf_cpumap_val +pub fn aya_obj::generated::bpf_cpumap_val::clone(&self) -> aya_obj::generated::bpf_cpumap_val +impl core::marker::Copy for aya_obj::generated::bpf_cpumap_val +impl core::marker::Send for aya_obj::generated::bpf_cpumap_val +impl core::marker::Sync for aya_obj::generated::bpf_cpumap_val +impl core::marker::Unpin for aya_obj::generated::bpf_cpumap_val +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_cpumap_val +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_cpumap_val +impl core::convert::Into for aya_obj::generated::bpf_cpumap_val where U: core::convert::From +pub fn aya_obj::generated::bpf_cpumap_val::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_cpumap_val where U: core::convert::Into +pub type aya_obj::generated::bpf_cpumap_val::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_cpumap_val::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_cpumap_val where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_cpumap_val::Error = >::Error +pub fn aya_obj::generated::bpf_cpumap_val::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_cpumap_val where T: core::clone::Clone +pub type aya_obj::generated::bpf_cpumap_val::Owned = T +pub fn aya_obj::generated::bpf_cpumap_val::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_cpumap_val::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_cpumap_val where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_cpumap_val::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_cpumap_val where T: core::marker::Sized +pub fn aya_obj::generated::bpf_cpumap_val::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_cpumap_val where T: core::marker::Sized +pub fn aya_obj::generated::bpf_cpumap_val::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_cpumap_val +pub fn aya_obj::generated::bpf_cpumap_val::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_devmap_val +pub aya_obj::generated::bpf_devmap_val::bpf_prog: aya_obj::generated::bpf_devmap_val__bindgen_ty_1 +pub aya_obj::generated::bpf_devmap_val::ifindex: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::bpf_devmap_val +pub fn aya_obj::generated::bpf_devmap_val::clone(&self) -> aya_obj::generated::bpf_devmap_val +impl core::marker::Copy for aya_obj::generated::bpf_devmap_val +impl core::marker::Send for aya_obj::generated::bpf_devmap_val +impl core::marker::Sync for aya_obj::generated::bpf_devmap_val +impl core::marker::Unpin for aya_obj::generated::bpf_devmap_val +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_devmap_val +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_devmap_val +impl core::convert::Into for aya_obj::generated::bpf_devmap_val where U: core::convert::From +pub fn aya_obj::generated::bpf_devmap_val::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_devmap_val where U: core::convert::Into +pub type aya_obj::generated::bpf_devmap_val::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_devmap_val::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_devmap_val where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_devmap_val::Error = >::Error +pub fn aya_obj::generated::bpf_devmap_val::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_devmap_val where T: core::clone::Clone +pub type aya_obj::generated::bpf_devmap_val::Owned = T +pub fn aya_obj::generated::bpf_devmap_val::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_devmap_val::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_devmap_val where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_devmap_val::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_devmap_val where T: core::marker::Sized +pub fn aya_obj::generated::bpf_devmap_val::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_devmap_val where T: core::marker::Sized +pub fn aya_obj::generated::bpf_devmap_val::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_devmap_val +pub fn aya_obj::generated::bpf_devmap_val::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_func_info +pub aya_obj::generated::bpf_func_info::insn_off: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_func_info::type_id: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::bpf_func_info +pub fn aya_obj::generated::bpf_func_info::clone(&self) -> aya_obj::generated::bpf_func_info +impl core::fmt::Debug for aya_obj::generated::bpf_func_info +pub fn aya_obj::generated::bpf_func_info::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::bpf_func_info +impl core::marker::Send for aya_obj::generated::bpf_func_info +impl core::marker::Sync for aya_obj::generated::bpf_func_info +impl core::marker::Unpin for aya_obj::generated::bpf_func_info +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_func_info +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_func_info +impl core::convert::Into for aya_obj::generated::bpf_func_info where U: core::convert::From +pub fn aya_obj::generated::bpf_func_info::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_func_info where U: core::convert::Into +pub type aya_obj::generated::bpf_func_info::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_func_info::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_func_info where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_func_info::Error = >::Error +pub fn aya_obj::generated::bpf_func_info::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_func_info where T: core::clone::Clone +pub type aya_obj::generated::bpf_func_info::Owned = T +pub fn aya_obj::generated::bpf_func_info::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_func_info::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_func_info where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_func_info::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_func_info where T: core::marker::Sized +pub fn aya_obj::generated::bpf_func_info::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_func_info where T: core::marker::Sized +pub fn aya_obj::generated::bpf_func_info::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_func_info +pub fn aya_obj::generated::bpf_func_info::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_insn +pub aya_obj::generated::bpf_insn::_bitfield_1: aya_obj::generated::__BindgenBitfieldUnit<[u8; 1]> +pub aya_obj::generated::bpf_insn::_bitfield_align_1: [u8; 0] +pub aya_obj::generated::bpf_insn::code: aya_obj::generated::__u8 +pub aya_obj::generated::bpf_insn::imm: aya_obj::generated::__s32 +pub aya_obj::generated::bpf_insn::off: aya_obj::generated::__s16 +impl aya_obj::generated::bpf_insn +pub fn aya_obj::generated::bpf_insn::dst_reg(&self) -> aya_obj::generated::__u8 +pub fn aya_obj::generated::bpf_insn::new_bitfield_1(dst_reg: aya_obj::generated::__u8, src_reg: aya_obj::generated::__u8) -> aya_obj::generated::__BindgenBitfieldUnit<[u8; 1]> +pub fn aya_obj::generated::bpf_insn::set_dst_reg(&mut self, val: aya_obj::generated::__u8) +pub fn aya_obj::generated::bpf_insn::set_src_reg(&mut self, val: aya_obj::generated::__u8) +pub fn aya_obj::generated::bpf_insn::src_reg(&self) -> aya_obj::generated::__u8 +impl core::clone::Clone for aya_obj::generated::bpf_insn +pub fn aya_obj::generated::bpf_insn::clone(&self) -> aya_obj::generated::bpf_insn +impl core::fmt::Debug for aya_obj::generated::bpf_insn +pub fn aya_obj::generated::bpf_insn::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::bpf_insn +impl core::marker::Send for aya_obj::generated::bpf_insn +impl core::marker::Sync for aya_obj::generated::bpf_insn +impl core::marker::Unpin for aya_obj::generated::bpf_insn +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_insn +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_insn +impl core::convert::Into for aya_obj::generated::bpf_insn where U: core::convert::From +pub fn aya_obj::generated::bpf_insn::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_insn where U: core::convert::Into +pub type aya_obj::generated::bpf_insn::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_insn::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_insn where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_insn::Error = >::Error +pub fn aya_obj::generated::bpf_insn::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_insn where T: core::clone::Clone +pub type aya_obj::generated::bpf_insn::Owned = T +pub fn aya_obj::generated::bpf_insn::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_insn::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_insn where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_insn::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_insn where T: core::marker::Sized +pub fn aya_obj::generated::bpf_insn::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_insn where T: core::marker::Sized +pub fn aya_obj::generated::bpf_insn::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_insn +pub fn aya_obj::generated::bpf_insn::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_line_info +pub aya_obj::generated::bpf_line_info::file_name_off: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_line_info::insn_off: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_line_info::line_col: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_line_info::line_off: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::bpf_line_info +pub fn aya_obj::generated::bpf_line_info::clone(&self) -> aya_obj::generated::bpf_line_info +impl core::fmt::Debug for aya_obj::generated::bpf_line_info +pub fn aya_obj::generated::bpf_line_info::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::bpf_line_info +impl core::marker::Send for aya_obj::generated::bpf_line_info +impl core::marker::Sync for aya_obj::generated::bpf_line_info +impl core::marker::Unpin for aya_obj::generated::bpf_line_info +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_line_info +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_line_info +impl core::convert::Into for aya_obj::generated::bpf_line_info where U: core::convert::From +pub fn aya_obj::generated::bpf_line_info::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_line_info where U: core::convert::Into +pub type aya_obj::generated::bpf_line_info::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_line_info::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_line_info where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_line_info::Error = >::Error +pub fn aya_obj::generated::bpf_line_info::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_line_info where T: core::clone::Clone +pub type aya_obj::generated::bpf_line_info::Owned = T +pub fn aya_obj::generated::bpf_line_info::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_line_info::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_line_info where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_line_info::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_line_info where T: core::marker::Sized +pub fn aya_obj::generated::bpf_line_info::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_line_info where T: core::marker::Sized +pub fn aya_obj::generated::bpf_line_info::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_line_info +pub fn aya_obj::generated::bpf_line_info::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_link_info +pub aya_obj::generated::bpf_link_info::__bindgen_anon_1: aya_obj::generated::bpf_link_info__bindgen_ty_1 +pub aya_obj::generated::bpf_link_info::id: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_link_info::prog_id: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_link_info::type_: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::bpf_link_info +pub fn aya_obj::generated::bpf_link_info::clone(&self) -> aya_obj::generated::bpf_link_info +impl core::marker::Copy for aya_obj::generated::bpf_link_info +impl core::marker::Send for aya_obj::generated::bpf_link_info +impl core::marker::Sync for aya_obj::generated::bpf_link_info +impl core::marker::Unpin for aya_obj::generated::bpf_link_info +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_link_info +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_link_info +impl core::convert::Into for aya_obj::generated::bpf_link_info where U: core::convert::From +pub fn aya_obj::generated::bpf_link_info::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_link_info where U: core::convert::Into +pub type aya_obj::generated::bpf_link_info::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_link_info::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_link_info where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_link_info::Error = >::Error +pub fn aya_obj::generated::bpf_link_info::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_link_info where T: core::clone::Clone +pub type aya_obj::generated::bpf_link_info::Owned = T +pub fn aya_obj::generated::bpf_link_info::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_link_info::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_link_info where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_link_info::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_link_info where T: core::marker::Sized +pub fn aya_obj::generated::bpf_link_info::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_link_info where T: core::marker::Sized +pub fn aya_obj::generated::bpf_link_info::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_link_info +pub fn aya_obj::generated::bpf_link_info::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1 +pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1::tp_name: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1::tp_name_len: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1 +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1::clone(&self) -> aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1 +impl core::fmt::Debug for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1 +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1 +impl core::marker::Send for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1 +impl core::marker::Sync for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1 +impl core::marker::Unpin for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1 +impl core::convert::Into for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1 where U: core::convert::From +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1 where U: core::convert::Into +pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1::Error = >::Error +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1 where T: core::clone::Clone +pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1::Owned = T +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1 +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2 +pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2::attach_type: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2::target_btf_id: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2::target_obj_id: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2 +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2::clone(&self) -> aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2 +impl core::fmt::Debug for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2 +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2 +impl core::marker::Send for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2 +impl core::marker::Sync for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2 +impl core::marker::Unpin for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2 +impl core::convert::Into for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2 where U: core::convert::From +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2 where U: core::convert::Into +pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2::Error = >::Error +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2 where T: core::clone::Clone +pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2::Owned = T +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2 +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3 +pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3::attach_type: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3::cgroup_id: aya_obj::generated::__u64 +impl core::clone::Clone for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3 +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3::clone(&self) -> aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3 +impl core::fmt::Debug for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3 +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3 +impl core::marker::Send for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3 +impl core::marker::Sync for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3 +impl core::marker::Unpin for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3 +impl core::convert::Into for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3 where U: core::convert::From +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3 where U: core::convert::Into +pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3::Error = >::Error +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3 where T: core::clone::Clone +pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3::Owned = T +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3 +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4 +pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4::__bindgen_anon_1: aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 +pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4::__bindgen_anon_2: aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 +pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4::target_name: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4::target_name_len: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4 +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4::clone(&self) -> aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4 +impl core::marker::Copy for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4 +impl core::marker::Send for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4 +impl core::marker::Sync for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4 +impl core::marker::Unpin for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4 +impl core::convert::Into for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4 where U: core::convert::From +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4 where U: core::convert::Into +pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4::Error = >::Error +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4 where T: core::clone::Clone +pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4::Owned = T +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4 +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 +pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::map_id: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::clone(&self) -> aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 +impl core::fmt::Debug for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 +impl core::marker::Send for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 +impl core::marker::Sync for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 +impl core::marker::Unpin for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 +impl core::convert::Into for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 where U: core::convert::From +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 where U: core::convert::Into +pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::Error = >::Error +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 where T: core::clone::Clone +pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::Owned = T +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 +pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::cgroup_id: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::order: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::clone(&self) -> aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 +impl core::fmt::Debug for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 +impl core::marker::Send for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 +impl core::marker::Sync for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 +impl core::marker::Unpin for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 +impl core::convert::Into for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 where U: core::convert::From +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 where U: core::convert::Into +pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::Error = >::Error +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 where T: core::clone::Clone +pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::Owned = T +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 +pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::pid: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::tid: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::clone(&self) -> aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 +impl core::fmt::Debug for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 +impl core::marker::Send for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 +impl core::marker::Sync for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 +impl core::marker::Unpin for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 +impl core::convert::Into for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 where U: core::convert::From +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 where U: core::convert::Into +pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::Error = >::Error +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 where T: core::clone::Clone +pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::Owned = T +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5 +pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5::attach_type: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5::netns_ino: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5 +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5::clone(&self) -> aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5 +impl core::fmt::Debug for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5 +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5 +impl core::marker::Send for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5 +impl core::marker::Sync for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5 +impl core::marker::Unpin for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5 +impl core::convert::Into for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5 where U: core::convert::From +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5 where U: core::convert::Into +pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5::Error = >::Error +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5 where T: core::clone::Clone +pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5::Owned = T +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5 +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6 +pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6::ifindex: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6 +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6::clone(&self) -> aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6 +impl core::fmt::Debug for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6 +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6 +impl core::marker::Send for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6 +impl core::marker::Sync for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6 +impl core::marker::Unpin for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6 +impl core::convert::Into for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6 where U: core::convert::From +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6 where U: core::convert::Into +pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6::Error = >::Error +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6 where T: core::clone::Clone +pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6::Owned = T +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6 +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7 +pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7::map_id: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7 +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7::clone(&self) -> aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7 +impl core::fmt::Debug for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7 +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7 +impl core::marker::Send for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7 +impl core::marker::Sync for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7 +impl core::marker::Unpin for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7 +impl core::convert::Into for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7 where U: core::convert::From +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7 where U: core::convert::Into +pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7::Error = >::Error +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7 where T: core::clone::Clone +pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7::Owned = T +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7 +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8 +pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8::flags: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8::hooknum: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8::pf: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8::priority: aya_obj::generated::__s32 +impl core::clone::Clone for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8 +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8::clone(&self) -> aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8 +impl core::fmt::Debug for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8 +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8 +impl core::marker::Send for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8 +impl core::marker::Sync for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8 +impl core::marker::Unpin for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8 +impl core::convert::Into for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8 where U: core::convert::From +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8 where U: core::convert::Into +pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8 where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8::Error = >::Error +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8 where T: core::clone::Clone +pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8::Owned = T +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8 where T: core::marker::Sized +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8 +pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_lpm_trie_key +pub aya_obj::generated::bpf_lpm_trie_key::data: aya_obj::generated::__IncompleteArrayField +pub aya_obj::generated::bpf_lpm_trie_key::prefixlen: aya_obj::generated::__u32 +impl core::fmt::Debug for aya_obj::generated::bpf_lpm_trie_key +pub fn aya_obj::generated::bpf_lpm_trie_key::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::generated::bpf_lpm_trie_key +impl core::marker::Sync for aya_obj::generated::bpf_lpm_trie_key +impl core::marker::Unpin for aya_obj::generated::bpf_lpm_trie_key +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_lpm_trie_key +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_lpm_trie_key +impl core::convert::Into for aya_obj::generated::bpf_lpm_trie_key where U: core::convert::From +pub fn aya_obj::generated::bpf_lpm_trie_key::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_lpm_trie_key where U: core::convert::Into +pub type aya_obj::generated::bpf_lpm_trie_key::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_lpm_trie_key::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_lpm_trie_key where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_lpm_trie_key::Error = >::Error +pub fn aya_obj::generated::bpf_lpm_trie_key::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_obj::generated::bpf_lpm_trie_key where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_lpm_trie_key::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_lpm_trie_key where T: core::marker::Sized +pub fn aya_obj::generated::bpf_lpm_trie_key::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_lpm_trie_key where T: core::marker::Sized +pub fn aya_obj::generated::bpf_lpm_trie_key::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_lpm_trie_key +pub fn aya_obj::generated::bpf_lpm_trie_key::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_map_info +pub aya_obj::generated::bpf_map_info::_bitfield_1: aya_obj::generated::__BindgenBitfieldUnit<[u8; 4]> +pub aya_obj::generated::bpf_map_info::_bitfield_align_1: [u8; 0] +pub aya_obj::generated::bpf_map_info::btf_id: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_map_info::btf_key_type_id: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_map_info::btf_value_type_id: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_map_info::btf_vmlinux_value_type_id: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_map_info::id: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_map_info::ifindex: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_map_info::key_size: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_map_info::map_extra: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_map_info::map_flags: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_map_info::max_entries: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_map_info::name: [core::ffi::c_char; 16] +pub aya_obj::generated::bpf_map_info::netns_dev: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_map_info::netns_ino: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_map_info::type_: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_map_info::value_size: aya_obj::generated::__u32 +impl aya_obj::generated::bpf_map_info +pub fn aya_obj::generated::bpf_map_info::new_bitfield_1() -> aya_obj::generated::__BindgenBitfieldUnit<[u8; 4]> +impl core::clone::Clone for aya_obj::generated::bpf_map_info +pub fn aya_obj::generated::bpf_map_info::clone(&self) -> aya_obj::generated::bpf_map_info +impl core::fmt::Debug for aya_obj::generated::bpf_map_info +pub fn aya_obj::generated::bpf_map_info::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::bpf_map_info +impl core::marker::Send for aya_obj::generated::bpf_map_info +impl core::marker::Sync for aya_obj::generated::bpf_map_info +impl core::marker::Unpin for aya_obj::generated::bpf_map_info +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_map_info +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_map_info +impl core::convert::Into for aya_obj::generated::bpf_map_info where U: core::convert::From +pub fn aya_obj::generated::bpf_map_info::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_map_info where U: core::convert::Into +pub type aya_obj::generated::bpf_map_info::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_map_info::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_map_info where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_map_info::Error = >::Error +pub fn aya_obj::generated::bpf_map_info::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_map_info where T: core::clone::Clone +pub type aya_obj::generated::bpf_map_info::Owned = T +pub fn aya_obj::generated::bpf_map_info::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_map_info::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_map_info where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_map_info::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_map_info where T: core::marker::Sized +pub fn aya_obj::generated::bpf_map_info::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_map_info where T: core::marker::Sized +pub fn aya_obj::generated::bpf_map_info::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_map_info +pub fn aya_obj::generated::bpf_map_info::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::bpf_prog_info +pub aya_obj::generated::bpf_prog_info::_bitfield_1: aya_obj::generated::__BindgenBitfieldUnit<[u8; 4]> +pub aya_obj::generated::bpf_prog_info::_bitfield_align_1: [u8; 0] +pub aya_obj::generated::bpf_prog_info::attach_btf_id: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_prog_info::attach_btf_obj_id: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_prog_info::btf_id: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_prog_info::created_by_uid: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_prog_info::func_info: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_prog_info::func_info_rec_size: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_prog_info::id: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_prog_info::ifindex: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_prog_info::jited_func_lens: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_prog_info::jited_ksyms: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_prog_info::jited_line_info: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_prog_info::jited_line_info_rec_size: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_prog_info::jited_prog_insns: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_prog_info::jited_prog_len: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_prog_info::line_info: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_prog_info::line_info_rec_size: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_prog_info::load_time: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_prog_info::map_ids: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_prog_info::name: [core::ffi::c_char; 16] +pub aya_obj::generated::bpf_prog_info::netns_dev: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_prog_info::netns_ino: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_prog_info::nr_func_info: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_prog_info::nr_jited_func_lens: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_prog_info::nr_jited_ksyms: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_prog_info::nr_jited_line_info: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_prog_info::nr_line_info: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_prog_info::nr_map_ids: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_prog_info::nr_prog_tags: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_prog_info::prog_tags: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_prog_info::recursion_misses: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_prog_info::run_cnt: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_prog_info::run_time_ns: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_prog_info::tag: [aya_obj::generated::__u8; 8] +pub aya_obj::generated::bpf_prog_info::type_: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_prog_info::verified_insns: aya_obj::generated::__u32 +pub aya_obj::generated::bpf_prog_info::xlated_prog_insns: aya_obj::generated::__u64 +pub aya_obj::generated::bpf_prog_info::xlated_prog_len: aya_obj::generated::__u32 +impl aya_obj::generated::bpf_prog_info +pub fn aya_obj::generated::bpf_prog_info::gpl_compatible(&self) -> aya_obj::generated::__u32 +pub fn aya_obj::generated::bpf_prog_info::new_bitfield_1(gpl_compatible: aya_obj::generated::__u32) -> aya_obj::generated::__BindgenBitfieldUnit<[u8; 4]> +pub fn aya_obj::generated::bpf_prog_info::set_gpl_compatible(&mut self, val: aya_obj::generated::__u32) +impl core::clone::Clone for aya_obj::generated::bpf_prog_info +pub fn aya_obj::generated::bpf_prog_info::clone(&self) -> aya_obj::generated::bpf_prog_info +impl core::fmt::Debug for aya_obj::generated::bpf_prog_info +pub fn aya_obj::generated::bpf_prog_info::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::bpf_prog_info +impl core::marker::Send for aya_obj::generated::bpf_prog_info +impl core::marker::Sync for aya_obj::generated::bpf_prog_info +impl core::marker::Unpin for aya_obj::generated::bpf_prog_info +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_prog_info +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_prog_info +impl core::convert::Into for aya_obj::generated::bpf_prog_info where U: core::convert::From +pub fn aya_obj::generated::bpf_prog_info::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::bpf_prog_info where U: core::convert::Into +pub type aya_obj::generated::bpf_prog_info::Error = core::convert::Infallible +pub fn aya_obj::generated::bpf_prog_info::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::bpf_prog_info where U: core::convert::TryFrom +pub type aya_obj::generated::bpf_prog_info::Error = >::Error +pub fn aya_obj::generated::bpf_prog_info::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::bpf_prog_info where T: core::clone::Clone +pub type aya_obj::generated::bpf_prog_info::Owned = T +pub fn aya_obj::generated::bpf_prog_info::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::bpf_prog_info::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::bpf_prog_info where T: 'static + core::marker::Sized +pub fn aya_obj::generated::bpf_prog_info::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::bpf_prog_info where T: core::marker::Sized +pub fn aya_obj::generated::bpf_prog_info::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::bpf_prog_info where T: core::marker::Sized +pub fn aya_obj::generated::bpf_prog_info::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::bpf_prog_info +pub fn aya_obj::generated::bpf_prog_info::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::btf_array +pub aya_obj::generated::btf_array::index_type: aya_obj::generated::__u32 +pub aya_obj::generated::btf_array::nelems: aya_obj::generated::__u32 +pub aya_obj::generated::btf_array::type_: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::btf_array +pub fn aya_obj::generated::btf_array::clone(&self) -> aya_obj::generated::btf_array +impl core::fmt::Debug for aya_obj::generated::btf_array +pub fn aya_obj::generated::btf_array::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::btf_array +impl core::marker::Send for aya_obj::generated::btf_array +impl core::marker::Sync for aya_obj::generated::btf_array +impl core::marker::Unpin for aya_obj::generated::btf_array +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::btf_array +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::btf_array +impl core::convert::Into for aya_obj::generated::btf_array where U: core::convert::From +pub fn aya_obj::generated::btf_array::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::btf_array where U: core::convert::Into +pub type aya_obj::generated::btf_array::Error = core::convert::Infallible +pub fn aya_obj::generated::btf_array::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::btf_array where U: core::convert::TryFrom +pub type aya_obj::generated::btf_array::Error = >::Error +pub fn aya_obj::generated::btf_array::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::btf_array where T: core::clone::Clone +pub type aya_obj::generated::btf_array::Owned = T +pub fn aya_obj::generated::btf_array::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::btf_array::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::btf_array where T: 'static + core::marker::Sized +pub fn aya_obj::generated::btf_array::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::btf_array where T: core::marker::Sized +pub fn aya_obj::generated::btf_array::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::btf_array where T: core::marker::Sized +pub fn aya_obj::generated::btf_array::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::btf_array +pub fn aya_obj::generated::btf_array::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::btf_decl_tag +pub aya_obj::generated::btf_decl_tag::component_idx: aya_obj::generated::__s32 +impl core::clone::Clone for aya_obj::generated::btf_decl_tag +pub fn aya_obj::generated::btf_decl_tag::clone(&self) -> aya_obj::generated::btf_decl_tag +impl core::fmt::Debug for aya_obj::generated::btf_decl_tag +pub fn aya_obj::generated::btf_decl_tag::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::btf_decl_tag +impl core::marker::Send for aya_obj::generated::btf_decl_tag +impl core::marker::Sync for aya_obj::generated::btf_decl_tag +impl core::marker::Unpin for aya_obj::generated::btf_decl_tag +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::btf_decl_tag +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::btf_decl_tag +impl core::convert::Into for aya_obj::generated::btf_decl_tag where U: core::convert::From +pub fn aya_obj::generated::btf_decl_tag::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::btf_decl_tag where U: core::convert::Into +pub type aya_obj::generated::btf_decl_tag::Error = core::convert::Infallible +pub fn aya_obj::generated::btf_decl_tag::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::btf_decl_tag where U: core::convert::TryFrom +pub type aya_obj::generated::btf_decl_tag::Error = >::Error +pub fn aya_obj::generated::btf_decl_tag::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::btf_decl_tag where T: core::clone::Clone +pub type aya_obj::generated::btf_decl_tag::Owned = T +pub fn aya_obj::generated::btf_decl_tag::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::btf_decl_tag::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::btf_decl_tag where T: 'static + core::marker::Sized +pub fn aya_obj::generated::btf_decl_tag::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::btf_decl_tag where T: core::marker::Sized +pub fn aya_obj::generated::btf_decl_tag::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::btf_decl_tag where T: core::marker::Sized +pub fn aya_obj::generated::btf_decl_tag::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::btf_decl_tag +pub fn aya_obj::generated::btf_decl_tag::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::btf_enum +pub aya_obj::generated::btf_enum::name_off: aya_obj::generated::__u32 +pub aya_obj::generated::btf_enum::val: aya_obj::generated::__s32 +impl core::clone::Clone for aya_obj::generated::btf_enum +pub fn aya_obj::generated::btf_enum::clone(&self) -> aya_obj::generated::btf_enum +impl core::fmt::Debug for aya_obj::generated::btf_enum +pub fn aya_obj::generated::btf_enum::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::btf_enum +impl core::marker::Send for aya_obj::generated::btf_enum +impl core::marker::Sync for aya_obj::generated::btf_enum +impl core::marker::Unpin for aya_obj::generated::btf_enum +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::btf_enum +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::btf_enum +impl core::convert::Into for aya_obj::generated::btf_enum where U: core::convert::From +pub fn aya_obj::generated::btf_enum::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::btf_enum where U: core::convert::Into +pub type aya_obj::generated::btf_enum::Error = core::convert::Infallible +pub fn aya_obj::generated::btf_enum::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::btf_enum where U: core::convert::TryFrom +pub type aya_obj::generated::btf_enum::Error = >::Error +pub fn aya_obj::generated::btf_enum::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::btf_enum where T: core::clone::Clone +pub type aya_obj::generated::btf_enum::Owned = T +pub fn aya_obj::generated::btf_enum::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::btf_enum::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::btf_enum where T: 'static + core::marker::Sized +pub fn aya_obj::generated::btf_enum::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::btf_enum where T: core::marker::Sized +pub fn aya_obj::generated::btf_enum::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::btf_enum where T: core::marker::Sized +pub fn aya_obj::generated::btf_enum::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::btf_enum +pub fn aya_obj::generated::btf_enum::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::btf_ext_header +pub aya_obj::generated::btf_ext_header::core_relo_len: core::ffi::c_uint +pub aya_obj::generated::btf_ext_header::core_relo_off: core::ffi::c_uint +pub aya_obj::generated::btf_ext_header::flags: core::ffi::c_uchar +pub aya_obj::generated::btf_ext_header::func_info_len: core::ffi::c_uint +pub aya_obj::generated::btf_ext_header::func_info_off: core::ffi::c_uint +pub aya_obj::generated::btf_ext_header::hdr_len: core::ffi::c_uint +pub aya_obj::generated::btf_ext_header::line_info_len: core::ffi::c_uint +pub aya_obj::generated::btf_ext_header::line_info_off: core::ffi::c_uint +pub aya_obj::generated::btf_ext_header::magic: core::ffi::c_ushort +pub aya_obj::generated::btf_ext_header::version: core::ffi::c_uchar +impl core::clone::Clone for aya_obj::generated::btf_ext_header +pub fn aya_obj::generated::btf_ext_header::clone(&self) -> aya_obj::generated::btf_ext_header +impl core::fmt::Debug for aya_obj::generated::btf_ext_header +pub fn aya_obj::generated::btf_ext_header::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::btf_ext_header +impl core::marker::Send for aya_obj::generated::btf_ext_header +impl core::marker::Sync for aya_obj::generated::btf_ext_header +impl core::marker::Unpin for aya_obj::generated::btf_ext_header +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::btf_ext_header +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::btf_ext_header +impl core::convert::Into for aya_obj::generated::btf_ext_header where U: core::convert::From +pub fn aya_obj::generated::btf_ext_header::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::btf_ext_header where U: core::convert::Into +pub type aya_obj::generated::btf_ext_header::Error = core::convert::Infallible +pub fn aya_obj::generated::btf_ext_header::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::btf_ext_header where U: core::convert::TryFrom +pub type aya_obj::generated::btf_ext_header::Error = >::Error +pub fn aya_obj::generated::btf_ext_header::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::btf_ext_header where T: core::clone::Clone +pub type aya_obj::generated::btf_ext_header::Owned = T +pub fn aya_obj::generated::btf_ext_header::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::btf_ext_header::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::btf_ext_header where T: 'static + core::marker::Sized +pub fn aya_obj::generated::btf_ext_header::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::btf_ext_header where T: core::marker::Sized +pub fn aya_obj::generated::btf_ext_header::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::btf_ext_header where T: core::marker::Sized +pub fn aya_obj::generated::btf_ext_header::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::btf_ext_header +pub fn aya_obj::generated::btf_ext_header::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::btf_header +pub aya_obj::generated::btf_header::flags: aya_obj::generated::__u8 +pub aya_obj::generated::btf_header::hdr_len: aya_obj::generated::__u32 +pub aya_obj::generated::btf_header::magic: aya_obj::generated::__u16 +pub aya_obj::generated::btf_header::str_len: aya_obj::generated::__u32 +pub aya_obj::generated::btf_header::str_off: aya_obj::generated::__u32 +pub aya_obj::generated::btf_header::type_len: aya_obj::generated::__u32 +pub aya_obj::generated::btf_header::type_off: aya_obj::generated::__u32 +pub aya_obj::generated::btf_header::version: aya_obj::generated::__u8 +impl core::clone::Clone for aya_obj::generated::btf_header +pub fn aya_obj::generated::btf_header::clone(&self) -> aya_obj::generated::btf_header +impl core::fmt::Debug for aya_obj::generated::btf_header +pub fn aya_obj::generated::btf_header::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::btf_header +impl core::marker::Send for aya_obj::generated::btf_header +impl core::marker::Sync for aya_obj::generated::btf_header +impl core::marker::Unpin for aya_obj::generated::btf_header +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::btf_header +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::btf_header +impl core::convert::Into for aya_obj::generated::btf_header where U: core::convert::From +pub fn aya_obj::generated::btf_header::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::btf_header where U: core::convert::Into +pub type aya_obj::generated::btf_header::Error = core::convert::Infallible +pub fn aya_obj::generated::btf_header::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::btf_header where U: core::convert::TryFrom +pub type aya_obj::generated::btf_header::Error = >::Error +pub fn aya_obj::generated::btf_header::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::btf_header where T: core::clone::Clone +pub type aya_obj::generated::btf_header::Owned = T +pub fn aya_obj::generated::btf_header::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::btf_header::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::btf_header where T: 'static + core::marker::Sized +pub fn aya_obj::generated::btf_header::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::btf_header where T: core::marker::Sized +pub fn aya_obj::generated::btf_header::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::btf_header where T: core::marker::Sized +pub fn aya_obj::generated::btf_header::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::btf_header +pub fn aya_obj::generated::btf_header::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::btf_member +pub aya_obj::generated::btf_member::name_off: aya_obj::generated::__u32 +pub aya_obj::generated::btf_member::offset: aya_obj::generated::__u32 +pub aya_obj::generated::btf_member::type_: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::btf_member +pub fn aya_obj::generated::btf_member::clone(&self) -> aya_obj::generated::btf_member +impl core::fmt::Debug for aya_obj::generated::btf_member +pub fn aya_obj::generated::btf_member::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::btf_member +impl core::marker::Send for aya_obj::generated::btf_member +impl core::marker::Sync for aya_obj::generated::btf_member +impl core::marker::Unpin for aya_obj::generated::btf_member +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::btf_member +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::btf_member +impl core::convert::Into for aya_obj::generated::btf_member where U: core::convert::From +pub fn aya_obj::generated::btf_member::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::btf_member where U: core::convert::Into +pub type aya_obj::generated::btf_member::Error = core::convert::Infallible +pub fn aya_obj::generated::btf_member::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::btf_member where U: core::convert::TryFrom +pub type aya_obj::generated::btf_member::Error = >::Error +pub fn aya_obj::generated::btf_member::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::btf_member where T: core::clone::Clone +pub type aya_obj::generated::btf_member::Owned = T +pub fn aya_obj::generated::btf_member::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::btf_member::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::btf_member where T: 'static + core::marker::Sized +pub fn aya_obj::generated::btf_member::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::btf_member where T: core::marker::Sized +pub fn aya_obj::generated::btf_member::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::btf_member where T: core::marker::Sized +pub fn aya_obj::generated::btf_member::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::btf_member +pub fn aya_obj::generated::btf_member::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::btf_param +pub aya_obj::generated::btf_param::name_off: aya_obj::generated::__u32 +pub aya_obj::generated::btf_param::type_: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::btf_param +pub fn aya_obj::generated::btf_param::clone(&self) -> aya_obj::generated::btf_param +impl core::fmt::Debug for aya_obj::generated::btf_param +pub fn aya_obj::generated::btf_param::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::btf_param +impl core::marker::Send for aya_obj::generated::btf_param +impl core::marker::Sync for aya_obj::generated::btf_param +impl core::marker::Unpin for aya_obj::generated::btf_param +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::btf_param +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::btf_param +impl core::convert::Into for aya_obj::generated::btf_param where U: core::convert::From +pub fn aya_obj::generated::btf_param::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::btf_param where U: core::convert::Into +pub type aya_obj::generated::btf_param::Error = core::convert::Infallible +pub fn aya_obj::generated::btf_param::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::btf_param where U: core::convert::TryFrom +pub type aya_obj::generated::btf_param::Error = >::Error +pub fn aya_obj::generated::btf_param::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::btf_param where T: core::clone::Clone +pub type aya_obj::generated::btf_param::Owned = T +pub fn aya_obj::generated::btf_param::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::btf_param::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::btf_param where T: 'static + core::marker::Sized +pub fn aya_obj::generated::btf_param::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::btf_param where T: core::marker::Sized +pub fn aya_obj::generated::btf_param::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::btf_param where T: core::marker::Sized +pub fn aya_obj::generated::btf_param::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::btf_param +pub fn aya_obj::generated::btf_param::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::btf_type +pub aya_obj::generated::btf_type::__bindgen_anon_1: aya_obj::generated::btf_type__bindgen_ty_1 +pub aya_obj::generated::btf_type::info: aya_obj::generated::__u32 +pub aya_obj::generated::btf_type::name_off: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::btf_type +pub fn aya_obj::generated::btf_type::clone(&self) -> aya_obj::generated::btf_type +impl core::marker::Copy for aya_obj::generated::btf_type +impl core::marker::Send for aya_obj::generated::btf_type +impl core::marker::Sync for aya_obj::generated::btf_type +impl core::marker::Unpin for aya_obj::generated::btf_type +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::btf_type +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::btf_type +impl core::convert::Into for aya_obj::generated::btf_type where U: core::convert::From +pub fn aya_obj::generated::btf_type::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::btf_type where U: core::convert::Into +pub type aya_obj::generated::btf_type::Error = core::convert::Infallible +pub fn aya_obj::generated::btf_type::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::btf_type where U: core::convert::TryFrom +pub type aya_obj::generated::btf_type::Error = >::Error +pub fn aya_obj::generated::btf_type::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::btf_type where T: core::clone::Clone +pub type aya_obj::generated::btf_type::Owned = T +pub fn aya_obj::generated::btf_type::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::btf_type::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::btf_type where T: 'static + core::marker::Sized +pub fn aya_obj::generated::btf_type::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::btf_type where T: core::marker::Sized +pub fn aya_obj::generated::btf_type::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::btf_type where T: core::marker::Sized +pub fn aya_obj::generated::btf_type::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::btf_type +pub fn aya_obj::generated::btf_type::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::btf_var +pub aya_obj::generated::btf_var::linkage: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::btf_var +pub fn aya_obj::generated::btf_var::clone(&self) -> aya_obj::generated::btf_var +impl core::fmt::Debug for aya_obj::generated::btf_var +pub fn aya_obj::generated::btf_var::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::btf_var +impl core::marker::Send for aya_obj::generated::btf_var +impl core::marker::Sync for aya_obj::generated::btf_var +impl core::marker::Unpin for aya_obj::generated::btf_var +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::btf_var +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::btf_var +impl core::convert::Into for aya_obj::generated::btf_var where U: core::convert::From +pub fn aya_obj::generated::btf_var::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::btf_var where U: core::convert::Into +pub type aya_obj::generated::btf_var::Error = core::convert::Infallible +pub fn aya_obj::generated::btf_var::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::btf_var where U: core::convert::TryFrom +pub type aya_obj::generated::btf_var::Error = >::Error +pub fn aya_obj::generated::btf_var::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::btf_var where T: core::clone::Clone +pub type aya_obj::generated::btf_var::Owned = T +pub fn aya_obj::generated::btf_var::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::btf_var::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::btf_var where T: 'static + core::marker::Sized +pub fn aya_obj::generated::btf_var::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::btf_var where T: core::marker::Sized +pub fn aya_obj::generated::btf_var::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::btf_var where T: core::marker::Sized +pub fn aya_obj::generated::btf_var::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::btf_var +pub fn aya_obj::generated::btf_var::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::btf_var_secinfo +pub aya_obj::generated::btf_var_secinfo::offset: aya_obj::generated::__u32 +pub aya_obj::generated::btf_var_secinfo::size: aya_obj::generated::__u32 +pub aya_obj::generated::btf_var_secinfo::type_: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::btf_var_secinfo +pub fn aya_obj::generated::btf_var_secinfo::clone(&self) -> aya_obj::generated::btf_var_secinfo +impl core::fmt::Debug for aya_obj::generated::btf_var_secinfo +pub fn aya_obj::generated::btf_var_secinfo::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::btf_var_secinfo +impl core::marker::Send for aya_obj::generated::btf_var_secinfo +impl core::marker::Sync for aya_obj::generated::btf_var_secinfo +impl core::marker::Unpin for aya_obj::generated::btf_var_secinfo +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::btf_var_secinfo +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::btf_var_secinfo +impl core::convert::Into for aya_obj::generated::btf_var_secinfo where U: core::convert::From +pub fn aya_obj::generated::btf_var_secinfo::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::btf_var_secinfo where U: core::convert::Into +pub type aya_obj::generated::btf_var_secinfo::Error = core::convert::Infallible +pub fn aya_obj::generated::btf_var_secinfo::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::btf_var_secinfo where U: core::convert::TryFrom +pub type aya_obj::generated::btf_var_secinfo::Error = >::Error +pub fn aya_obj::generated::btf_var_secinfo::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::btf_var_secinfo where T: core::clone::Clone +pub type aya_obj::generated::btf_var_secinfo::Owned = T +pub fn aya_obj::generated::btf_var_secinfo::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::btf_var_secinfo::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::btf_var_secinfo where T: 'static + core::marker::Sized +pub fn aya_obj::generated::btf_var_secinfo::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::btf_var_secinfo where T: core::marker::Sized +pub fn aya_obj::generated::btf_var_secinfo::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::btf_var_secinfo where T: core::marker::Sized +pub fn aya_obj::generated::btf_var_secinfo::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::btf_var_secinfo +pub fn aya_obj::generated::btf_var_secinfo::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::ifinfomsg +pub aya_obj::generated::ifinfomsg::__ifi_pad: core::ffi::c_uchar +pub aya_obj::generated::ifinfomsg::ifi_change: core::ffi::c_uint +pub aya_obj::generated::ifinfomsg::ifi_family: core::ffi::c_uchar +pub aya_obj::generated::ifinfomsg::ifi_flags: core::ffi::c_uint +pub aya_obj::generated::ifinfomsg::ifi_index: core::ffi::c_int +pub aya_obj::generated::ifinfomsg::ifi_type: core::ffi::c_ushort +impl core::clone::Clone for aya_obj::generated::ifinfomsg +pub fn aya_obj::generated::ifinfomsg::clone(&self) -> aya_obj::generated::ifinfomsg +impl core::fmt::Debug for aya_obj::generated::ifinfomsg +pub fn aya_obj::generated::ifinfomsg::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::ifinfomsg +impl core::marker::Send for aya_obj::generated::ifinfomsg +impl core::marker::Sync for aya_obj::generated::ifinfomsg +impl core::marker::Unpin for aya_obj::generated::ifinfomsg +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::ifinfomsg +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::ifinfomsg +impl core::convert::Into for aya_obj::generated::ifinfomsg where U: core::convert::From +pub fn aya_obj::generated::ifinfomsg::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::ifinfomsg where U: core::convert::Into +pub type aya_obj::generated::ifinfomsg::Error = core::convert::Infallible +pub fn aya_obj::generated::ifinfomsg::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::ifinfomsg where U: core::convert::TryFrom +pub type aya_obj::generated::ifinfomsg::Error = >::Error +pub fn aya_obj::generated::ifinfomsg::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::ifinfomsg where T: core::clone::Clone +pub type aya_obj::generated::ifinfomsg::Owned = T +pub fn aya_obj::generated::ifinfomsg::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::ifinfomsg::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::ifinfomsg where T: 'static + core::marker::Sized +pub fn aya_obj::generated::ifinfomsg::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::ifinfomsg where T: core::marker::Sized +pub fn aya_obj::generated::ifinfomsg::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::ifinfomsg where T: core::marker::Sized +pub fn aya_obj::generated::ifinfomsg::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::ifinfomsg +pub fn aya_obj::generated::ifinfomsg::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::perf_event_attr +pub aya_obj::generated::perf_event_attr::__bindgen_anon_1: aya_obj::generated::perf_event_attr__bindgen_ty_1 +pub aya_obj::generated::perf_event_attr::__bindgen_anon_2: aya_obj::generated::perf_event_attr__bindgen_ty_2 +pub aya_obj::generated::perf_event_attr::__bindgen_anon_3: aya_obj::generated::perf_event_attr__bindgen_ty_3 +pub aya_obj::generated::perf_event_attr::__bindgen_anon_4: aya_obj::generated::perf_event_attr__bindgen_ty_4 +pub aya_obj::generated::perf_event_attr::__reserved_2: aya_obj::generated::__u16 +pub aya_obj::generated::perf_event_attr::__reserved_3: aya_obj::generated::__u32 +pub aya_obj::generated::perf_event_attr::_bitfield_1: aya_obj::generated::__BindgenBitfieldUnit<[u8; 8]> +pub aya_obj::generated::perf_event_attr::_bitfield_align_1: [u32; 0] +pub aya_obj::generated::perf_event_attr::aux_sample_size: aya_obj::generated::__u32 +pub aya_obj::generated::perf_event_attr::aux_watermark: aya_obj::generated::__u32 +pub aya_obj::generated::perf_event_attr::bp_type: aya_obj::generated::__u32 +pub aya_obj::generated::perf_event_attr::branch_sample_type: aya_obj::generated::__u64 +pub aya_obj::generated::perf_event_attr::clockid: aya_obj::generated::__s32 +pub aya_obj::generated::perf_event_attr::config: aya_obj::generated::__u64 +pub aya_obj::generated::perf_event_attr::config3: aya_obj::generated::__u64 +pub aya_obj::generated::perf_event_attr::read_format: aya_obj::generated::__u64 +pub aya_obj::generated::perf_event_attr::sample_max_stack: aya_obj::generated::__u16 +pub aya_obj::generated::perf_event_attr::sample_regs_intr: aya_obj::generated::__u64 +pub aya_obj::generated::perf_event_attr::sample_regs_user: aya_obj::generated::__u64 +pub aya_obj::generated::perf_event_attr::sample_stack_user: aya_obj::generated::__u32 +pub aya_obj::generated::perf_event_attr::sample_type: aya_obj::generated::__u64 +pub aya_obj::generated::perf_event_attr::sig_data: aya_obj::generated::__u64 +pub aya_obj::generated::perf_event_attr::size: aya_obj::generated::__u32 +pub aya_obj::generated::perf_event_attr::type_: aya_obj::generated::__u32 +impl aya_obj::generated::perf_event_attr +pub fn aya_obj::generated::perf_event_attr::__reserved_1(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_attr::aux_output(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_attr::bpf_event(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_attr::build_id(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_attr::cgroup(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_attr::comm(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_attr::comm_exec(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_attr::context_switch(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_attr::disabled(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_attr::enable_on_exec(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_attr::exclude_callchain_kernel(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_attr::exclude_callchain_user(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_attr::exclude_guest(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_attr::exclude_host(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_attr::exclude_hv(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_attr::exclude_idle(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_attr::exclude_kernel(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_attr::exclude_user(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_attr::exclusive(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_attr::freq(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_attr::inherit(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_attr::inherit_stat(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_attr::inherit_thread(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_attr::ksymbol(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_attr::mmap(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_attr::mmap2(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_attr::mmap_data(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_attr::namespaces(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_attr::new_bitfield_1(disabled: aya_obj::generated::__u64, inherit: aya_obj::generated::__u64, pinned: aya_obj::generated::__u64, exclusive: aya_obj::generated::__u64, exclude_user: aya_obj::generated::__u64, exclude_kernel: aya_obj::generated::__u64, exclude_hv: aya_obj::generated::__u64, exclude_idle: aya_obj::generated::__u64, mmap: aya_obj::generated::__u64, comm: aya_obj::generated::__u64, freq: aya_obj::generated::__u64, inherit_stat: aya_obj::generated::__u64, enable_on_exec: aya_obj::generated::__u64, task: aya_obj::generated::__u64, watermark: aya_obj::generated::__u64, precise_ip: aya_obj::generated::__u64, mmap_data: aya_obj::generated::__u64, sample_id_all: aya_obj::generated::__u64, exclude_host: aya_obj::generated::__u64, exclude_guest: aya_obj::generated::__u64, exclude_callchain_kernel: aya_obj::generated::__u64, exclude_callchain_user: aya_obj::generated::__u64, mmap2: aya_obj::generated::__u64, comm_exec: aya_obj::generated::__u64, use_clockid: aya_obj::generated::__u64, context_switch: aya_obj::generated::__u64, write_backward: aya_obj::generated::__u64, namespaces: aya_obj::generated::__u64, ksymbol: aya_obj::generated::__u64, bpf_event: aya_obj::generated::__u64, aux_output: aya_obj::generated::__u64, cgroup: aya_obj::generated::__u64, text_poke: aya_obj::generated::__u64, build_id: aya_obj::generated::__u64, inherit_thread: aya_obj::generated::__u64, remove_on_exec: aya_obj::generated::__u64, sigtrap: aya_obj::generated::__u64, __reserved_1: aya_obj::generated::__u64) -> aya_obj::generated::__BindgenBitfieldUnit<[u8; 8]> +pub fn aya_obj::generated::perf_event_attr::pinned(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_attr::precise_ip(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_attr::remove_on_exec(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_attr::sample_id_all(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_attr::set___reserved_1(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_attr::set_aux_output(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_attr::set_bpf_event(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_attr::set_build_id(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_attr::set_cgroup(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_attr::set_comm(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_attr::set_comm_exec(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_attr::set_context_switch(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_attr::set_disabled(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_attr::set_enable_on_exec(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_attr::set_exclude_callchain_kernel(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_attr::set_exclude_callchain_user(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_attr::set_exclude_guest(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_attr::set_exclude_host(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_attr::set_exclude_hv(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_attr::set_exclude_idle(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_attr::set_exclude_kernel(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_attr::set_exclude_user(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_attr::set_exclusive(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_attr::set_freq(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_attr::set_inherit(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_attr::set_inherit_stat(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_attr::set_inherit_thread(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_attr::set_ksymbol(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_attr::set_mmap(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_attr::set_mmap2(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_attr::set_mmap_data(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_attr::set_namespaces(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_attr::set_pinned(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_attr::set_precise_ip(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_attr::set_remove_on_exec(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_attr::set_sample_id_all(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_attr::set_sigtrap(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_attr::set_task(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_attr::set_text_poke(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_attr::set_use_clockid(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_attr::set_watermark(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_attr::set_write_backward(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_attr::sigtrap(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_attr::task(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_attr::text_poke(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_attr::use_clockid(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_attr::watermark(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_attr::write_backward(&self) -> aya_obj::generated::__u64 +impl core::clone::Clone for aya_obj::generated::perf_event_attr +pub fn aya_obj::generated::perf_event_attr::clone(&self) -> aya_obj::generated::perf_event_attr +impl core::marker::Copy for aya_obj::generated::perf_event_attr +impl core::marker::Send for aya_obj::generated::perf_event_attr +impl core::marker::Sync for aya_obj::generated::perf_event_attr +impl core::marker::Unpin for aya_obj::generated::perf_event_attr +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::perf_event_attr +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::perf_event_attr +impl core::convert::Into for aya_obj::generated::perf_event_attr where U: core::convert::From +pub fn aya_obj::generated::perf_event_attr::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::perf_event_attr where U: core::convert::Into +pub type aya_obj::generated::perf_event_attr::Error = core::convert::Infallible +pub fn aya_obj::generated::perf_event_attr::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::perf_event_attr where U: core::convert::TryFrom +pub type aya_obj::generated::perf_event_attr::Error = >::Error +pub fn aya_obj::generated::perf_event_attr::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::perf_event_attr where T: core::clone::Clone +pub type aya_obj::generated::perf_event_attr::Owned = T +pub fn aya_obj::generated::perf_event_attr::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::perf_event_attr::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::perf_event_attr where T: 'static + core::marker::Sized +pub fn aya_obj::generated::perf_event_attr::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::perf_event_attr where T: core::marker::Sized +pub fn aya_obj::generated::perf_event_attr::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::perf_event_attr where T: core::marker::Sized +pub fn aya_obj::generated::perf_event_attr::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::perf_event_attr +pub fn aya_obj::generated::perf_event_attr::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::perf_event_header +pub aya_obj::generated::perf_event_header::misc: aya_obj::generated::__u16 +pub aya_obj::generated::perf_event_header::size: aya_obj::generated::__u16 +pub aya_obj::generated::perf_event_header::type_: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::perf_event_header +pub fn aya_obj::generated::perf_event_header::clone(&self) -> aya_obj::generated::perf_event_header +impl core::fmt::Debug for aya_obj::generated::perf_event_header +pub fn aya_obj::generated::perf_event_header::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::perf_event_header +impl core::marker::Send for aya_obj::generated::perf_event_header +impl core::marker::Sync for aya_obj::generated::perf_event_header +impl core::marker::Unpin for aya_obj::generated::perf_event_header +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::perf_event_header +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::perf_event_header +impl core::convert::Into for aya_obj::generated::perf_event_header where U: core::convert::From +pub fn aya_obj::generated::perf_event_header::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::perf_event_header where U: core::convert::Into +pub type aya_obj::generated::perf_event_header::Error = core::convert::Infallible +pub fn aya_obj::generated::perf_event_header::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::perf_event_header where U: core::convert::TryFrom +pub type aya_obj::generated::perf_event_header::Error = >::Error +pub fn aya_obj::generated::perf_event_header::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::perf_event_header where T: core::clone::Clone +pub type aya_obj::generated::perf_event_header::Owned = T +pub fn aya_obj::generated::perf_event_header::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::perf_event_header::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::perf_event_header where T: 'static + core::marker::Sized +pub fn aya_obj::generated::perf_event_header::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::perf_event_header where T: core::marker::Sized +pub fn aya_obj::generated::perf_event_header::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::perf_event_header where T: core::marker::Sized +pub fn aya_obj::generated::perf_event_header::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::perf_event_header +pub fn aya_obj::generated::perf_event_header::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::perf_event_mmap_page +pub aya_obj::generated::perf_event_mmap_page::__bindgen_anon_1: aya_obj::generated::perf_event_mmap_page__bindgen_ty_1 +pub aya_obj::generated::perf_event_mmap_page::__reserved: [aya_obj::generated::__u8; 928] +pub aya_obj::generated::perf_event_mmap_page::__reserved_1: aya_obj::generated::__u32 +pub aya_obj::generated::perf_event_mmap_page::aux_head: aya_obj::generated::__u64 +pub aya_obj::generated::perf_event_mmap_page::aux_offset: aya_obj::generated::__u64 +pub aya_obj::generated::perf_event_mmap_page::aux_size: aya_obj::generated::__u64 +pub aya_obj::generated::perf_event_mmap_page::aux_tail: aya_obj::generated::__u64 +pub aya_obj::generated::perf_event_mmap_page::compat_version: aya_obj::generated::__u32 +pub aya_obj::generated::perf_event_mmap_page::data_head: aya_obj::generated::__u64 +pub aya_obj::generated::perf_event_mmap_page::data_offset: aya_obj::generated::__u64 +pub aya_obj::generated::perf_event_mmap_page::data_size: aya_obj::generated::__u64 +pub aya_obj::generated::perf_event_mmap_page::data_tail: aya_obj::generated::__u64 +pub aya_obj::generated::perf_event_mmap_page::index: aya_obj::generated::__u32 +pub aya_obj::generated::perf_event_mmap_page::lock: aya_obj::generated::__u32 +pub aya_obj::generated::perf_event_mmap_page::offset: aya_obj::generated::__s64 +pub aya_obj::generated::perf_event_mmap_page::pmc_width: aya_obj::generated::__u16 +pub aya_obj::generated::perf_event_mmap_page::size: aya_obj::generated::__u32 +pub aya_obj::generated::perf_event_mmap_page::time_cycles: aya_obj::generated::__u64 +pub aya_obj::generated::perf_event_mmap_page::time_enabled: aya_obj::generated::__u64 +pub aya_obj::generated::perf_event_mmap_page::time_mask: aya_obj::generated::__u64 +pub aya_obj::generated::perf_event_mmap_page::time_mult: aya_obj::generated::__u32 +pub aya_obj::generated::perf_event_mmap_page::time_offset: aya_obj::generated::__u64 +pub aya_obj::generated::perf_event_mmap_page::time_running: aya_obj::generated::__u64 +pub aya_obj::generated::perf_event_mmap_page::time_shift: aya_obj::generated::__u16 +pub aya_obj::generated::perf_event_mmap_page::time_zero: aya_obj::generated::__u64 +pub aya_obj::generated::perf_event_mmap_page::version: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::perf_event_mmap_page +pub fn aya_obj::generated::perf_event_mmap_page::clone(&self) -> aya_obj::generated::perf_event_mmap_page +impl core::marker::Copy for aya_obj::generated::perf_event_mmap_page +impl core::marker::Send for aya_obj::generated::perf_event_mmap_page +impl core::marker::Sync for aya_obj::generated::perf_event_mmap_page +impl core::marker::Unpin for aya_obj::generated::perf_event_mmap_page +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::perf_event_mmap_page +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::perf_event_mmap_page +impl core::convert::Into for aya_obj::generated::perf_event_mmap_page where U: core::convert::From +pub fn aya_obj::generated::perf_event_mmap_page::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::perf_event_mmap_page where U: core::convert::Into +pub type aya_obj::generated::perf_event_mmap_page::Error = core::convert::Infallible +pub fn aya_obj::generated::perf_event_mmap_page::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::perf_event_mmap_page where U: core::convert::TryFrom +pub type aya_obj::generated::perf_event_mmap_page::Error = >::Error +pub fn aya_obj::generated::perf_event_mmap_page::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::perf_event_mmap_page where T: core::clone::Clone +pub type aya_obj::generated::perf_event_mmap_page::Owned = T +pub fn aya_obj::generated::perf_event_mmap_page::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::perf_event_mmap_page::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::perf_event_mmap_page where T: 'static + core::marker::Sized +pub fn aya_obj::generated::perf_event_mmap_page::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::perf_event_mmap_page where T: core::marker::Sized +pub fn aya_obj::generated::perf_event_mmap_page::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::perf_event_mmap_page where T: core::marker::Sized +pub fn aya_obj::generated::perf_event_mmap_page::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::perf_event_mmap_page +pub fn aya_obj::generated::perf_event_mmap_page::from(t: T) -> T +#[repr(C)] #[repr(align(8))] pub struct aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1 +pub aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::_bitfield_1: aya_obj::generated::__BindgenBitfieldUnit<[u8; 8]> +pub aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::_bitfield_align_1: [u64; 0] +impl aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1 +pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::cap_____res(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::cap_bit0(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::cap_bit0_is_deprecated(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::cap_user_rdpmc(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::cap_user_time(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::cap_user_time_short(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::cap_user_time_zero(&self) -> aya_obj::generated::__u64 +pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::new_bitfield_1(cap_bit0: aya_obj::generated::__u64, cap_bit0_is_deprecated: aya_obj::generated::__u64, cap_user_rdpmc: aya_obj::generated::__u64, cap_user_time: aya_obj::generated::__u64, cap_user_time_zero: aya_obj::generated::__u64, cap_user_time_short: aya_obj::generated::__u64, cap_____res: aya_obj::generated::__u64) -> aya_obj::generated::__BindgenBitfieldUnit<[u8; 8]> +pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::set_cap_____res(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::set_cap_bit0(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::set_cap_bit0_is_deprecated(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::set_cap_user_rdpmc(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::set_cap_user_time(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::set_cap_user_time_short(&mut self, val: aya_obj::generated::__u64) +pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::set_cap_user_time_zero(&mut self, val: aya_obj::generated::__u64) +impl core::clone::Clone for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1 +pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::clone(&self) -> aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1 +impl core::fmt::Debug for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1 +pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1 +impl core::marker::Send for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1 +impl core::marker::Sync for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1 +impl core::marker::Unpin for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1 +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1 +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1 +impl core::convert::Into for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1 where U: core::convert::From +pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1 where U: core::convert::Into +pub type aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::Error = core::convert::Infallible +pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1 where U: core::convert::TryFrom +pub type aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::Error = >::Error +pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1 where T: core::clone::Clone +pub type aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::Owned = T +pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1 where T: 'static + core::marker::Sized +pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1 where T: core::marker::Sized +pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1 +pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::from(t: T) -> T +#[repr(C)] pub struct aya_obj::generated::tcmsg +pub aya_obj::generated::tcmsg::tcm__pad1: core::ffi::c_uchar +pub aya_obj::generated::tcmsg::tcm__pad2: core::ffi::c_ushort +pub aya_obj::generated::tcmsg::tcm_family: core::ffi::c_uchar +pub aya_obj::generated::tcmsg::tcm_handle: aya_obj::generated::__u32 +pub aya_obj::generated::tcmsg::tcm_ifindex: core::ffi::c_int +pub aya_obj::generated::tcmsg::tcm_info: aya_obj::generated::__u32 +pub aya_obj::generated::tcmsg::tcm_parent: aya_obj::generated::__u32 +impl core::clone::Clone for aya_obj::generated::tcmsg +pub fn aya_obj::generated::tcmsg::clone(&self) -> aya_obj::generated::tcmsg +impl core::fmt::Debug for aya_obj::generated::tcmsg +pub fn aya_obj::generated::tcmsg::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::generated::tcmsg +impl core::marker::Send for aya_obj::generated::tcmsg +impl core::marker::Sync for aya_obj::generated::tcmsg +impl core::marker::Unpin for aya_obj::generated::tcmsg +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::tcmsg +impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::tcmsg +impl core::convert::Into for aya_obj::generated::tcmsg where U: core::convert::From +pub fn aya_obj::generated::tcmsg::into(self) -> U +impl core::convert::TryFrom for aya_obj::generated::tcmsg where U: core::convert::Into +pub type aya_obj::generated::tcmsg::Error = core::convert::Infallible +pub fn aya_obj::generated::tcmsg::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::generated::tcmsg where U: core::convert::TryFrom +pub type aya_obj::generated::tcmsg::Error = >::Error +pub fn aya_obj::generated::tcmsg::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::generated::tcmsg where T: core::clone::Clone +pub type aya_obj::generated::tcmsg::Owned = T +pub fn aya_obj::generated::tcmsg::clone_into(&self, target: &mut T) +pub fn aya_obj::generated::tcmsg::to_owned(&self) -> T +impl core::any::Any for aya_obj::generated::tcmsg where T: 'static + core::marker::Sized +pub fn aya_obj::generated::tcmsg::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::generated::tcmsg where T: core::marker::Sized +pub fn aya_obj::generated::tcmsg::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::generated::tcmsg where T: core::marker::Sized +pub fn aya_obj::generated::tcmsg::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::generated::tcmsg +pub fn aya_obj::generated::tcmsg::from(t: T) -> T +pub const aya_obj::generated::AYA_PERF_EVENT_IOC_DISABLE: core::ffi::c_int = 9_217i32 +pub const aya_obj::generated::AYA_PERF_EVENT_IOC_ENABLE: core::ffi::c_int = 9_216i32 +pub const aya_obj::generated::AYA_PERF_EVENT_IOC_SET_BPF: core::ffi::c_int = 1_074_013_192i32 +pub const aya_obj::generated::BPF_ALU: u32 = 4u32 +pub const aya_obj::generated::BPF_ALU64: u32 = 7u32 +pub const aya_obj::generated::BPF_ANY: aya_obj::generated::_bindgen_ty_2 = 0u32 +pub const aya_obj::generated::BPF_B: u32 = 16u32 +pub const aya_obj::generated::BPF_CALL: u32 = 128u32 +pub const aya_obj::generated::BPF_DW: u32 = 24u32 +pub const aya_obj::generated::BPF_EXIST: aya_obj::generated::_bindgen_ty_2 = 2u32 +pub const aya_obj::generated::BPF_F_ADJ_ROOM_DECAP_L3_IPV4: aya_obj::generated::_bindgen_ty_15 = 128u32 +pub const aya_obj::generated::BPF_F_ADJ_ROOM_DECAP_L3_IPV6: aya_obj::generated::_bindgen_ty_15 = 256u32 +pub const aya_obj::generated::BPF_F_ADJ_ROOM_ENCAP_L2_ETH: aya_obj::generated::_bindgen_ty_15 = 64u32 +pub const aya_obj::generated::BPF_F_ADJ_ROOM_ENCAP_L3_IPV4: aya_obj::generated::_bindgen_ty_15 = 2u32 +pub const aya_obj::generated::BPF_F_ADJ_ROOM_ENCAP_L3_IPV6: aya_obj::generated::_bindgen_ty_15 = 4u32 +pub const aya_obj::generated::BPF_F_ADJ_ROOM_ENCAP_L4_GRE: aya_obj::generated::_bindgen_ty_15 = 8u32 +pub const aya_obj::generated::BPF_F_ADJ_ROOM_ENCAP_L4_UDP: aya_obj::generated::_bindgen_ty_15 = 16u32 +pub const aya_obj::generated::BPF_F_ADJ_ROOM_FIXED_GSO: aya_obj::generated::_bindgen_ty_15 = 1u32 +pub const aya_obj::generated::BPF_F_ADJ_ROOM_NO_CSUM_RESET: aya_obj::generated::_bindgen_ty_15 = 32u32 +pub const aya_obj::generated::BPF_F_ALLOW_MULTI: u32 = 2u32 +pub const aya_obj::generated::BPF_F_ALLOW_OVERRIDE: u32 = 1u32 +pub const aya_obj::generated::BPF_F_ANY_ALIGNMENT: u32 = 2u32 +pub const aya_obj::generated::BPF_F_BPRM_SECUREEXEC: aya_obj::generated::_bindgen_ty_24 = 1u32 +pub const aya_obj::generated::BPF_F_BROADCAST: aya_obj::generated::_bindgen_ty_25 = 8u32 +pub const aya_obj::generated::BPF_F_CLONE: aya_obj::generated::_bindgen_ty_3 = 512u32 +pub const aya_obj::generated::BPF_F_CTXLEN_MASK: aya_obj::generated::_bindgen_ty_12 = 4_503_595_332_403_200u64 +pub const aya_obj::generated::BPF_F_CURRENT_CPU: aya_obj::generated::_bindgen_ty_12 = 4_294_967_295u64 +pub const aya_obj::generated::BPF_F_CURRENT_NETNS: aya_obj::generated::_bindgen_ty_13 = -1i32 +pub const aya_obj::generated::BPF_F_DONT_FRAGMENT: aya_obj::generated::_bindgen_ty_10 = 4u32 +pub const aya_obj::generated::BPF_F_EXCLUDE_INGRESS: aya_obj::generated::_bindgen_ty_25 = 16u32 +pub const aya_obj::generated::BPF_F_FAST_STACK_CMP: aya_obj::generated::_bindgen_ty_9 = 512u32 +pub const aya_obj::generated::BPF_F_GET_BRANCH_RECORDS_SIZE: aya_obj::generated::_bindgen_ty_19 = 1u32 +pub const aya_obj::generated::BPF_F_HDR_FIELD_MASK: aya_obj::generated::_bindgen_ty_5 = 15u32 +pub const aya_obj::generated::BPF_F_INDEX_MASK: aya_obj::generated::_bindgen_ty_12 = 4_294_967_295u64 +pub const aya_obj::generated::BPF_F_INGRESS: aya_obj::generated::_bindgen_ty_7 = 1u32 +pub const aya_obj::generated::BPF_F_INNER_MAP: aya_obj::generated::_bindgen_ty_3 = 4_096u32 +pub const aya_obj::generated::BPF_F_INVALIDATE_HASH: aya_obj::generated::_bindgen_ty_4 = 2u32 +pub const aya_obj::generated::BPF_F_KPROBE_MULTI_RETURN: u32 = 1u32 +pub const aya_obj::generated::BPF_F_LINK: aya_obj::generated::_bindgen_ty_3 = 8_192u32 +pub const aya_obj::generated::BPF_F_LOCK: aya_obj::generated::_bindgen_ty_2 = 4u32 +pub const aya_obj::generated::BPF_F_MARK_ENFORCE: aya_obj::generated::_bindgen_ty_6 = 64u32 +pub const aya_obj::generated::BPF_F_MARK_MANGLED_0: aya_obj::generated::_bindgen_ty_6 = 32u32 +pub const aya_obj::generated::BPF_F_MMAPABLE: aya_obj::generated::_bindgen_ty_3 = 1_024u32 +pub const aya_obj::generated::BPF_F_NO_COMMON_LRU: aya_obj::generated::_bindgen_ty_3 = 2u32 +pub const aya_obj::generated::BPF_F_NO_PREALLOC: aya_obj::generated::_bindgen_ty_3 = 1u32 +pub const aya_obj::generated::BPF_F_NO_TUNNEL_KEY: aya_obj::generated::_bindgen_ty_10 = 16u32 +pub const aya_obj::generated::BPF_F_NUMA_NODE: aya_obj::generated::_bindgen_ty_3 = 4u32 +pub const aya_obj::generated::BPF_F_PATH_FD: aya_obj::generated::_bindgen_ty_3 = 16_384u32 +pub const aya_obj::generated::BPF_F_PRESERVE_ELEMS: aya_obj::generated::_bindgen_ty_3 = 2_048u32 +pub const aya_obj::generated::BPF_F_PSEUDO_HDR: aya_obj::generated::_bindgen_ty_6 = 16u32 +pub const aya_obj::generated::BPF_F_QUERY_EFFECTIVE: u32 = 1u32 +pub const aya_obj::generated::BPF_F_RDONLY: aya_obj::generated::_bindgen_ty_3 = 8u32 +pub const aya_obj::generated::BPF_F_RDONLY_PROG: aya_obj::generated::_bindgen_ty_3 = 128u32 +pub const aya_obj::generated::BPF_F_RECOMPUTE_CSUM: aya_obj::generated::_bindgen_ty_4 = 1u32 +pub const aya_obj::generated::BPF_F_REPLACE: u32 = 4u32 +pub const aya_obj::generated::BPF_F_REUSE_STACKID: aya_obj::generated::_bindgen_ty_9 = 1_024u32 +pub const aya_obj::generated::BPF_F_SEQ_NUMBER: aya_obj::generated::_bindgen_ty_10 = 8u32 +pub const aya_obj::generated::BPF_F_SKIP_FIELD_MASK: aya_obj::generated::_bindgen_ty_9 = 255u32 +pub const aya_obj::generated::BPF_F_SLEEPABLE: u32 = 16u32 +pub const aya_obj::generated::BPF_F_STACK_BUILD_ID: aya_obj::generated::_bindgen_ty_3 = 32u32 +pub const aya_obj::generated::BPF_F_STRICT_ALIGNMENT: u32 = 1u32 +pub const aya_obj::generated::BPF_F_SYSCTL_BASE_NAME: aya_obj::generated::_bindgen_ty_17 = 1u32 +pub const aya_obj::generated::BPF_F_TEST_RND_HI32: u32 = 4u32 +pub const aya_obj::generated::BPF_F_TEST_RUN_ON_CPU: u32 = 1u32 +pub const aya_obj::generated::BPF_F_TEST_STATE_FREQ: u32 = 8u32 +pub const aya_obj::generated::BPF_F_TEST_XDP_LIVE_FRAMES: u32 = 2u32 +pub const aya_obj::generated::BPF_F_TIMER_ABS: aya_obj::generated::_bindgen_ty_39 = 1u32 +pub const aya_obj::generated::BPF_F_TUNINFO_FLAGS: aya_obj::generated::_bindgen_ty_11 = 16u32 +pub const aya_obj::generated::BPF_F_TUNINFO_IPV6: aya_obj::generated::_bindgen_ty_8 = 1u32 +pub const aya_obj::generated::BPF_F_USER_BUILD_ID: aya_obj::generated::_bindgen_ty_9 = 2_048u32 +pub const aya_obj::generated::BPF_F_USER_STACK: aya_obj::generated::_bindgen_ty_9 = 256u32 +pub const aya_obj::generated::BPF_F_WRONLY: aya_obj::generated::_bindgen_ty_3 = 16u32 +pub const aya_obj::generated::BPF_F_WRONLY_PROG: aya_obj::generated::_bindgen_ty_3 = 256u32 +pub const aya_obj::generated::BPF_F_XDP_DEV_BOUND_ONLY: u32 = 64u32 +pub const aya_obj::generated::BPF_F_XDP_HAS_FRAGS: u32 = 32u32 +pub const aya_obj::generated::BPF_F_ZERO_CSUM_TX: aya_obj::generated::_bindgen_ty_10 = 2u32 +pub const aya_obj::generated::BPF_F_ZERO_SEED: aya_obj::generated::_bindgen_ty_3 = 64u32 +pub const aya_obj::generated::BPF_H: u32 = 8u32 +pub const aya_obj::generated::BPF_JMP: u32 = 5u32 +pub const aya_obj::generated::BPF_K: u32 = 0u32 +pub const aya_obj::generated::BPF_LD: u32 = 0u32 +pub const aya_obj::generated::BPF_LDX: u32 = 1u32 +pub const aya_obj::generated::BPF_NOEXIST: aya_obj::generated::_bindgen_ty_2 = 1u32 +pub const aya_obj::generated::BPF_PSEUDO_BTF_ID: u32 = 3u32 +pub const aya_obj::generated::BPF_PSEUDO_CALL: u32 = 1u32 +pub const aya_obj::generated::BPF_PSEUDO_FUNC: u32 = 4u32 +pub const aya_obj::generated::BPF_PSEUDO_KFUNC_CALL: u32 = 2u32 +pub const aya_obj::generated::BPF_PSEUDO_MAP_FD: u32 = 1u32 +pub const aya_obj::generated::BPF_PSEUDO_MAP_IDX: u32 = 5u32 +pub const aya_obj::generated::BPF_PSEUDO_MAP_IDX_VALUE: u32 = 6u32 +pub const aya_obj::generated::BPF_PSEUDO_MAP_VALUE: u32 = 2u32 +pub const aya_obj::generated::BPF_RINGBUF_BUSY_BIT: aya_obj::generated::_bindgen_ty_22 = 2_147_483_648u32 +pub const aya_obj::generated::BPF_RINGBUF_DISCARD_BIT: aya_obj::generated::_bindgen_ty_22 = 1_073_741_824u32 +pub const aya_obj::generated::BPF_RINGBUF_HDR_SZ: aya_obj::generated::_bindgen_ty_22 = 8u32 +pub const aya_obj::generated::BPF_ST: u32 = 2u32 +pub const aya_obj::generated::BPF_STX: u32 = 3u32 +pub const aya_obj::generated::BPF_W: u32 = 0u32 +pub const aya_obj::generated::BTF_INT_BOOL: u32 = 4u32 +pub const aya_obj::generated::BTF_INT_CHAR: u32 = 2u32 +pub const aya_obj::generated::BTF_INT_SIGNED: u32 = 1u32 +pub const aya_obj::generated::BTF_KIND_ARRAY: aya_obj::generated::_bindgen_ty_40 = 3u32 +pub const aya_obj::generated::BTF_KIND_CONST: aya_obj::generated::_bindgen_ty_40 = 10u32 +pub const aya_obj::generated::BTF_KIND_DATASEC: aya_obj::generated::_bindgen_ty_40 = 15u32 +pub const aya_obj::generated::BTF_KIND_DECL_TAG: aya_obj::generated::_bindgen_ty_40 = 17u32 +pub const aya_obj::generated::BTF_KIND_ENUM: aya_obj::generated::_bindgen_ty_40 = 6u32 +pub const aya_obj::generated::BTF_KIND_ENUM64: aya_obj::generated::_bindgen_ty_40 = 19u32 +pub const aya_obj::generated::BTF_KIND_FLOAT: aya_obj::generated::_bindgen_ty_40 = 16u32 +pub const aya_obj::generated::BTF_KIND_FUNC: aya_obj::generated::_bindgen_ty_40 = 12u32 +pub const aya_obj::generated::BTF_KIND_FUNC_PROTO: aya_obj::generated::_bindgen_ty_40 = 13u32 +pub const aya_obj::generated::BTF_KIND_FWD: aya_obj::generated::_bindgen_ty_40 = 7u32 +pub const aya_obj::generated::BTF_KIND_INT: aya_obj::generated::_bindgen_ty_40 = 1u32 +pub const aya_obj::generated::BTF_KIND_MAX: aya_obj::generated::_bindgen_ty_40 = 19u32 +pub const aya_obj::generated::BTF_KIND_PTR: aya_obj::generated::_bindgen_ty_40 = 2u32 +pub const aya_obj::generated::BTF_KIND_RESTRICT: aya_obj::generated::_bindgen_ty_40 = 11u32 +pub const aya_obj::generated::BTF_KIND_STRUCT: aya_obj::generated::_bindgen_ty_40 = 4u32 +pub const aya_obj::generated::BTF_KIND_TYPEDEF: aya_obj::generated::_bindgen_ty_40 = 8u32 +pub const aya_obj::generated::BTF_KIND_TYPE_TAG: aya_obj::generated::_bindgen_ty_40 = 18u32 +pub const aya_obj::generated::BTF_KIND_UNION: aya_obj::generated::_bindgen_ty_40 = 5u32 +pub const aya_obj::generated::BTF_KIND_UNKN: aya_obj::generated::_bindgen_ty_40 = 0u32 +pub const aya_obj::generated::BTF_KIND_VAR: aya_obj::generated::_bindgen_ty_40 = 14u32 +pub const aya_obj::generated::BTF_KIND_VOLATILE: aya_obj::generated::_bindgen_ty_40 = 9u32 +pub const aya_obj::generated::BTF_VAR_GLOBAL_ALLOCATED: aya_obj::generated::_bindgen_ty_41 = 1u32 +pub const aya_obj::generated::BTF_VAR_GLOBAL_EXTERN: aya_obj::generated::_bindgen_ty_41 = 2u32 +pub const aya_obj::generated::BTF_VAR_STATIC: aya_obj::generated::_bindgen_ty_41 = 0u32 +pub const aya_obj::generated::IFLA_XDP_ATTACHED: aya_obj::generated::_bindgen_ty_90 = 2u32 +pub const aya_obj::generated::IFLA_XDP_DRV_PROG_ID: aya_obj::generated::_bindgen_ty_90 = 5u32 +pub const aya_obj::generated::IFLA_XDP_EXPECTED_FD: aya_obj::generated::_bindgen_ty_90 = 8u32 +pub const aya_obj::generated::IFLA_XDP_FD: aya_obj::generated::_bindgen_ty_90 = 1u32 +pub const aya_obj::generated::IFLA_XDP_FLAGS: aya_obj::generated::_bindgen_ty_90 = 3u32 +pub const aya_obj::generated::IFLA_XDP_HW_PROG_ID: aya_obj::generated::_bindgen_ty_90 = 7u32 +pub const aya_obj::generated::IFLA_XDP_PROG_ID: aya_obj::generated::_bindgen_ty_90 = 4u32 +pub const aya_obj::generated::IFLA_XDP_SKB_PROG_ID: aya_obj::generated::_bindgen_ty_90 = 6u32 +pub const aya_obj::generated::IFLA_XDP_UNSPEC: aya_obj::generated::_bindgen_ty_90 = 0u32 +pub const aya_obj::generated::NLMSG_ALIGNTO: u32 = 4u32 +pub const aya_obj::generated::NR_BTF_KINDS: aya_obj::generated::_bindgen_ty_40 = 20u32 +pub const aya_obj::generated::PERF_FLAG_FD_CLOEXEC: u32 = 8u32 +pub const aya_obj::generated::PERF_FLAG_FD_NO_GROUP: u32 = 1u32 +pub const aya_obj::generated::PERF_FLAG_FD_OUTPUT: u32 = 2u32 +pub const aya_obj::generated::PERF_FLAG_PID_CGROUP: u32 = 4u32 +pub const aya_obj::generated::PERF_MAX_CONTEXTS_PER_STACK: u32 = 8u32 +pub const aya_obj::generated::PERF_MAX_STACK_DEPTH: u32 = 127u32 +pub const aya_obj::generated::SO_ATTACH_BPF: u32 = 50u32 +pub const aya_obj::generated::SO_DETACH_BPF: u32 = 27u32 +pub const aya_obj::generated::TCA_BPF_ACT: aya_obj::generated::_bindgen_ty_159 = 1u32 +pub const aya_obj::generated::TCA_BPF_CLASSID: aya_obj::generated::_bindgen_ty_159 = 3u32 +pub const aya_obj::generated::TCA_BPF_FD: aya_obj::generated::_bindgen_ty_159 = 6u32 +pub const aya_obj::generated::TCA_BPF_FLAGS: aya_obj::generated::_bindgen_ty_159 = 8u32 +pub const aya_obj::generated::TCA_BPF_FLAGS_GEN: aya_obj::generated::_bindgen_ty_159 = 9u32 +pub const aya_obj::generated::TCA_BPF_FLAG_ACT_DIRECT: u32 = 1u32 +pub const aya_obj::generated::TCA_BPF_ID: aya_obj::generated::_bindgen_ty_159 = 11u32 +pub const aya_obj::generated::TCA_BPF_NAME: aya_obj::generated::_bindgen_ty_159 = 7u32 +pub const aya_obj::generated::TCA_BPF_OPS: aya_obj::generated::_bindgen_ty_159 = 5u32 +pub const aya_obj::generated::TCA_BPF_OPS_LEN: aya_obj::generated::_bindgen_ty_159 = 4u32 +pub const aya_obj::generated::TCA_BPF_POLICE: aya_obj::generated::_bindgen_ty_159 = 2u32 +pub const aya_obj::generated::TCA_BPF_TAG: aya_obj::generated::_bindgen_ty_159 = 10u32 +pub const aya_obj::generated::TCA_BPF_UNSPEC: aya_obj::generated::_bindgen_ty_159 = 0u32 +pub const aya_obj::generated::TCA_CHAIN: aya_obj::generated::_bindgen_ty_103 = 11u32 +pub const aya_obj::generated::TCA_DUMP_INVISIBLE: aya_obj::generated::_bindgen_ty_103 = 10u32 +pub const aya_obj::generated::TCA_EGRESS_BLOCK: aya_obj::generated::_bindgen_ty_103 = 14u32 +pub const aya_obj::generated::TCA_FCNT: aya_obj::generated::_bindgen_ty_103 = 6u32 +pub const aya_obj::generated::TCA_HW_OFFLOAD: aya_obj::generated::_bindgen_ty_103 = 12u32 +pub const aya_obj::generated::TCA_INGRESS_BLOCK: aya_obj::generated::_bindgen_ty_103 = 13u32 +pub const aya_obj::generated::TCA_KIND: aya_obj::generated::_bindgen_ty_103 = 1u32 +pub const aya_obj::generated::TCA_OPTIONS: aya_obj::generated::_bindgen_ty_103 = 2u32 +pub const aya_obj::generated::TCA_PAD: aya_obj::generated::_bindgen_ty_103 = 9u32 +pub const aya_obj::generated::TCA_RATE: aya_obj::generated::_bindgen_ty_103 = 5u32 +pub const aya_obj::generated::TCA_STAB: aya_obj::generated::_bindgen_ty_103 = 8u32 +pub const aya_obj::generated::TCA_STATS: aya_obj::generated::_bindgen_ty_103 = 3u32 +pub const aya_obj::generated::TCA_STATS2: aya_obj::generated::_bindgen_ty_103 = 7u32 +pub const aya_obj::generated::TCA_UNSPEC: aya_obj::generated::_bindgen_ty_103 = 0u32 +pub const aya_obj::generated::TCA_XSTATS: aya_obj::generated::_bindgen_ty_103 = 4u32 +pub const aya_obj::generated::TC_H_CLSACT: u32 = 4_294_967_281u32 +pub const aya_obj::generated::TC_H_INGRESS: u32 = 4_294_967_281u32 +pub const aya_obj::generated::TC_H_MAJ_MASK: u32 = 4_294_901_760u32 +pub const aya_obj::generated::TC_H_MIN_EGRESS: u32 = 65_523u32 +pub const aya_obj::generated::TC_H_MIN_INGRESS: u32 = 65_522u32 +pub const aya_obj::generated::TC_H_MIN_MASK: u32 = 65_535u32 +pub const aya_obj::generated::TC_H_MIN_PRIORITY: u32 = 65_504u32 +pub const aya_obj::generated::TC_H_ROOT: u32 = 4_294_967_295u32 +pub const aya_obj::generated::TC_H_UNSPEC: u32 = 0u32 +pub const aya_obj::generated::XDP_FLAGS_DRV_MODE: u32 = 4u32 +pub const aya_obj::generated::XDP_FLAGS_HW_MODE: u32 = 8u32 +pub const aya_obj::generated::XDP_FLAGS_MASK: u32 = 31u32 +pub const aya_obj::generated::XDP_FLAGS_MODES: u32 = 14u32 +pub const aya_obj::generated::XDP_FLAGS_REPLACE: u32 = 16u32 +pub const aya_obj::generated::XDP_FLAGS_SKB_MODE: u32 = 2u32 +pub const aya_obj::generated::XDP_FLAGS_UPDATE_IF_NOEXIST: u32 = 1u32 +pub const aya_obj::generated::__IFLA_XDP_MAX: aya_obj::generated::_bindgen_ty_90 = 9u32 +pub const aya_obj::generated::__TCA_BPF_MAX: aya_obj::generated::_bindgen_ty_159 = 12u32 +pub const aya_obj::generated::__TCA_MAX: aya_obj::generated::_bindgen_ty_103 = 15u32 +pub type aya_obj::generated::__s16 = core::ffi::c_short +pub type aya_obj::generated::__s32 = core::ffi::c_int +pub type aya_obj::generated::__s64 = core::ffi::c_longlong +pub type aya_obj::generated::__u16 = core::ffi::c_ushort +pub type aya_obj::generated::__u32 = core::ffi::c_uint +pub type aya_obj::generated::__u64 = core::ffi::c_ulonglong +pub type aya_obj::generated::__u8 = core::ffi::c_uchar +pub type aya_obj::generated::_bindgen_ty_10 = core::ffi::c_uint +pub type aya_obj::generated::_bindgen_ty_103 = core::ffi::c_uint +pub type aya_obj::generated::_bindgen_ty_11 = core::ffi::c_uint +pub type aya_obj::generated::_bindgen_ty_12 = core::ffi::c_ulong +pub type aya_obj::generated::_bindgen_ty_13 = core::ffi::c_int +pub type aya_obj::generated::_bindgen_ty_15 = core::ffi::c_uint +pub type aya_obj::generated::_bindgen_ty_159 = core::ffi::c_uint +pub type aya_obj::generated::_bindgen_ty_17 = core::ffi::c_uint +pub type aya_obj::generated::_bindgen_ty_19 = core::ffi::c_uint +pub type aya_obj::generated::_bindgen_ty_2 = core::ffi::c_uint +pub type aya_obj::generated::_bindgen_ty_22 = core::ffi::c_uint +pub type aya_obj::generated::_bindgen_ty_24 = core::ffi::c_uint +pub type aya_obj::generated::_bindgen_ty_25 = core::ffi::c_uint +pub type aya_obj::generated::_bindgen_ty_3 = core::ffi::c_uint +pub type aya_obj::generated::_bindgen_ty_39 = core::ffi::c_uint +pub type aya_obj::generated::_bindgen_ty_4 = core::ffi::c_uint +pub type aya_obj::generated::_bindgen_ty_40 = core::ffi::c_uint +pub type aya_obj::generated::_bindgen_ty_41 = core::ffi::c_uint +pub type aya_obj::generated::_bindgen_ty_5 = core::ffi::c_uint +pub type aya_obj::generated::_bindgen_ty_6 = core::ffi::c_uint +pub type aya_obj::generated::_bindgen_ty_7 = core::ffi::c_uint +pub type aya_obj::generated::_bindgen_ty_8 = core::ffi::c_uint +pub type aya_obj::generated::_bindgen_ty_9 = core::ffi::c_uint +pub type aya_obj::generated::_bindgen_ty_90 = core::ffi::c_uint +pub mod aya_obj::maps +pub enum aya_obj::maps::Map +pub aya_obj::maps::Map::Btf(aya_obj::maps::BtfMap) +pub aya_obj::maps::Map::Legacy(aya_obj::maps::LegacyMap) +impl aya_obj::maps::Map +pub fn aya_obj::maps::Map::data(&self) -> &[u8] +pub fn aya_obj::maps::Map::data_mut(&mut self) -> &mut alloc::vec::Vec +pub fn aya_obj::maps::Map::key_size(&self) -> u32 +pub fn aya_obj::maps::Map::map_flags(&self) -> u32 +pub fn aya_obj::maps::Map::map_type(&self) -> u32 +pub fn aya_obj::maps::Map::max_entries(&self) -> u32 +pub fn aya_obj::maps::Map::pinning(&self) -> aya_obj::maps::PinningType +pub fn aya_obj::maps::Map::section_index(&self) -> usize +pub fn aya_obj::maps::Map::section_kind(&self) -> aya_obj::BpfSectionKind +pub fn aya_obj::maps::Map::set_max_entries(&mut self, v: u32) +pub fn aya_obj::maps::Map::symbol_index(&self) -> core::option::Option +pub fn aya_obj::maps::Map::value_size(&self) -> u32 +impl core::clone::Clone for aya_obj::maps::Map +pub fn aya_obj::maps::Map::clone(&self) -> aya_obj::maps::Map +impl core::fmt::Debug for aya_obj::maps::Map +pub fn aya_obj::maps::Map::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::maps::Map +impl core::marker::Sync for aya_obj::maps::Map +impl core::marker::Unpin for aya_obj::maps::Map +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::maps::Map +impl core::panic::unwind_safe::UnwindSafe for aya_obj::maps::Map +impl core::convert::Into for aya_obj::maps::Map where U: core::convert::From +pub fn aya_obj::maps::Map::into(self) -> U +impl core::convert::TryFrom for aya_obj::maps::Map where U: core::convert::Into +pub type aya_obj::maps::Map::Error = core::convert::Infallible +pub fn aya_obj::maps::Map::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::maps::Map where U: core::convert::TryFrom +pub type aya_obj::maps::Map::Error = >::Error +pub fn aya_obj::maps::Map::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::maps::Map where T: core::clone::Clone +pub type aya_obj::maps::Map::Owned = T +pub fn aya_obj::maps::Map::clone_into(&self, target: &mut T) +pub fn aya_obj::maps::Map::to_owned(&self) -> T +impl core::any::Any for aya_obj::maps::Map where T: 'static + core::marker::Sized +pub fn aya_obj::maps::Map::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::maps::Map where T: core::marker::Sized +pub fn aya_obj::maps::Map::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::maps::Map where T: core::marker::Sized +pub fn aya_obj::maps::Map::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::maps::Map +pub fn aya_obj::maps::Map::from(t: T) -> T +pub enum aya_obj::maps::PinningError +pub aya_obj::maps::PinningError::Unsupported +pub aya_obj::maps::PinningError::Unsupported::pinning_type: u32 +impl core::error::Error for aya_obj::maps::PinningError +impl core::fmt::Display for aya_obj::maps::PinningError +pub fn aya_obj::maps::PinningError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::fmt::Debug for aya_obj::maps::PinningError +pub fn aya_obj::maps::PinningError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::maps::PinningError +impl core::marker::Sync for aya_obj::maps::PinningError +impl core::marker::Unpin for aya_obj::maps::PinningError +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::maps::PinningError +impl core::panic::unwind_safe::UnwindSafe for aya_obj::maps::PinningError +impl core::any::Provider for aya_obj::maps::PinningError where E: core::error::Error + core::marker::Sized +pub fn aya_obj::maps::PinningError::provide<'a>(&'a self, demand: &mut core::any::Demand<'a>) +impl core::convert::Into for aya_obj::maps::PinningError where U: core::convert::From +pub fn aya_obj::maps::PinningError::into(self) -> U +impl core::convert::TryFrom for aya_obj::maps::PinningError where U: core::convert::Into +pub type aya_obj::maps::PinningError::Error = core::convert::Infallible +pub fn aya_obj::maps::PinningError::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::maps::PinningError where U: core::convert::TryFrom +pub type aya_obj::maps::PinningError::Error = >::Error +pub fn aya_obj::maps::PinningError::try_into(self) -> core::result::Result>::Error> +impl alloc::string::ToString for aya_obj::maps::PinningError where T: core::fmt::Display + core::marker::Sized +pub fn aya_obj::maps::PinningError::to_string(&self) -> alloc::string::String +impl core::any::Any for aya_obj::maps::PinningError where T: 'static + core::marker::Sized +pub fn aya_obj::maps::PinningError::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::maps::PinningError where T: core::marker::Sized +pub fn aya_obj::maps::PinningError::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::maps::PinningError where T: core::marker::Sized +pub fn aya_obj::maps::PinningError::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::maps::PinningError +pub fn aya_obj::maps::PinningError::from(t: T) -> T +#[repr(u32)] pub enum aya_obj::maps::PinningType +pub aya_obj::maps::PinningType::ByName = 1 +pub aya_obj::maps::PinningType::None = 0 +impl core::convert::TryFrom for aya_obj::maps::PinningType +pub type aya_obj::maps::PinningType::Error = aya_obj::maps::PinningError +pub fn aya_obj::maps::PinningType::try_from(value: u32) -> core::result::Result +impl core::clone::Clone for aya_obj::maps::PinningType +pub fn aya_obj::maps::PinningType::clone(&self) -> aya_obj::maps::PinningType +impl core::cmp::Eq for aya_obj::maps::PinningType +impl core::cmp::PartialEq for aya_obj::maps::PinningType +pub fn aya_obj::maps::PinningType::eq(&self, other: &aya_obj::maps::PinningType) -> bool +impl core::default::Default for aya_obj::maps::PinningType +pub fn aya_obj::maps::PinningType::default() -> aya_obj::maps::PinningType +impl core::fmt::Debug for aya_obj::maps::PinningType +pub fn aya_obj::maps::PinningType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::maps::PinningType +impl core::marker::StructuralEq for aya_obj::maps::PinningType +impl core::marker::StructuralPartialEq for aya_obj::maps::PinningType +impl core::marker::Send for aya_obj::maps::PinningType +impl core::marker::Sync for aya_obj::maps::PinningType +impl core::marker::Unpin for aya_obj::maps::PinningType +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::maps::PinningType +impl core::panic::unwind_safe::UnwindSafe for aya_obj::maps::PinningType +impl core::convert::Into for aya_obj::maps::PinningType where U: core::convert::From +pub fn aya_obj::maps::PinningType::into(self) -> U +impl core::convert::TryFrom for aya_obj::maps::PinningType where U: core::convert::Into +pub type aya_obj::maps::PinningType::Error = core::convert::Infallible +pub fn aya_obj::maps::PinningType::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::maps::PinningType where U: core::convert::TryFrom +pub type aya_obj::maps::PinningType::Error = >::Error +pub fn aya_obj::maps::PinningType::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::maps::PinningType where T: core::clone::Clone +pub type aya_obj::maps::PinningType::Owned = T +pub fn aya_obj::maps::PinningType::clone_into(&self, target: &mut T) +pub fn aya_obj::maps::PinningType::to_owned(&self) -> T +impl core::any::Any for aya_obj::maps::PinningType where T: 'static + core::marker::Sized +pub fn aya_obj::maps::PinningType::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::maps::PinningType where T: core::marker::Sized +pub fn aya_obj::maps::PinningType::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::maps::PinningType where T: core::marker::Sized +pub fn aya_obj::maps::PinningType::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::maps::PinningType +pub fn aya_obj::maps::PinningType::from(t: T) -> T +pub struct aya_obj::maps::BtfMap +pub aya_obj::maps::BtfMap::def: aya_obj::maps::BtfMapDef +impl core::clone::Clone for aya_obj::maps::BtfMap +pub fn aya_obj::maps::BtfMap::clone(&self) -> aya_obj::maps::BtfMap +impl core::fmt::Debug for aya_obj::maps::BtfMap +pub fn aya_obj::maps::BtfMap::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::maps::BtfMap +impl core::marker::Sync for aya_obj::maps::BtfMap +impl core::marker::Unpin for aya_obj::maps::BtfMap +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::maps::BtfMap +impl core::panic::unwind_safe::UnwindSafe for aya_obj::maps::BtfMap +impl core::convert::Into for aya_obj::maps::BtfMap where U: core::convert::From +pub fn aya_obj::maps::BtfMap::into(self) -> U +impl core::convert::TryFrom for aya_obj::maps::BtfMap where U: core::convert::Into +pub type aya_obj::maps::BtfMap::Error = core::convert::Infallible +pub fn aya_obj::maps::BtfMap::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::maps::BtfMap where U: core::convert::TryFrom +pub type aya_obj::maps::BtfMap::Error = >::Error +pub fn aya_obj::maps::BtfMap::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::maps::BtfMap where T: core::clone::Clone +pub type aya_obj::maps::BtfMap::Owned = T +pub fn aya_obj::maps::BtfMap::clone_into(&self, target: &mut T) +pub fn aya_obj::maps::BtfMap::to_owned(&self) -> T +impl core::any::Any for aya_obj::maps::BtfMap where T: 'static + core::marker::Sized +pub fn aya_obj::maps::BtfMap::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::maps::BtfMap where T: core::marker::Sized +pub fn aya_obj::maps::BtfMap::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::maps::BtfMap where T: core::marker::Sized +pub fn aya_obj::maps::BtfMap::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::maps::BtfMap +pub fn aya_obj::maps::BtfMap::from(t: T) -> T +pub struct aya_obj::maps::BtfMapDef +pub aya_obj::maps::BtfMapDef::btf_key_type_id: u32 +pub aya_obj::maps::BtfMapDef::btf_value_type_id: u32 +impl core::clone::Clone for aya_obj::maps::BtfMapDef +pub fn aya_obj::maps::BtfMapDef::clone(&self) -> aya_obj::maps::BtfMapDef +impl core::cmp::Eq for aya_obj::maps::BtfMapDef +impl core::cmp::PartialEq for aya_obj::maps::BtfMapDef +pub fn aya_obj::maps::BtfMapDef::eq(&self, other: &aya_obj::maps::BtfMapDef) -> bool +impl core::default::Default for aya_obj::maps::BtfMapDef +pub fn aya_obj::maps::BtfMapDef::default() -> aya_obj::maps::BtfMapDef +impl core::fmt::Debug for aya_obj::maps::BtfMapDef +pub fn aya_obj::maps::BtfMapDef::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::maps::BtfMapDef +impl core::marker::StructuralEq for aya_obj::maps::BtfMapDef +impl core::marker::StructuralPartialEq for aya_obj::maps::BtfMapDef +impl core::marker::Send for aya_obj::maps::BtfMapDef +impl core::marker::Sync for aya_obj::maps::BtfMapDef +impl core::marker::Unpin for aya_obj::maps::BtfMapDef +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::maps::BtfMapDef +impl core::panic::unwind_safe::UnwindSafe for aya_obj::maps::BtfMapDef +impl core::convert::Into for aya_obj::maps::BtfMapDef where U: core::convert::From +pub fn aya_obj::maps::BtfMapDef::into(self) -> U +impl core::convert::TryFrom for aya_obj::maps::BtfMapDef where U: core::convert::Into +pub type aya_obj::maps::BtfMapDef::Error = core::convert::Infallible +pub fn aya_obj::maps::BtfMapDef::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::maps::BtfMapDef where U: core::convert::TryFrom +pub type aya_obj::maps::BtfMapDef::Error = >::Error +pub fn aya_obj::maps::BtfMapDef::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::maps::BtfMapDef where T: core::clone::Clone +pub type aya_obj::maps::BtfMapDef::Owned = T +pub fn aya_obj::maps::BtfMapDef::clone_into(&self, target: &mut T) +pub fn aya_obj::maps::BtfMapDef::to_owned(&self) -> T +impl core::any::Any for aya_obj::maps::BtfMapDef where T: 'static + core::marker::Sized +pub fn aya_obj::maps::BtfMapDef::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::maps::BtfMapDef where T: core::marker::Sized +pub fn aya_obj::maps::BtfMapDef::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::maps::BtfMapDef where T: core::marker::Sized +pub fn aya_obj::maps::BtfMapDef::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::maps::BtfMapDef +pub fn aya_obj::maps::BtfMapDef::from(t: T) -> T +pub struct aya_obj::maps::InvalidMapTypeError +pub aya_obj::maps::InvalidMapTypeError::map_type: u32 +impl core::marker::Send for aya_obj::maps::InvalidMapTypeError +impl core::marker::Sync for aya_obj::maps::InvalidMapTypeError +impl core::marker::Unpin for aya_obj::maps::InvalidMapTypeError +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::maps::InvalidMapTypeError +impl core::panic::unwind_safe::UnwindSafe for aya_obj::maps::InvalidMapTypeError +impl core::convert::Into for aya_obj::maps::InvalidMapTypeError where U: core::convert::From +pub fn aya_obj::maps::InvalidMapTypeError::into(self) -> U +impl core::convert::TryFrom for aya_obj::maps::InvalidMapTypeError where U: core::convert::Into +pub type aya_obj::maps::InvalidMapTypeError::Error = core::convert::Infallible +pub fn aya_obj::maps::InvalidMapTypeError::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::maps::InvalidMapTypeError where U: core::convert::TryFrom +pub type aya_obj::maps::InvalidMapTypeError::Error = >::Error +pub fn aya_obj::maps::InvalidMapTypeError::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_obj::maps::InvalidMapTypeError where T: 'static + core::marker::Sized +pub fn aya_obj::maps::InvalidMapTypeError::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::maps::InvalidMapTypeError where T: core::marker::Sized +pub fn aya_obj::maps::InvalidMapTypeError::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::maps::InvalidMapTypeError where T: core::marker::Sized +pub fn aya_obj::maps::InvalidMapTypeError::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::maps::InvalidMapTypeError +pub fn aya_obj::maps::InvalidMapTypeError::from(t: T) -> T +pub struct aya_obj::maps::LegacyMap +pub aya_obj::maps::LegacyMap::data: alloc::vec::Vec +pub aya_obj::maps::LegacyMap::def: aya_obj::maps::bpf_map_def +pub aya_obj::maps::LegacyMap::section_index: usize +pub aya_obj::maps::LegacyMap::section_kind: aya_obj::BpfSectionKind +pub aya_obj::maps::LegacyMap::symbol_index: core::option::Option +impl core::clone::Clone for aya_obj::maps::LegacyMap +pub fn aya_obj::maps::LegacyMap::clone(&self) -> aya_obj::maps::LegacyMap +impl core::fmt::Debug for aya_obj::maps::LegacyMap +pub fn aya_obj::maps::LegacyMap::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::maps::LegacyMap +impl core::marker::Sync for aya_obj::maps::LegacyMap +impl core::marker::Unpin for aya_obj::maps::LegacyMap +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::maps::LegacyMap +impl core::panic::unwind_safe::UnwindSafe for aya_obj::maps::LegacyMap +impl core::convert::Into for aya_obj::maps::LegacyMap where U: core::convert::From +pub fn aya_obj::maps::LegacyMap::into(self) -> U +impl core::convert::TryFrom for aya_obj::maps::LegacyMap where U: core::convert::Into +pub type aya_obj::maps::LegacyMap::Error = core::convert::Infallible +pub fn aya_obj::maps::LegacyMap::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::maps::LegacyMap where U: core::convert::TryFrom +pub type aya_obj::maps::LegacyMap::Error = >::Error +pub fn aya_obj::maps::LegacyMap::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::maps::LegacyMap where T: core::clone::Clone +pub type aya_obj::maps::LegacyMap::Owned = T +pub fn aya_obj::maps::LegacyMap::clone_into(&self, target: &mut T) +pub fn aya_obj::maps::LegacyMap::to_owned(&self) -> T +impl core::any::Any for aya_obj::maps::LegacyMap where T: 'static + core::marker::Sized +pub fn aya_obj::maps::LegacyMap::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::maps::LegacyMap where T: core::marker::Sized +pub fn aya_obj::maps::LegacyMap::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::maps::LegacyMap where T: core::marker::Sized +pub fn aya_obj::maps::LegacyMap::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::maps::LegacyMap +pub fn aya_obj::maps::LegacyMap::from(t: T) -> T +#[repr(C)] pub struct aya_obj::maps::bpf_map_def +pub aya_obj::maps::bpf_map_def::id: u32 +pub aya_obj::maps::bpf_map_def::key_size: u32 +pub aya_obj::maps::bpf_map_def::map_flags: u32 +pub aya_obj::maps::bpf_map_def::map_type: u32 +pub aya_obj::maps::bpf_map_def::max_entries: u32 +pub aya_obj::maps::bpf_map_def::pinning: aya_obj::maps::PinningType +pub aya_obj::maps::bpf_map_def::value_size: u32 +impl core::clone::Clone for aya_obj::maps::bpf_map_def +pub fn aya_obj::maps::bpf_map_def::clone(&self) -> aya_obj::maps::bpf_map_def +impl core::cmp::Eq for aya_obj::maps::bpf_map_def +impl core::cmp::PartialEq for aya_obj::maps::bpf_map_def +pub fn aya_obj::maps::bpf_map_def::eq(&self, other: &aya_obj::maps::bpf_map_def) -> bool +impl core::default::Default for aya_obj::maps::bpf_map_def +pub fn aya_obj::maps::bpf_map_def::default() -> aya_obj::maps::bpf_map_def +impl core::fmt::Debug for aya_obj::maps::bpf_map_def +pub fn aya_obj::maps::bpf_map_def::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::maps::bpf_map_def +impl core::marker::StructuralEq for aya_obj::maps::bpf_map_def +impl core::marker::StructuralPartialEq for aya_obj::maps::bpf_map_def +impl core::marker::Send for aya_obj::maps::bpf_map_def +impl core::marker::Sync for aya_obj::maps::bpf_map_def +impl core::marker::Unpin for aya_obj::maps::bpf_map_def +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::maps::bpf_map_def +impl core::panic::unwind_safe::UnwindSafe for aya_obj::maps::bpf_map_def +impl core::convert::Into for aya_obj::maps::bpf_map_def where U: core::convert::From +pub fn aya_obj::maps::bpf_map_def::into(self) -> U +impl core::convert::TryFrom for aya_obj::maps::bpf_map_def where U: core::convert::Into +pub type aya_obj::maps::bpf_map_def::Error = core::convert::Infallible +pub fn aya_obj::maps::bpf_map_def::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::maps::bpf_map_def where U: core::convert::TryFrom +pub type aya_obj::maps::bpf_map_def::Error = >::Error +pub fn aya_obj::maps::bpf_map_def::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::maps::bpf_map_def where T: core::clone::Clone +pub type aya_obj::maps::bpf_map_def::Owned = T +pub fn aya_obj::maps::bpf_map_def::clone_into(&self, target: &mut T) +pub fn aya_obj::maps::bpf_map_def::to_owned(&self) -> T +impl core::any::Any for aya_obj::maps::bpf_map_def where T: 'static + core::marker::Sized +pub fn aya_obj::maps::bpf_map_def::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::maps::bpf_map_def where T: core::marker::Sized +pub fn aya_obj::maps::bpf_map_def::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::maps::bpf_map_def where T: core::marker::Sized +pub fn aya_obj::maps::bpf_map_def::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::maps::bpf_map_def +pub fn aya_obj::maps::bpf_map_def::from(t: T) -> T +pub mod aya_obj::obj +pub enum aya_obj::obj::BpfSectionKind +pub aya_obj::obj::BpfSectionKind::Bss +pub aya_obj::obj::BpfSectionKind::Btf +pub aya_obj::obj::BpfSectionKind::BtfExt +pub aya_obj::obj::BpfSectionKind::BtfMaps +pub aya_obj::obj::BpfSectionKind::Data +pub aya_obj::obj::BpfSectionKind::License +pub aya_obj::obj::BpfSectionKind::Maps +pub aya_obj::obj::BpfSectionKind::Program +pub aya_obj::obj::BpfSectionKind::Rodata +pub aya_obj::obj::BpfSectionKind::Text +pub aya_obj::obj::BpfSectionKind::Undefined +pub aya_obj::obj::BpfSectionKind::Version +impl core::clone::Clone for aya_obj::BpfSectionKind +pub fn aya_obj::BpfSectionKind::clone(&self) -> aya_obj::BpfSectionKind +impl core::cmp::Eq for aya_obj::BpfSectionKind +impl core::cmp::PartialEq for aya_obj::BpfSectionKind +pub fn aya_obj::BpfSectionKind::eq(&self, other: &aya_obj::BpfSectionKind) -> bool +impl core::fmt::Debug for aya_obj::BpfSectionKind +pub fn aya_obj::BpfSectionKind::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::BpfSectionKind +impl core::marker::StructuralEq for aya_obj::BpfSectionKind +impl core::marker::StructuralPartialEq for aya_obj::BpfSectionKind +impl core::marker::Send for aya_obj::BpfSectionKind +impl core::marker::Sync for aya_obj::BpfSectionKind +impl core::marker::Unpin for aya_obj::BpfSectionKind +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::BpfSectionKind +impl core::panic::unwind_safe::UnwindSafe for aya_obj::BpfSectionKind +impl core::convert::Into for aya_obj::BpfSectionKind where U: core::convert::From +pub fn aya_obj::BpfSectionKind::into(self) -> U +impl core::convert::TryFrom for aya_obj::BpfSectionKind where U: core::convert::Into +pub type aya_obj::BpfSectionKind::Error = core::convert::Infallible +pub fn aya_obj::BpfSectionKind::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::BpfSectionKind where U: core::convert::TryFrom +pub type aya_obj::BpfSectionKind::Error = >::Error +pub fn aya_obj::BpfSectionKind::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::BpfSectionKind where T: core::clone::Clone +pub type aya_obj::BpfSectionKind::Owned = T +pub fn aya_obj::BpfSectionKind::clone_into(&self, target: &mut T) +pub fn aya_obj::BpfSectionKind::to_owned(&self) -> T +impl core::any::Any for aya_obj::BpfSectionKind where T: 'static + core::marker::Sized +pub fn aya_obj::BpfSectionKind::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::BpfSectionKind where T: core::marker::Sized +pub fn aya_obj::BpfSectionKind::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::BpfSectionKind where T: core::marker::Sized +pub fn aya_obj::BpfSectionKind::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::BpfSectionKind +pub fn aya_obj::BpfSectionKind::from(t: T) -> T +pub enum aya_obj::obj::ParseError +pub aya_obj::obj::ParseError::BtfError(aya_obj::btf::BtfError) +pub aya_obj::obj::ParseError::ElfError(object::read::Error) +pub aya_obj::obj::ParseError::InvalidGlobalData +pub aya_obj::obj::ParseError::InvalidGlobalData::data_size: usize +pub aya_obj::obj::ParseError::InvalidGlobalData::name: alloc::string::String +pub aya_obj::obj::ParseError::InvalidGlobalData::sym_size: u64 +pub aya_obj::obj::ParseError::InvalidKernelVersion +pub aya_obj::obj::ParseError::InvalidKernelVersion::data: alloc::vec::Vec +pub aya_obj::obj::ParseError::InvalidLicense +pub aya_obj::obj::ParseError::InvalidLicense::data: alloc::vec::Vec +pub aya_obj::obj::ParseError::InvalidMapDefinition +pub aya_obj::obj::ParseError::InvalidMapDefinition::name: alloc::string::String +pub aya_obj::obj::ParseError::InvalidProgramCode +pub aya_obj::obj::ParseError::InvalidProgramSection +pub aya_obj::obj::ParseError::InvalidProgramSection::section: alloc::string::String +pub aya_obj::obj::ParseError::InvalidSymbol +pub aya_obj::obj::ParseError::InvalidSymbol::index: usize +pub aya_obj::obj::ParseError::InvalidSymbol::name: core::option::Option +pub aya_obj::obj::ParseError::MapNotFound +pub aya_obj::obj::ParseError::MapNotFound::index: usize +pub aya_obj::obj::ParseError::MapSymbolNameNotFound +pub aya_obj::obj::ParseError::MapSymbolNameNotFound::i: usize +pub aya_obj::obj::ParseError::MissingLicenseNullTerminator +pub aya_obj::obj::ParseError::MissingLicenseNullTerminator::data: alloc::vec::Vec +pub aya_obj::obj::ParseError::NoBTF +pub aya_obj::obj::ParseError::NoSymbolsForMapsSection +pub aya_obj::obj::ParseError::SectionError +pub aya_obj::obj::ParseError::SectionError::error: object::read::Error +pub aya_obj::obj::ParseError::SectionError::index: usize +pub aya_obj::obj::ParseError::SymbolNotFound +pub aya_obj::obj::ParseError::SymbolNotFound::name: alloc::string::String +pub aya_obj::obj::ParseError::SymbolTableConflict +pub aya_obj::obj::ParseError::SymbolTableConflict::address: u64 +pub aya_obj::obj::ParseError::SymbolTableConflict::section_index: usize +pub aya_obj::obj::ParseError::UnknownSymbol +pub aya_obj::obj::ParseError::UnknownSymbol::address: u64 +pub aya_obj::obj::ParseError::UnknownSymbol::section_index: usize +pub aya_obj::obj::ParseError::UnsupportedRelocationTarget +impl core::convert::From for aya_obj::ParseError +pub fn aya_obj::ParseError::from(source: aya_obj::btf::BtfError) -> Self +impl core::error::Error for aya_obj::ParseError +pub fn aya_obj::ParseError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)> +impl core::fmt::Display for aya_obj::ParseError +pub fn aya_obj::ParseError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::fmt::Debug for aya_obj::ParseError +pub fn aya_obj::ParseError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::ParseError +impl core::marker::Sync for aya_obj::ParseError +impl core::marker::Unpin for aya_obj::ParseError +impl !core::panic::unwind_safe::RefUnwindSafe for aya_obj::ParseError +impl !core::panic::unwind_safe::UnwindSafe for aya_obj::ParseError +impl core::any::Provider for aya_obj::ParseError where E: core::error::Error + core::marker::Sized +pub fn aya_obj::ParseError::provide<'a>(&'a self, demand: &mut core::any::Demand<'a>) +impl core::convert::Into for aya_obj::ParseError where U: core::convert::From +pub fn aya_obj::ParseError::into(self) -> U +impl core::convert::TryFrom for aya_obj::ParseError where U: core::convert::Into +pub type aya_obj::ParseError::Error = core::convert::Infallible +pub fn aya_obj::ParseError::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::ParseError where U: core::convert::TryFrom +pub type aya_obj::ParseError::Error = >::Error +pub fn aya_obj::ParseError::try_into(self) -> core::result::Result>::Error> +impl alloc::string::ToString for aya_obj::ParseError where T: core::fmt::Display + core::marker::Sized +pub fn aya_obj::ParseError::to_string(&self) -> alloc::string::String +impl core::any::Any for aya_obj::ParseError where T: 'static + core::marker::Sized +pub fn aya_obj::ParseError::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::ParseError where T: core::marker::Sized +pub fn aya_obj::ParseError::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::ParseError where T: core::marker::Sized +pub fn aya_obj::ParseError::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::ParseError +pub fn aya_obj::ParseError::from(t: T) -> T +pub enum aya_obj::obj::ProgramSection +pub aya_obj::obj::ProgramSection::BtfTracePoint +pub aya_obj::obj::ProgramSection::BtfTracePoint::name: alloc::string::String +pub aya_obj::obj::ProgramSection::CgroupDevice +pub aya_obj::obj::ProgramSection::CgroupDevice::name: alloc::string::String +pub aya_obj::obj::ProgramSection::CgroupSkb +pub aya_obj::obj::ProgramSection::CgroupSkb::name: alloc::string::String +pub aya_obj::obj::ProgramSection::CgroupSkbEgress +pub aya_obj::obj::ProgramSection::CgroupSkbEgress::name: alloc::string::String +pub aya_obj::obj::ProgramSection::CgroupSkbIngress +pub aya_obj::obj::ProgramSection::CgroupSkbIngress::name: alloc::string::String +pub aya_obj::obj::ProgramSection::CgroupSock +pub aya_obj::obj::ProgramSection::CgroupSock::attach_type: aya_obj::programs::cgroup_sock::CgroupSockAttachType +pub aya_obj::obj::ProgramSection::CgroupSock::name: alloc::string::String +pub aya_obj::obj::ProgramSection::CgroupSockAddr +pub aya_obj::obj::ProgramSection::CgroupSockAddr::attach_type: aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType +pub aya_obj::obj::ProgramSection::CgroupSockAddr::name: alloc::string::String +pub aya_obj::obj::ProgramSection::CgroupSockopt +pub aya_obj::obj::ProgramSection::CgroupSockopt::attach_type: aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType +pub aya_obj::obj::ProgramSection::CgroupSockopt::name: alloc::string::String +pub aya_obj::obj::ProgramSection::CgroupSysctl +pub aya_obj::obj::ProgramSection::CgroupSysctl::name: alloc::string::String +pub aya_obj::obj::ProgramSection::Extension +pub aya_obj::obj::ProgramSection::Extension::name: alloc::string::String +pub aya_obj::obj::ProgramSection::FEntry +pub aya_obj::obj::ProgramSection::FEntry::name: alloc::string::String +pub aya_obj::obj::ProgramSection::FExit +pub aya_obj::obj::ProgramSection::FExit::name: alloc::string::String +pub aya_obj::obj::ProgramSection::KProbe +pub aya_obj::obj::ProgramSection::KProbe::name: alloc::string::String +pub aya_obj::obj::ProgramSection::KRetProbe +pub aya_obj::obj::ProgramSection::KRetProbe::name: alloc::string::String +pub aya_obj::obj::ProgramSection::LircMode2 +pub aya_obj::obj::ProgramSection::LircMode2::name: alloc::string::String +pub aya_obj::obj::ProgramSection::Lsm +pub aya_obj::obj::ProgramSection::Lsm::name: alloc::string::String +pub aya_obj::obj::ProgramSection::Lsm::sleepable: bool +pub aya_obj::obj::ProgramSection::PerfEvent +pub aya_obj::obj::ProgramSection::PerfEvent::name: alloc::string::String +pub aya_obj::obj::ProgramSection::RawTracePoint +pub aya_obj::obj::ProgramSection::RawTracePoint::name: alloc::string::String +pub aya_obj::obj::ProgramSection::SchedClassifier +pub aya_obj::obj::ProgramSection::SchedClassifier::name: alloc::string::String +pub aya_obj::obj::ProgramSection::SkLookup +pub aya_obj::obj::ProgramSection::SkLookup::name: alloc::string::String +pub aya_obj::obj::ProgramSection::SkMsg +pub aya_obj::obj::ProgramSection::SkMsg::name: alloc::string::String +pub aya_obj::obj::ProgramSection::SkSkbStreamParser +pub aya_obj::obj::ProgramSection::SkSkbStreamParser::name: alloc::string::String +pub aya_obj::obj::ProgramSection::SkSkbStreamVerdict +pub aya_obj::obj::ProgramSection::SkSkbStreamVerdict::name: alloc::string::String +pub aya_obj::obj::ProgramSection::SockOps +pub aya_obj::obj::ProgramSection::SockOps::name: alloc::string::String +pub aya_obj::obj::ProgramSection::SocketFilter +pub aya_obj::obj::ProgramSection::SocketFilter::name: alloc::string::String +pub aya_obj::obj::ProgramSection::TracePoint +pub aya_obj::obj::ProgramSection::TracePoint::name: alloc::string::String +pub aya_obj::obj::ProgramSection::UProbe +pub aya_obj::obj::ProgramSection::UProbe::name: alloc::string::String +pub aya_obj::obj::ProgramSection::URetProbe +pub aya_obj::obj::ProgramSection::URetProbe::name: alloc::string::String +pub aya_obj::obj::ProgramSection::Xdp +pub aya_obj::obj::ProgramSection::Xdp::frags: bool +pub aya_obj::obj::ProgramSection::Xdp::name: alloc::string::String +impl aya_obj::ProgramSection +pub fn aya_obj::ProgramSection::name(&self) -> &str +impl core::str::traits::FromStr for aya_obj::ProgramSection +pub type aya_obj::ProgramSection::Err = aya_obj::ParseError +pub fn aya_obj::ProgramSection::from_str(section: &str) -> core::result::Result +impl core::clone::Clone for aya_obj::ProgramSection +pub fn aya_obj::ProgramSection::clone(&self) -> aya_obj::ProgramSection +impl core::fmt::Debug for aya_obj::ProgramSection +pub fn aya_obj::ProgramSection::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::ProgramSection +impl core::marker::Sync for aya_obj::ProgramSection +impl core::marker::Unpin for aya_obj::ProgramSection +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::ProgramSection +impl core::panic::unwind_safe::UnwindSafe for aya_obj::ProgramSection +impl core::convert::Into for aya_obj::ProgramSection where U: core::convert::From +pub fn aya_obj::ProgramSection::into(self) -> U +impl core::convert::TryFrom for aya_obj::ProgramSection where U: core::convert::Into +pub type aya_obj::ProgramSection::Error = core::convert::Infallible +pub fn aya_obj::ProgramSection::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::ProgramSection where U: core::convert::TryFrom +pub type aya_obj::ProgramSection::Error = >::Error +pub fn aya_obj::ProgramSection::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::ProgramSection where T: core::clone::Clone +pub type aya_obj::ProgramSection::Owned = T +pub fn aya_obj::ProgramSection::clone_into(&self, target: &mut T) +pub fn aya_obj::ProgramSection::to_owned(&self) -> T +impl core::any::Any for aya_obj::ProgramSection where T: 'static + core::marker::Sized +pub fn aya_obj::ProgramSection::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::ProgramSection where T: core::marker::Sized +pub fn aya_obj::ProgramSection::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::ProgramSection where T: core::marker::Sized +pub fn aya_obj::ProgramSection::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::ProgramSection +pub fn aya_obj::ProgramSection::from(t: T) -> T +pub struct aya_obj::obj::Features +impl aya_obj::Features +pub fn aya_obj::Features::bpf_cookie(&self) -> bool +pub fn aya_obj::Features::bpf_global_data(&self) -> bool +pub fn aya_obj::Features::bpf_name(&self) -> bool +pub fn aya_obj::Features::bpf_perf_link(&self) -> bool +pub fn aya_obj::Features::bpf_probe_read_kernel(&self) -> bool +pub fn aya_obj::Features::btf(&self) -> core::option::Option<&aya_obj::btf::BtfFeatures> +impl core::default::Default for aya_obj::Features +pub fn aya_obj::Features::default() -> aya_obj::Features +impl core::fmt::Debug for aya_obj::Features +pub fn aya_obj::Features::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::Features +impl core::marker::Sync for aya_obj::Features +impl core::marker::Unpin for aya_obj::Features +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::Features +impl core::panic::unwind_safe::UnwindSafe for aya_obj::Features +impl core::convert::Into for aya_obj::Features where U: core::convert::From +pub fn aya_obj::Features::into(self) -> U +impl core::convert::TryFrom for aya_obj::Features where U: core::convert::Into +pub type aya_obj::Features::Error = core::convert::Infallible +pub fn aya_obj::Features::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::Features where U: core::convert::TryFrom +pub type aya_obj::Features::Error = >::Error +pub fn aya_obj::Features::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_obj::Features where T: 'static + core::marker::Sized +pub fn aya_obj::Features::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::Features where T: core::marker::Sized +pub fn aya_obj::Features::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::Features where T: core::marker::Sized +pub fn aya_obj::Features::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::Features +pub fn aya_obj::Features::from(t: T) -> T +pub struct aya_obj::obj::Function +pub aya_obj::obj::Function::address: u64 +pub aya_obj::obj::Function::func_info: aya_obj::btf::FuncSecInfo +pub aya_obj::obj::Function::func_info_rec_size: usize +pub aya_obj::obj::Function::instructions: alloc::vec::Vec +pub aya_obj::obj::Function::line_info: aya_obj::btf::LineSecInfo +pub aya_obj::obj::Function::line_info_rec_size: usize +pub aya_obj::obj::Function::name: alloc::string::String +pub aya_obj::obj::Function::section_index: object::read::SectionIndex +pub aya_obj::obj::Function::section_offset: usize +impl core::clone::Clone for aya_obj::Function +pub fn aya_obj::Function::clone(&self) -> aya_obj::Function +impl core::fmt::Debug for aya_obj::Function +pub fn aya_obj::Function::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::Function +impl core::marker::Sync for aya_obj::Function +impl core::marker::Unpin for aya_obj::Function +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::Function +impl core::panic::unwind_safe::UnwindSafe for aya_obj::Function +impl core::convert::Into for aya_obj::Function where U: core::convert::From +pub fn aya_obj::Function::into(self) -> U +impl core::convert::TryFrom for aya_obj::Function where U: core::convert::Into +pub type aya_obj::Function::Error = core::convert::Infallible +pub fn aya_obj::Function::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::Function where U: core::convert::TryFrom +pub type aya_obj::Function::Error = >::Error +pub fn aya_obj::Function::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::Function where T: core::clone::Clone +pub type aya_obj::Function::Owned = T +pub fn aya_obj::Function::clone_into(&self, target: &mut T) +pub fn aya_obj::Function::to_owned(&self) -> T +impl core::any::Any for aya_obj::Function where T: 'static + core::marker::Sized +pub fn aya_obj::Function::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::Function where T: core::marker::Sized +pub fn aya_obj::Function::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::Function where T: core::marker::Sized +pub fn aya_obj::Function::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::Function +pub fn aya_obj::Function::from(t: T) -> T +pub struct aya_obj::obj::Object +pub aya_obj::obj::Object::btf: core::option::Option +pub aya_obj::obj::Object::btf_ext: core::option::Option +pub aya_obj::obj::Object::endianness: object::endian::Endianness +pub aya_obj::obj::Object::functions: alloc::collections::btree::map::BTreeMap<(usize, u64), aya_obj::Function> +pub aya_obj::obj::Object::kernel_version: core::option::Option +pub aya_obj::obj::Object::license: alloc::ffi::c_str::CString +pub aya_obj::obj::Object::maps: std::collections::hash::map::HashMap +pub aya_obj::obj::Object::programs: std::collections::hash::map::HashMap +impl aya_obj::Object +pub fn aya_obj::Object::fixup_and_sanitize_btf(&mut self, features: &aya_obj::btf::BtfFeatures) -> core::result::Result, aya_obj::btf::BtfError> +impl aya_obj::Object +pub fn aya_obj::Object::parse(data: &[u8]) -> core::result::Result +pub fn aya_obj::Object::patch_map_data(&mut self, globals: std::collections::hash::map::HashMap<&str, (&[u8], bool)>) -> core::result::Result<(), aya_obj::ParseError> +pub fn aya_obj::Object::sanitize_functions(&mut self, features: &aya_obj::Features) +impl aya_obj::Object +pub fn aya_obj::Object::relocate_btf(&mut self, target_btf: &aya_obj::btf::Btf) -> core::result::Result<(), aya_obj::btf::BtfRelocationError> +impl aya_obj::Object +pub fn aya_obj::Object::relocate_calls(&mut self, text_sections: &std::collections::hash::set::HashSet) -> core::result::Result<(), aya_obj::relocation::BpfRelocationError> +pub fn aya_obj::Object::relocate_maps<'a, I: core::iter::traits::iterator::Iterator, &'a aya_obj::maps::Map)>>(&mut self, maps: I, text_sections: &std::collections::hash::set::HashSet) -> core::result::Result<(), aya_obj::relocation::BpfRelocationError> +impl core::clone::Clone for aya_obj::Object +pub fn aya_obj::Object::clone(&self) -> aya_obj::Object +impl core::fmt::Debug for aya_obj::Object +pub fn aya_obj::Object::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::Object +impl core::marker::Sync for aya_obj::Object +impl core::marker::Unpin for aya_obj::Object +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::Object +impl core::panic::unwind_safe::UnwindSafe for aya_obj::Object +impl core::convert::Into for aya_obj::Object where U: core::convert::From +pub fn aya_obj::Object::into(self) -> U +impl core::convert::TryFrom for aya_obj::Object where U: core::convert::Into +pub type aya_obj::Object::Error = core::convert::Infallible +pub fn aya_obj::Object::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::Object where U: core::convert::TryFrom +pub type aya_obj::Object::Error = >::Error +pub fn aya_obj::Object::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::Object where T: core::clone::Clone +pub type aya_obj::Object::Owned = T +pub fn aya_obj::Object::clone_into(&self, target: &mut T) +pub fn aya_obj::Object::to_owned(&self) -> T +impl core::any::Any for aya_obj::Object where T: 'static + core::marker::Sized +pub fn aya_obj::Object::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::Object where T: core::marker::Sized +pub fn aya_obj::Object::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::Object where T: core::marker::Sized +pub fn aya_obj::Object::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::Object +pub fn aya_obj::Object::from(t: T) -> T +pub struct aya_obj::obj::Program +pub aya_obj::obj::Program::address: u64 +pub aya_obj::obj::Program::kernel_version: core::option::Option +pub aya_obj::obj::Program::license: alloc::ffi::c_str::CString +pub aya_obj::obj::Program::section: aya_obj::ProgramSection +pub aya_obj::obj::Program::section_index: usize +impl aya_obj::Program +pub fn aya_obj::Program::function_key(&self) -> (usize, u64) +impl core::clone::Clone for aya_obj::Program +pub fn aya_obj::Program::clone(&self) -> aya_obj::Program +impl core::fmt::Debug for aya_obj::Program +pub fn aya_obj::Program::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::Program +impl core::marker::Sync for aya_obj::Program +impl core::marker::Unpin for aya_obj::Program +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::Program +impl core::panic::unwind_safe::UnwindSafe for aya_obj::Program +impl core::convert::Into for aya_obj::Program where U: core::convert::From +pub fn aya_obj::Program::into(self) -> U +impl core::convert::TryFrom for aya_obj::Program where U: core::convert::Into +pub type aya_obj::Program::Error = core::convert::Infallible +pub fn aya_obj::Program::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::Program where U: core::convert::TryFrom +pub type aya_obj::Program::Error = >::Error +pub fn aya_obj::Program::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::Program where T: core::clone::Clone +pub type aya_obj::Program::Owned = T +pub fn aya_obj::Program::clone_into(&self, target: &mut T) +pub fn aya_obj::Program::to_owned(&self) -> T +impl core::any::Any for aya_obj::Program where T: 'static + core::marker::Sized +pub fn aya_obj::Program::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::Program where T: core::marker::Sized +pub fn aya_obj::Program::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::Program where T: core::marker::Sized +pub fn aya_obj::Program::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::Program +pub fn aya_obj::Program::from(t: T) -> T +pub fn aya_obj::obj::copy_instructions(data: &[u8]) -> core::result::Result, aya_obj::ParseError> +pub fn aya_obj::obj::parse_map_info(info: aya_obj::generated::bpf_map_info, pinned: aya_obj::maps::PinningType) -> aya_obj::maps::Map +pub mod aya_obj::programs +pub mod aya_obj::programs::cgroup_sock +pub enum aya_obj::programs::cgroup_sock::CgroupSockAttachType +pub aya_obj::programs::cgroup_sock::CgroupSockAttachType::PostBind4 +pub aya_obj::programs::cgroup_sock::CgroupSockAttachType::PostBind6 +pub aya_obj::programs::cgroup_sock::CgroupSockAttachType::SockCreate +pub aya_obj::programs::cgroup_sock::CgroupSockAttachType::SockRelease +impl core::convert::From for aya_obj::generated::bpf_attach_type +pub fn aya_obj::generated::bpf_attach_type::from(s: aya_obj::programs::cgroup_sock::CgroupSockAttachType) -> aya_obj::generated::bpf_attach_type +impl core::clone::Clone for aya_obj::programs::cgroup_sock::CgroupSockAttachType +pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::clone(&self) -> aya_obj::programs::cgroup_sock::CgroupSockAttachType +impl core::default::Default for aya_obj::programs::cgroup_sock::CgroupSockAttachType +pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::default() -> aya_obj::programs::cgroup_sock::CgroupSockAttachType +impl core::fmt::Debug for aya_obj::programs::cgroup_sock::CgroupSockAttachType +pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::programs::cgroup_sock::CgroupSockAttachType +impl core::marker::Send for aya_obj::programs::cgroup_sock::CgroupSockAttachType +impl core::marker::Sync for aya_obj::programs::cgroup_sock::CgroupSockAttachType +impl core::marker::Unpin for aya_obj::programs::cgroup_sock::CgroupSockAttachType +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::programs::cgroup_sock::CgroupSockAttachType +impl core::panic::unwind_safe::UnwindSafe for aya_obj::programs::cgroup_sock::CgroupSockAttachType +impl core::convert::Into for aya_obj::programs::cgroup_sock::CgroupSockAttachType where U: core::convert::From +pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::into(self) -> U +impl core::convert::TryFrom for aya_obj::programs::cgroup_sock::CgroupSockAttachType where U: core::convert::Into +pub type aya_obj::programs::cgroup_sock::CgroupSockAttachType::Error = core::convert::Infallible +pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::programs::cgroup_sock::CgroupSockAttachType where U: core::convert::TryFrom +pub type aya_obj::programs::cgroup_sock::CgroupSockAttachType::Error = >::Error +pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::programs::cgroup_sock::CgroupSockAttachType where T: core::clone::Clone +pub type aya_obj::programs::cgroup_sock::CgroupSockAttachType::Owned = T +pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::clone_into(&self, target: &mut T) +pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::to_owned(&self) -> T +impl core::any::Any for aya_obj::programs::cgroup_sock::CgroupSockAttachType where T: 'static + core::marker::Sized +pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::programs::cgroup_sock::CgroupSockAttachType where T: core::marker::Sized +pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::programs::cgroup_sock::CgroupSockAttachType where T: core::marker::Sized +pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::programs::cgroup_sock::CgroupSockAttachType +pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::from(t: T) -> T +pub mod aya_obj::programs::cgroup_sock_addr +pub enum aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType +pub aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::Bind4 +pub aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::Bind6 +pub aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::Connect4 +pub aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::Connect6 +pub aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::GetPeerName4 +pub aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::GetPeerName6 +pub aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::GetSockName4 +pub aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::GetSockName6 +pub aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::UDPRecvMsg4 +pub aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::UDPRecvMsg6 +pub aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::UDPSendMsg4 +pub aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::UDPSendMsg6 +impl core::convert::From for aya_obj::generated::bpf_attach_type +pub fn aya_obj::generated::bpf_attach_type::from(s: aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType) -> aya_obj::generated::bpf_attach_type +impl core::clone::Clone for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType +pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::clone(&self) -> aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType +impl core::fmt::Debug for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType +pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType +impl core::marker::Send for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType +impl core::marker::Sync for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType +impl core::marker::Unpin for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType +impl core::panic::unwind_safe::UnwindSafe for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType +impl core::convert::Into for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType where U: core::convert::From +pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::into(self) -> U +impl core::convert::TryFrom for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType where U: core::convert::Into +pub type aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::Error = core::convert::Infallible +pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType where U: core::convert::TryFrom +pub type aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::Error = >::Error +pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType where T: core::clone::Clone +pub type aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::Owned = T +pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::clone_into(&self, target: &mut T) +pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::to_owned(&self) -> T +impl core::any::Any for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType where T: 'static + core::marker::Sized +pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType where T: core::marker::Sized +pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType where T: core::marker::Sized +pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType +pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::from(t: T) -> T +pub mod aya_obj::programs::cgroup_sockopt +pub enum aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType +pub aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::Get +pub aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::Set +impl core::convert::From for aya_obj::generated::bpf_attach_type +pub fn aya_obj::generated::bpf_attach_type::from(s: aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType) -> aya_obj::generated::bpf_attach_type +impl core::clone::Clone for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType +pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::clone(&self) -> aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType +impl core::fmt::Debug for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType +pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType +impl core::marker::Send for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType +impl core::marker::Sync for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType +impl core::marker::Unpin for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType +impl core::panic::unwind_safe::UnwindSafe for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType +impl core::convert::Into for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType where U: core::convert::From +pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::into(self) -> U +impl core::convert::TryFrom for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType where U: core::convert::Into +pub type aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::Error = core::convert::Infallible +pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType where U: core::convert::TryFrom +pub type aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::Error = >::Error +pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType where T: core::clone::Clone +pub type aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::Owned = T +pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::clone_into(&self, target: &mut T) +pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::to_owned(&self) -> T +impl core::any::Any for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType where T: 'static + core::marker::Sized +pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType where T: core::marker::Sized +pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType where T: core::marker::Sized +pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType +pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::from(t: T) -> T +pub enum aya_obj::programs::CgroupSockAddrAttachType +pub aya_obj::programs::CgroupSockAddrAttachType::Bind4 +pub aya_obj::programs::CgroupSockAddrAttachType::Bind6 +pub aya_obj::programs::CgroupSockAddrAttachType::Connect4 +pub aya_obj::programs::CgroupSockAddrAttachType::Connect6 +pub aya_obj::programs::CgroupSockAddrAttachType::GetPeerName4 +pub aya_obj::programs::CgroupSockAddrAttachType::GetPeerName6 +pub aya_obj::programs::CgroupSockAddrAttachType::GetSockName4 +pub aya_obj::programs::CgroupSockAddrAttachType::GetSockName6 +pub aya_obj::programs::CgroupSockAddrAttachType::UDPRecvMsg4 +pub aya_obj::programs::CgroupSockAddrAttachType::UDPRecvMsg6 +pub aya_obj::programs::CgroupSockAddrAttachType::UDPSendMsg4 +pub aya_obj::programs::CgroupSockAddrAttachType::UDPSendMsg6 +impl core::convert::From for aya_obj::generated::bpf_attach_type +pub fn aya_obj::generated::bpf_attach_type::from(s: aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType) -> aya_obj::generated::bpf_attach_type +impl core::clone::Clone for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType +pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::clone(&self) -> aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType +impl core::fmt::Debug for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType +pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType +impl core::marker::Send for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType +impl core::marker::Sync for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType +impl core::marker::Unpin for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType +impl core::panic::unwind_safe::UnwindSafe for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType +impl core::convert::Into for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType where U: core::convert::From +pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::into(self) -> U +impl core::convert::TryFrom for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType where U: core::convert::Into +pub type aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::Error = core::convert::Infallible +pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType where U: core::convert::TryFrom +pub type aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::Error = >::Error +pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType where T: core::clone::Clone +pub type aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::Owned = T +pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::clone_into(&self, target: &mut T) +pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::to_owned(&self) -> T +impl core::any::Any for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType where T: 'static + core::marker::Sized +pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType where T: core::marker::Sized +pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType where T: core::marker::Sized +pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType +pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::from(t: T) -> T +pub enum aya_obj::programs::CgroupSockAttachType +pub aya_obj::programs::CgroupSockAttachType::PostBind4 +pub aya_obj::programs::CgroupSockAttachType::PostBind6 +pub aya_obj::programs::CgroupSockAttachType::SockCreate +pub aya_obj::programs::CgroupSockAttachType::SockRelease +impl core::convert::From for aya_obj::generated::bpf_attach_type +pub fn aya_obj::generated::bpf_attach_type::from(s: aya_obj::programs::cgroup_sock::CgroupSockAttachType) -> aya_obj::generated::bpf_attach_type +impl core::clone::Clone for aya_obj::programs::cgroup_sock::CgroupSockAttachType +pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::clone(&self) -> aya_obj::programs::cgroup_sock::CgroupSockAttachType +impl core::default::Default for aya_obj::programs::cgroup_sock::CgroupSockAttachType +pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::default() -> aya_obj::programs::cgroup_sock::CgroupSockAttachType +impl core::fmt::Debug for aya_obj::programs::cgroup_sock::CgroupSockAttachType +pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::programs::cgroup_sock::CgroupSockAttachType +impl core::marker::Send for aya_obj::programs::cgroup_sock::CgroupSockAttachType +impl core::marker::Sync for aya_obj::programs::cgroup_sock::CgroupSockAttachType +impl core::marker::Unpin for aya_obj::programs::cgroup_sock::CgroupSockAttachType +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::programs::cgroup_sock::CgroupSockAttachType +impl core::panic::unwind_safe::UnwindSafe for aya_obj::programs::cgroup_sock::CgroupSockAttachType +impl core::convert::Into for aya_obj::programs::cgroup_sock::CgroupSockAttachType where U: core::convert::From +pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::into(self) -> U +impl core::convert::TryFrom for aya_obj::programs::cgroup_sock::CgroupSockAttachType where U: core::convert::Into +pub type aya_obj::programs::cgroup_sock::CgroupSockAttachType::Error = core::convert::Infallible +pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::programs::cgroup_sock::CgroupSockAttachType where U: core::convert::TryFrom +pub type aya_obj::programs::cgroup_sock::CgroupSockAttachType::Error = >::Error +pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::programs::cgroup_sock::CgroupSockAttachType where T: core::clone::Clone +pub type aya_obj::programs::cgroup_sock::CgroupSockAttachType::Owned = T +pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::clone_into(&self, target: &mut T) +pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::to_owned(&self) -> T +impl core::any::Any for aya_obj::programs::cgroup_sock::CgroupSockAttachType where T: 'static + core::marker::Sized +pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::programs::cgroup_sock::CgroupSockAttachType where T: core::marker::Sized +pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::programs::cgroup_sock::CgroupSockAttachType where T: core::marker::Sized +pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::programs::cgroup_sock::CgroupSockAttachType +pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::from(t: T) -> T +pub enum aya_obj::programs::CgroupSockoptAttachType +pub aya_obj::programs::CgroupSockoptAttachType::Get +pub aya_obj::programs::CgroupSockoptAttachType::Set +impl core::convert::From for aya_obj::generated::bpf_attach_type +pub fn aya_obj::generated::bpf_attach_type::from(s: aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType) -> aya_obj::generated::bpf_attach_type +impl core::clone::Clone for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType +pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::clone(&self) -> aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType +impl core::fmt::Debug for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType +pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType +impl core::marker::Send for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType +impl core::marker::Sync for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType +impl core::marker::Unpin for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType +impl core::panic::unwind_safe::UnwindSafe for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType +impl core::convert::Into for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType where U: core::convert::From +pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::into(self) -> U +impl core::convert::TryFrom for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType where U: core::convert::Into +pub type aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::Error = core::convert::Infallible +pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType where U: core::convert::TryFrom +pub type aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::Error = >::Error +pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType where T: core::clone::Clone +pub type aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::Owned = T +pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::clone_into(&self, target: &mut T) +pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::to_owned(&self) -> T +impl core::any::Any for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType where T: 'static + core::marker::Sized +pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType where T: core::marker::Sized +pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType where T: core::marker::Sized +pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType +pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::from(t: T) -> T +pub mod aya_obj::relocation +pub enum aya_obj::relocation::RelocationError +pub aya_obj::relocation::RelocationError::InvalidRelocationOffset +pub aya_obj::relocation::RelocationError::InvalidRelocationOffset::offset: u64 +pub aya_obj::relocation::RelocationError::InvalidRelocationOffset::relocation_number: usize +pub aya_obj::relocation::RelocationError::MapNotCreated +pub aya_obj::relocation::RelocationError::MapNotCreated::name: alloc::string::String +pub aya_obj::relocation::RelocationError::MapNotCreated::section_index: usize +pub aya_obj::relocation::RelocationError::SectionNotFound +pub aya_obj::relocation::RelocationError::SectionNotFound::section_index: usize +pub aya_obj::relocation::RelocationError::SectionNotFound::symbol_index: usize +pub aya_obj::relocation::RelocationError::SectionNotFound::symbol_name: core::option::Option +pub aya_obj::relocation::RelocationError::UnknownFunction +pub aya_obj::relocation::RelocationError::UnknownFunction::address: u64 +pub aya_obj::relocation::RelocationError::UnknownFunction::caller_name: alloc::string::String +pub aya_obj::relocation::RelocationError::UnknownProgram +pub aya_obj::relocation::RelocationError::UnknownProgram::address: u64 +pub aya_obj::relocation::RelocationError::UnknownProgram::section_index: usize +pub aya_obj::relocation::RelocationError::UnknownSymbol +pub aya_obj::relocation::RelocationError::UnknownSymbol::index: usize +impl core::error::Error for aya_obj::relocation::RelocationError +impl core::fmt::Display for aya_obj::relocation::RelocationError +pub fn aya_obj::relocation::RelocationError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::fmt::Debug for aya_obj::relocation::RelocationError +pub fn aya_obj::relocation::RelocationError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::relocation::RelocationError +impl core::marker::Sync for aya_obj::relocation::RelocationError +impl core::marker::Unpin for aya_obj::relocation::RelocationError +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::relocation::RelocationError +impl core::panic::unwind_safe::UnwindSafe for aya_obj::relocation::RelocationError +impl core::any::Provider for aya_obj::relocation::RelocationError where E: core::error::Error + core::marker::Sized +pub fn aya_obj::relocation::RelocationError::provide<'a>(&'a self, demand: &mut core::any::Demand<'a>) +impl core::convert::Into for aya_obj::relocation::RelocationError where U: core::convert::From +pub fn aya_obj::relocation::RelocationError::into(self) -> U +impl core::convert::TryFrom for aya_obj::relocation::RelocationError where U: core::convert::Into +pub type aya_obj::relocation::RelocationError::Error = core::convert::Infallible +pub fn aya_obj::relocation::RelocationError::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::relocation::RelocationError where U: core::convert::TryFrom +pub type aya_obj::relocation::RelocationError::Error = >::Error +pub fn aya_obj::relocation::RelocationError::try_into(self) -> core::result::Result>::Error> +impl alloc::string::ToString for aya_obj::relocation::RelocationError where T: core::fmt::Display + core::marker::Sized +pub fn aya_obj::relocation::RelocationError::to_string(&self) -> alloc::string::String +impl core::any::Any for aya_obj::relocation::RelocationError where T: 'static + core::marker::Sized +pub fn aya_obj::relocation::RelocationError::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::relocation::RelocationError where T: core::marker::Sized +pub fn aya_obj::relocation::RelocationError::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::relocation::RelocationError where T: core::marker::Sized +pub fn aya_obj::relocation::RelocationError::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::relocation::RelocationError +pub fn aya_obj::relocation::RelocationError::from(t: T) -> T +pub struct aya_obj::relocation::BpfRelocationError +impl core::error::Error for aya_obj::relocation::BpfRelocationError +pub fn aya_obj::relocation::BpfRelocationError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)> +impl core::fmt::Display for aya_obj::relocation::BpfRelocationError +pub fn aya_obj::relocation::BpfRelocationError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::fmt::Debug for aya_obj::relocation::BpfRelocationError +pub fn aya_obj::relocation::BpfRelocationError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::relocation::BpfRelocationError +impl core::marker::Sync for aya_obj::relocation::BpfRelocationError +impl core::marker::Unpin for aya_obj::relocation::BpfRelocationError +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::relocation::BpfRelocationError +impl core::panic::unwind_safe::UnwindSafe for aya_obj::relocation::BpfRelocationError +impl core::any::Provider for aya_obj::relocation::BpfRelocationError where E: core::error::Error + core::marker::Sized +pub fn aya_obj::relocation::BpfRelocationError::provide<'a>(&'a self, demand: &mut core::any::Demand<'a>) +impl core::convert::Into for aya_obj::relocation::BpfRelocationError where U: core::convert::From +pub fn aya_obj::relocation::BpfRelocationError::into(self) -> U +impl core::convert::TryFrom for aya_obj::relocation::BpfRelocationError where U: core::convert::Into +pub type aya_obj::relocation::BpfRelocationError::Error = core::convert::Infallible +pub fn aya_obj::relocation::BpfRelocationError::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::relocation::BpfRelocationError where U: core::convert::TryFrom +pub type aya_obj::relocation::BpfRelocationError::Error = >::Error +pub fn aya_obj::relocation::BpfRelocationError::try_into(self) -> core::result::Result>::Error> +impl alloc::string::ToString for aya_obj::relocation::BpfRelocationError where T: core::fmt::Display + core::marker::Sized +pub fn aya_obj::relocation::BpfRelocationError::to_string(&self) -> alloc::string::String +impl core::any::Any for aya_obj::relocation::BpfRelocationError where T: 'static + core::marker::Sized +pub fn aya_obj::relocation::BpfRelocationError::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::relocation::BpfRelocationError where T: core::marker::Sized +pub fn aya_obj::relocation::BpfRelocationError::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::relocation::BpfRelocationError where T: core::marker::Sized +pub fn aya_obj::relocation::BpfRelocationError::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::relocation::BpfRelocationError +pub fn aya_obj::relocation::BpfRelocationError::from(t: T) -> T +pub enum aya_obj::BpfSectionKind +pub aya_obj::BpfSectionKind::Bss +pub aya_obj::BpfSectionKind::Btf +pub aya_obj::BpfSectionKind::BtfExt +pub aya_obj::BpfSectionKind::BtfMaps +pub aya_obj::BpfSectionKind::Data +pub aya_obj::BpfSectionKind::License +pub aya_obj::BpfSectionKind::Maps +pub aya_obj::BpfSectionKind::Program +pub aya_obj::BpfSectionKind::Rodata +pub aya_obj::BpfSectionKind::Text +pub aya_obj::BpfSectionKind::Undefined +pub aya_obj::BpfSectionKind::Version +impl core::clone::Clone for aya_obj::BpfSectionKind +pub fn aya_obj::BpfSectionKind::clone(&self) -> aya_obj::BpfSectionKind +impl core::cmp::Eq for aya_obj::BpfSectionKind +impl core::cmp::PartialEq for aya_obj::BpfSectionKind +pub fn aya_obj::BpfSectionKind::eq(&self, other: &aya_obj::BpfSectionKind) -> bool +impl core::fmt::Debug for aya_obj::BpfSectionKind +pub fn aya_obj::BpfSectionKind::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya_obj::BpfSectionKind +impl core::marker::StructuralEq for aya_obj::BpfSectionKind +impl core::marker::StructuralPartialEq for aya_obj::BpfSectionKind +impl core::marker::Send for aya_obj::BpfSectionKind +impl core::marker::Sync for aya_obj::BpfSectionKind +impl core::marker::Unpin for aya_obj::BpfSectionKind +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::BpfSectionKind +impl core::panic::unwind_safe::UnwindSafe for aya_obj::BpfSectionKind +impl core::convert::Into for aya_obj::BpfSectionKind where U: core::convert::From +pub fn aya_obj::BpfSectionKind::into(self) -> U +impl core::convert::TryFrom for aya_obj::BpfSectionKind where U: core::convert::Into +pub type aya_obj::BpfSectionKind::Error = core::convert::Infallible +pub fn aya_obj::BpfSectionKind::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::BpfSectionKind where U: core::convert::TryFrom +pub type aya_obj::BpfSectionKind::Error = >::Error +pub fn aya_obj::BpfSectionKind::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::BpfSectionKind where T: core::clone::Clone +pub type aya_obj::BpfSectionKind::Owned = T +pub fn aya_obj::BpfSectionKind::clone_into(&self, target: &mut T) +pub fn aya_obj::BpfSectionKind::to_owned(&self) -> T +impl core::any::Any for aya_obj::BpfSectionKind where T: 'static + core::marker::Sized +pub fn aya_obj::BpfSectionKind::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::BpfSectionKind where T: core::marker::Sized +pub fn aya_obj::BpfSectionKind::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::BpfSectionKind where T: core::marker::Sized +pub fn aya_obj::BpfSectionKind::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::BpfSectionKind +pub fn aya_obj::BpfSectionKind::from(t: T) -> T +pub enum aya_obj::Map +pub aya_obj::Map::Btf(aya_obj::maps::BtfMap) +pub aya_obj::Map::Legacy(aya_obj::maps::LegacyMap) +impl aya_obj::maps::Map +pub fn aya_obj::maps::Map::data(&self) -> &[u8] +pub fn aya_obj::maps::Map::data_mut(&mut self) -> &mut alloc::vec::Vec +pub fn aya_obj::maps::Map::key_size(&self) -> u32 +pub fn aya_obj::maps::Map::map_flags(&self) -> u32 +pub fn aya_obj::maps::Map::map_type(&self) -> u32 +pub fn aya_obj::maps::Map::max_entries(&self) -> u32 +pub fn aya_obj::maps::Map::pinning(&self) -> aya_obj::maps::PinningType +pub fn aya_obj::maps::Map::section_index(&self) -> usize +pub fn aya_obj::maps::Map::section_kind(&self) -> aya_obj::BpfSectionKind +pub fn aya_obj::maps::Map::set_max_entries(&mut self, v: u32) +pub fn aya_obj::maps::Map::symbol_index(&self) -> core::option::Option +pub fn aya_obj::maps::Map::value_size(&self) -> u32 +impl core::clone::Clone for aya_obj::maps::Map +pub fn aya_obj::maps::Map::clone(&self) -> aya_obj::maps::Map +impl core::fmt::Debug for aya_obj::maps::Map +pub fn aya_obj::maps::Map::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::maps::Map +impl core::marker::Sync for aya_obj::maps::Map +impl core::marker::Unpin for aya_obj::maps::Map +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::maps::Map +impl core::panic::unwind_safe::UnwindSafe for aya_obj::maps::Map +impl core::convert::Into for aya_obj::maps::Map where U: core::convert::From +pub fn aya_obj::maps::Map::into(self) -> U +impl core::convert::TryFrom for aya_obj::maps::Map where U: core::convert::Into +pub type aya_obj::maps::Map::Error = core::convert::Infallible +pub fn aya_obj::maps::Map::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::maps::Map where U: core::convert::TryFrom +pub type aya_obj::maps::Map::Error = >::Error +pub fn aya_obj::maps::Map::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::maps::Map where T: core::clone::Clone +pub type aya_obj::maps::Map::Owned = T +pub fn aya_obj::maps::Map::clone_into(&self, target: &mut T) +pub fn aya_obj::maps::Map::to_owned(&self) -> T +impl core::any::Any for aya_obj::maps::Map where T: 'static + core::marker::Sized +pub fn aya_obj::maps::Map::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::maps::Map where T: core::marker::Sized +pub fn aya_obj::maps::Map::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::maps::Map where T: core::marker::Sized +pub fn aya_obj::maps::Map::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::maps::Map +pub fn aya_obj::maps::Map::from(t: T) -> T +pub enum aya_obj::ParseError +pub aya_obj::ParseError::BtfError(aya_obj::btf::BtfError) +pub aya_obj::ParseError::ElfError(object::read::Error) +pub aya_obj::ParseError::InvalidGlobalData +pub aya_obj::ParseError::InvalidGlobalData::data_size: usize +pub aya_obj::ParseError::InvalidGlobalData::name: alloc::string::String +pub aya_obj::ParseError::InvalidGlobalData::sym_size: u64 +pub aya_obj::ParseError::InvalidKernelVersion +pub aya_obj::ParseError::InvalidKernelVersion::data: alloc::vec::Vec +pub aya_obj::ParseError::InvalidLicense +pub aya_obj::ParseError::InvalidLicense::data: alloc::vec::Vec +pub aya_obj::ParseError::InvalidMapDefinition +pub aya_obj::ParseError::InvalidMapDefinition::name: alloc::string::String +pub aya_obj::ParseError::InvalidProgramCode +pub aya_obj::ParseError::InvalidProgramSection +pub aya_obj::ParseError::InvalidProgramSection::section: alloc::string::String +pub aya_obj::ParseError::InvalidSymbol +pub aya_obj::ParseError::InvalidSymbol::index: usize +pub aya_obj::ParseError::InvalidSymbol::name: core::option::Option +pub aya_obj::ParseError::MapNotFound +pub aya_obj::ParseError::MapNotFound::index: usize +pub aya_obj::ParseError::MapSymbolNameNotFound +pub aya_obj::ParseError::MapSymbolNameNotFound::i: usize +pub aya_obj::ParseError::MissingLicenseNullTerminator +pub aya_obj::ParseError::MissingLicenseNullTerminator::data: alloc::vec::Vec +pub aya_obj::ParseError::NoBTF +pub aya_obj::ParseError::NoSymbolsForMapsSection +pub aya_obj::ParseError::SectionError +pub aya_obj::ParseError::SectionError::error: object::read::Error +pub aya_obj::ParseError::SectionError::index: usize +pub aya_obj::ParseError::SymbolNotFound +pub aya_obj::ParseError::SymbolNotFound::name: alloc::string::String +pub aya_obj::ParseError::SymbolTableConflict +pub aya_obj::ParseError::SymbolTableConflict::address: u64 +pub aya_obj::ParseError::SymbolTableConflict::section_index: usize +pub aya_obj::ParseError::UnknownSymbol +pub aya_obj::ParseError::UnknownSymbol::address: u64 +pub aya_obj::ParseError::UnknownSymbol::section_index: usize +pub aya_obj::ParseError::UnsupportedRelocationTarget +impl core::convert::From for aya_obj::ParseError +pub fn aya_obj::ParseError::from(source: aya_obj::btf::BtfError) -> Self +impl core::error::Error for aya_obj::ParseError +pub fn aya_obj::ParseError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)> +impl core::fmt::Display for aya_obj::ParseError +pub fn aya_obj::ParseError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::fmt::Debug for aya_obj::ParseError +pub fn aya_obj::ParseError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::ParseError +impl core::marker::Sync for aya_obj::ParseError +impl core::marker::Unpin for aya_obj::ParseError +impl !core::panic::unwind_safe::RefUnwindSafe for aya_obj::ParseError +impl !core::panic::unwind_safe::UnwindSafe for aya_obj::ParseError +impl core::any::Provider for aya_obj::ParseError where E: core::error::Error + core::marker::Sized +pub fn aya_obj::ParseError::provide<'a>(&'a self, demand: &mut core::any::Demand<'a>) +impl core::convert::Into for aya_obj::ParseError where U: core::convert::From +pub fn aya_obj::ParseError::into(self) -> U +impl core::convert::TryFrom for aya_obj::ParseError where U: core::convert::Into +pub type aya_obj::ParseError::Error = core::convert::Infallible +pub fn aya_obj::ParseError::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::ParseError where U: core::convert::TryFrom +pub type aya_obj::ParseError::Error = >::Error +pub fn aya_obj::ParseError::try_into(self) -> core::result::Result>::Error> +impl alloc::string::ToString for aya_obj::ParseError where T: core::fmt::Display + core::marker::Sized +pub fn aya_obj::ParseError::to_string(&self) -> alloc::string::String +impl core::any::Any for aya_obj::ParseError where T: 'static + core::marker::Sized +pub fn aya_obj::ParseError::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::ParseError where T: core::marker::Sized +pub fn aya_obj::ParseError::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::ParseError where T: core::marker::Sized +pub fn aya_obj::ParseError::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::ParseError +pub fn aya_obj::ParseError::from(t: T) -> T +pub enum aya_obj::ProgramSection +pub aya_obj::ProgramSection::BtfTracePoint +pub aya_obj::ProgramSection::BtfTracePoint::name: alloc::string::String +pub aya_obj::ProgramSection::CgroupDevice +pub aya_obj::ProgramSection::CgroupDevice::name: alloc::string::String +pub aya_obj::ProgramSection::CgroupSkb +pub aya_obj::ProgramSection::CgroupSkb::name: alloc::string::String +pub aya_obj::ProgramSection::CgroupSkbEgress +pub aya_obj::ProgramSection::CgroupSkbEgress::name: alloc::string::String +pub aya_obj::ProgramSection::CgroupSkbIngress +pub aya_obj::ProgramSection::CgroupSkbIngress::name: alloc::string::String +pub aya_obj::ProgramSection::CgroupSock +pub aya_obj::ProgramSection::CgroupSock::attach_type: aya_obj::programs::cgroup_sock::CgroupSockAttachType +pub aya_obj::ProgramSection::CgroupSock::name: alloc::string::String +pub aya_obj::ProgramSection::CgroupSockAddr +pub aya_obj::ProgramSection::CgroupSockAddr::attach_type: aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType +pub aya_obj::ProgramSection::CgroupSockAddr::name: alloc::string::String +pub aya_obj::ProgramSection::CgroupSockopt +pub aya_obj::ProgramSection::CgroupSockopt::attach_type: aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType +pub aya_obj::ProgramSection::CgroupSockopt::name: alloc::string::String +pub aya_obj::ProgramSection::CgroupSysctl +pub aya_obj::ProgramSection::CgroupSysctl::name: alloc::string::String +pub aya_obj::ProgramSection::Extension +pub aya_obj::ProgramSection::Extension::name: alloc::string::String +pub aya_obj::ProgramSection::FEntry +pub aya_obj::ProgramSection::FEntry::name: alloc::string::String +pub aya_obj::ProgramSection::FExit +pub aya_obj::ProgramSection::FExit::name: alloc::string::String +pub aya_obj::ProgramSection::KProbe +pub aya_obj::ProgramSection::KProbe::name: alloc::string::String +pub aya_obj::ProgramSection::KRetProbe +pub aya_obj::ProgramSection::KRetProbe::name: alloc::string::String +pub aya_obj::ProgramSection::LircMode2 +pub aya_obj::ProgramSection::LircMode2::name: alloc::string::String +pub aya_obj::ProgramSection::Lsm +pub aya_obj::ProgramSection::Lsm::name: alloc::string::String +pub aya_obj::ProgramSection::Lsm::sleepable: bool +pub aya_obj::ProgramSection::PerfEvent +pub aya_obj::ProgramSection::PerfEvent::name: alloc::string::String +pub aya_obj::ProgramSection::RawTracePoint +pub aya_obj::ProgramSection::RawTracePoint::name: alloc::string::String +pub aya_obj::ProgramSection::SchedClassifier +pub aya_obj::ProgramSection::SchedClassifier::name: alloc::string::String +pub aya_obj::ProgramSection::SkLookup +pub aya_obj::ProgramSection::SkLookup::name: alloc::string::String +pub aya_obj::ProgramSection::SkMsg +pub aya_obj::ProgramSection::SkMsg::name: alloc::string::String +pub aya_obj::ProgramSection::SkSkbStreamParser +pub aya_obj::ProgramSection::SkSkbStreamParser::name: alloc::string::String +pub aya_obj::ProgramSection::SkSkbStreamVerdict +pub aya_obj::ProgramSection::SkSkbStreamVerdict::name: alloc::string::String +pub aya_obj::ProgramSection::SockOps +pub aya_obj::ProgramSection::SockOps::name: alloc::string::String +pub aya_obj::ProgramSection::SocketFilter +pub aya_obj::ProgramSection::SocketFilter::name: alloc::string::String +pub aya_obj::ProgramSection::TracePoint +pub aya_obj::ProgramSection::TracePoint::name: alloc::string::String +pub aya_obj::ProgramSection::UProbe +pub aya_obj::ProgramSection::UProbe::name: alloc::string::String +pub aya_obj::ProgramSection::URetProbe +pub aya_obj::ProgramSection::URetProbe::name: alloc::string::String +pub aya_obj::ProgramSection::Xdp +pub aya_obj::ProgramSection::Xdp::frags: bool +pub aya_obj::ProgramSection::Xdp::name: alloc::string::String +impl aya_obj::ProgramSection +pub fn aya_obj::ProgramSection::name(&self) -> &str +impl core::str::traits::FromStr for aya_obj::ProgramSection +pub type aya_obj::ProgramSection::Err = aya_obj::ParseError +pub fn aya_obj::ProgramSection::from_str(section: &str) -> core::result::Result +impl core::clone::Clone for aya_obj::ProgramSection +pub fn aya_obj::ProgramSection::clone(&self) -> aya_obj::ProgramSection +impl core::fmt::Debug for aya_obj::ProgramSection +pub fn aya_obj::ProgramSection::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::ProgramSection +impl core::marker::Sync for aya_obj::ProgramSection +impl core::marker::Unpin for aya_obj::ProgramSection +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::ProgramSection +impl core::panic::unwind_safe::UnwindSafe for aya_obj::ProgramSection +impl core::convert::Into for aya_obj::ProgramSection where U: core::convert::From +pub fn aya_obj::ProgramSection::into(self) -> U +impl core::convert::TryFrom for aya_obj::ProgramSection where U: core::convert::Into +pub type aya_obj::ProgramSection::Error = core::convert::Infallible +pub fn aya_obj::ProgramSection::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::ProgramSection where U: core::convert::TryFrom +pub type aya_obj::ProgramSection::Error = >::Error +pub fn aya_obj::ProgramSection::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::ProgramSection where T: core::clone::Clone +pub type aya_obj::ProgramSection::Owned = T +pub fn aya_obj::ProgramSection::clone_into(&self, target: &mut T) +pub fn aya_obj::ProgramSection::to_owned(&self) -> T +impl core::any::Any for aya_obj::ProgramSection where T: 'static + core::marker::Sized +pub fn aya_obj::ProgramSection::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::ProgramSection where T: core::marker::Sized +pub fn aya_obj::ProgramSection::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::ProgramSection where T: core::marker::Sized +pub fn aya_obj::ProgramSection::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::ProgramSection +pub fn aya_obj::ProgramSection::from(t: T) -> T +pub struct aya_obj::Features +impl aya_obj::Features +pub fn aya_obj::Features::bpf_cookie(&self) -> bool +pub fn aya_obj::Features::bpf_global_data(&self) -> bool +pub fn aya_obj::Features::bpf_name(&self) -> bool +pub fn aya_obj::Features::bpf_perf_link(&self) -> bool +pub fn aya_obj::Features::bpf_probe_read_kernel(&self) -> bool +pub fn aya_obj::Features::btf(&self) -> core::option::Option<&aya_obj::btf::BtfFeatures> +impl core::default::Default for aya_obj::Features +pub fn aya_obj::Features::default() -> aya_obj::Features +impl core::fmt::Debug for aya_obj::Features +pub fn aya_obj::Features::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::Features +impl core::marker::Sync for aya_obj::Features +impl core::marker::Unpin for aya_obj::Features +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::Features +impl core::panic::unwind_safe::UnwindSafe for aya_obj::Features +impl core::convert::Into for aya_obj::Features where U: core::convert::From +pub fn aya_obj::Features::into(self) -> U +impl core::convert::TryFrom for aya_obj::Features where U: core::convert::Into +pub type aya_obj::Features::Error = core::convert::Infallible +pub fn aya_obj::Features::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::Features where U: core::convert::TryFrom +pub type aya_obj::Features::Error = >::Error +pub fn aya_obj::Features::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_obj::Features where T: 'static + core::marker::Sized +pub fn aya_obj::Features::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::Features where T: core::marker::Sized +pub fn aya_obj::Features::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::Features where T: core::marker::Sized +pub fn aya_obj::Features::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::Features +pub fn aya_obj::Features::from(t: T) -> T +pub struct aya_obj::Function +pub aya_obj::Function::address: u64 +pub aya_obj::Function::func_info: aya_obj::btf::FuncSecInfo +pub aya_obj::Function::func_info_rec_size: usize +pub aya_obj::Function::instructions: alloc::vec::Vec +pub aya_obj::Function::line_info: aya_obj::btf::LineSecInfo +pub aya_obj::Function::line_info_rec_size: usize +pub aya_obj::Function::name: alloc::string::String +pub aya_obj::Function::section_index: object::read::SectionIndex +pub aya_obj::Function::section_offset: usize +impl core::clone::Clone for aya_obj::Function +pub fn aya_obj::Function::clone(&self) -> aya_obj::Function +impl core::fmt::Debug for aya_obj::Function +pub fn aya_obj::Function::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::Function +impl core::marker::Sync for aya_obj::Function +impl core::marker::Unpin for aya_obj::Function +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::Function +impl core::panic::unwind_safe::UnwindSafe for aya_obj::Function +impl core::convert::Into for aya_obj::Function where U: core::convert::From +pub fn aya_obj::Function::into(self) -> U +impl core::convert::TryFrom for aya_obj::Function where U: core::convert::Into +pub type aya_obj::Function::Error = core::convert::Infallible +pub fn aya_obj::Function::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::Function where U: core::convert::TryFrom +pub type aya_obj::Function::Error = >::Error +pub fn aya_obj::Function::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::Function where T: core::clone::Clone +pub type aya_obj::Function::Owned = T +pub fn aya_obj::Function::clone_into(&self, target: &mut T) +pub fn aya_obj::Function::to_owned(&self) -> T +impl core::any::Any for aya_obj::Function where T: 'static + core::marker::Sized +pub fn aya_obj::Function::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::Function where T: core::marker::Sized +pub fn aya_obj::Function::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::Function where T: core::marker::Sized +pub fn aya_obj::Function::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::Function +pub fn aya_obj::Function::from(t: T) -> T +pub struct aya_obj::Object +pub aya_obj::Object::btf: core::option::Option +pub aya_obj::Object::btf_ext: core::option::Option +pub aya_obj::Object::endianness: object::endian::Endianness +pub aya_obj::Object::functions: alloc::collections::btree::map::BTreeMap<(usize, u64), aya_obj::Function> +pub aya_obj::Object::kernel_version: core::option::Option +pub aya_obj::Object::license: alloc::ffi::c_str::CString +pub aya_obj::Object::maps: std::collections::hash::map::HashMap +pub aya_obj::Object::programs: std::collections::hash::map::HashMap +impl aya_obj::Object +pub fn aya_obj::Object::fixup_and_sanitize_btf(&mut self, features: &aya_obj::btf::BtfFeatures) -> core::result::Result, aya_obj::btf::BtfError> +impl aya_obj::Object +pub fn aya_obj::Object::parse(data: &[u8]) -> core::result::Result +pub fn aya_obj::Object::patch_map_data(&mut self, globals: std::collections::hash::map::HashMap<&str, (&[u8], bool)>) -> core::result::Result<(), aya_obj::ParseError> +pub fn aya_obj::Object::sanitize_functions(&mut self, features: &aya_obj::Features) +impl aya_obj::Object +pub fn aya_obj::Object::relocate_btf(&mut self, target_btf: &aya_obj::btf::Btf) -> core::result::Result<(), aya_obj::btf::BtfRelocationError> +impl aya_obj::Object +pub fn aya_obj::Object::relocate_calls(&mut self, text_sections: &std::collections::hash::set::HashSet) -> core::result::Result<(), aya_obj::relocation::BpfRelocationError> +pub fn aya_obj::Object::relocate_maps<'a, I: core::iter::traits::iterator::Iterator, &'a aya_obj::maps::Map)>>(&mut self, maps: I, text_sections: &std::collections::hash::set::HashSet) -> core::result::Result<(), aya_obj::relocation::BpfRelocationError> +impl core::clone::Clone for aya_obj::Object +pub fn aya_obj::Object::clone(&self) -> aya_obj::Object +impl core::fmt::Debug for aya_obj::Object +pub fn aya_obj::Object::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::Object +impl core::marker::Sync for aya_obj::Object +impl core::marker::Unpin for aya_obj::Object +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::Object +impl core::panic::unwind_safe::UnwindSafe for aya_obj::Object +impl core::convert::Into for aya_obj::Object where U: core::convert::From +pub fn aya_obj::Object::into(self) -> U +impl core::convert::TryFrom for aya_obj::Object where U: core::convert::Into +pub type aya_obj::Object::Error = core::convert::Infallible +pub fn aya_obj::Object::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::Object where U: core::convert::TryFrom +pub type aya_obj::Object::Error = >::Error +pub fn aya_obj::Object::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::Object where T: core::clone::Clone +pub type aya_obj::Object::Owned = T +pub fn aya_obj::Object::clone_into(&self, target: &mut T) +pub fn aya_obj::Object::to_owned(&self) -> T +impl core::any::Any for aya_obj::Object where T: 'static + core::marker::Sized +pub fn aya_obj::Object::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::Object where T: core::marker::Sized +pub fn aya_obj::Object::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::Object where T: core::marker::Sized +pub fn aya_obj::Object::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::Object +pub fn aya_obj::Object::from(t: T) -> T +pub struct aya_obj::Program +pub aya_obj::Program::address: u64 +pub aya_obj::Program::kernel_version: core::option::Option +pub aya_obj::Program::license: alloc::ffi::c_str::CString +pub aya_obj::Program::section: aya_obj::ProgramSection +pub aya_obj::Program::section_index: usize +impl aya_obj::Program +pub fn aya_obj::Program::function_key(&self) -> (usize, u64) +impl core::clone::Clone for aya_obj::Program +pub fn aya_obj::Program::clone(&self) -> aya_obj::Program +impl core::fmt::Debug for aya_obj::Program +pub fn aya_obj::Program::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_obj::Program +impl core::marker::Sync for aya_obj::Program +impl core::marker::Unpin for aya_obj::Program +impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::Program +impl core::panic::unwind_safe::UnwindSafe for aya_obj::Program +impl core::convert::Into for aya_obj::Program where U: core::convert::From +pub fn aya_obj::Program::into(self) -> U +impl core::convert::TryFrom for aya_obj::Program where U: core::convert::Into +pub type aya_obj::Program::Error = core::convert::Infallible +pub fn aya_obj::Program::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_obj::Program where U: core::convert::TryFrom +pub type aya_obj::Program::Error = >::Error +pub fn aya_obj::Program::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya_obj::Program where T: core::clone::Clone +pub type aya_obj::Program::Owned = T +pub fn aya_obj::Program::clone_into(&self, target: &mut T) +pub fn aya_obj::Program::to_owned(&self) -> T +impl core::any::Any for aya_obj::Program where T: 'static + core::marker::Sized +pub fn aya_obj::Program::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_obj::Program where T: core::marker::Sized +pub fn aya_obj::Program::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_obj::Program where T: core::marker::Sized +pub fn aya_obj::Program::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_obj::Program +pub fn aya_obj::Program::from(t: T) -> T +pub fn aya_obj::copy_instructions(data: &[u8]) -> core::result::Result, aya_obj::ParseError> +pub fn aya_obj::parse_map_info(info: aya_obj::generated::bpf_map_info, pinned: aya_obj::maps::PinningType) -> aya_obj::maps::Map diff --git a/xtask/public-api/aya-tool.txt b/xtask/public-api/aya-tool.txt new file mode 100644 index 00000000..59e6dc4d --- /dev/null +++ b/xtask/public-api/aya-tool.txt @@ -0,0 +1,101 @@ +pub mod aya_tool +pub mod aya_tool::bindgen +pub fn aya_tool::bindgen::bpf_builder() -> bindgen::Builder +pub fn aya_tool::bindgen::user_builder() -> bindgen::Builder +pub mod aya_tool::generate +pub enum aya_tool::generate::Error +pub aya_tool::generate::Error::Bindgen(std::io::error::Error) +pub aya_tool::generate::Error::BindgenExit +pub aya_tool::generate::Error::BindgenExit::code: i32 +pub aya_tool::generate::Error::BindgenExit::stderr: alloc::string::String +pub aya_tool::generate::Error::BpfTool(std::io::error::Error) +pub aya_tool::generate::Error::BpfToolExit +pub aya_tool::generate::Error::BpfToolExit::code: i32 +pub aya_tool::generate::Error::BpfToolExit::stderr: alloc::string::String +pub aya_tool::generate::Error::ReadHeaderFile(std::io::error::Error) +pub aya_tool::generate::Error::Rustfmt(std::io::error::Error) +impl core::error::Error for aya_tool::generate::Error +pub fn aya_tool::generate::Error::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)> +impl core::fmt::Display for aya_tool::generate::Error +pub fn aya_tool::generate::Error::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::fmt::Debug for aya_tool::generate::Error +pub fn aya_tool::generate::Error::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya_tool::generate::Error +impl core::marker::Sync for aya_tool::generate::Error +impl core::marker::Unpin for aya_tool::generate::Error +impl !core::panic::unwind_safe::RefUnwindSafe for aya_tool::generate::Error +impl !core::panic::unwind_safe::UnwindSafe for aya_tool::generate::Error +impl core::any::Provider for aya_tool::generate::Error where E: core::error::Error + core::marker::Sized +pub fn aya_tool::generate::Error::provide<'a>(&'a self, demand: &mut core::any::Demand<'a>) +impl core::convert::Into for aya_tool::generate::Error where U: core::convert::From +pub fn aya_tool::generate::Error::into(self) -> U +impl core::convert::TryFrom for aya_tool::generate::Error where U: core::convert::Into +pub type aya_tool::generate::Error::Error = core::convert::Infallible +pub fn aya_tool::generate::Error::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_tool::generate::Error where U: core::convert::TryFrom +pub type aya_tool::generate::Error::Error = >::Error +pub fn aya_tool::generate::Error::try_into(self) -> core::result::Result>::Error> +impl alloc::string::ToString for aya_tool::generate::Error where T: core::fmt::Display + core::marker::Sized +pub fn aya_tool::generate::Error::to_string(&self) -> alloc::string::String +impl core::any::Any for aya_tool::generate::Error where T: 'static + core::marker::Sized +pub fn aya_tool::generate::Error::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_tool::generate::Error where T: core::marker::Sized +pub fn aya_tool::generate::Error::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_tool::generate::Error where T: core::marker::Sized +pub fn aya_tool::generate::Error::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_tool::generate::Error +pub fn aya_tool::generate::Error::from(t: T) -> T +pub enum aya_tool::generate::InputFile +pub aya_tool::generate::InputFile::Btf(std::path::PathBuf) +pub aya_tool::generate::InputFile::Header(std::path::PathBuf) +impl core::marker::Send for aya_tool::generate::InputFile +impl core::marker::Sync for aya_tool::generate::InputFile +impl core::marker::Unpin for aya_tool::generate::InputFile +impl core::panic::unwind_safe::RefUnwindSafe for aya_tool::generate::InputFile +impl core::panic::unwind_safe::UnwindSafe for aya_tool::generate::InputFile +impl core::convert::Into for aya_tool::generate::InputFile where U: core::convert::From +pub fn aya_tool::generate::InputFile::into(self) -> U +impl core::convert::TryFrom for aya_tool::generate::InputFile where U: core::convert::Into +pub type aya_tool::generate::InputFile::Error = core::convert::Infallible +pub fn aya_tool::generate::InputFile::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_tool::generate::InputFile where U: core::convert::TryFrom +pub type aya_tool::generate::InputFile::Error = >::Error +pub fn aya_tool::generate::InputFile::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_tool::generate::InputFile where T: 'static + core::marker::Sized +pub fn aya_tool::generate::InputFile::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_tool::generate::InputFile where T: core::marker::Sized +pub fn aya_tool::generate::InputFile::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_tool::generate::InputFile where T: core::marker::Sized +pub fn aya_tool::generate::InputFile::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_tool::generate::InputFile +pub fn aya_tool::generate::InputFile::from(t: T) -> T +pub fn aya_tool::generate::generate>(input_file: aya_tool::generate::InputFile, types: &[T], additional_flags: &[T]) -> core::result::Result +pub mod aya_tool::rustfmt +pub fn aya_tool::rustfmt::format(code: &str) -> core::result::Result +pub enum aya_tool::InputFile +pub aya_tool::InputFile::Btf(std::path::PathBuf) +pub aya_tool::InputFile::Header(std::path::PathBuf) +impl core::marker::Send for aya_tool::generate::InputFile +impl core::marker::Sync for aya_tool::generate::InputFile +impl core::marker::Unpin for aya_tool::generate::InputFile +impl core::panic::unwind_safe::RefUnwindSafe for aya_tool::generate::InputFile +impl core::panic::unwind_safe::UnwindSafe for aya_tool::generate::InputFile +impl core::convert::Into for aya_tool::generate::InputFile where U: core::convert::From +pub fn aya_tool::generate::InputFile::into(self) -> U +impl core::convert::TryFrom for aya_tool::generate::InputFile where U: core::convert::Into +pub type aya_tool::generate::InputFile::Error = core::convert::Infallible +pub fn aya_tool::generate::InputFile::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya_tool::generate::InputFile where U: core::convert::TryFrom +pub type aya_tool::generate::InputFile::Error = >::Error +pub fn aya_tool::generate::InputFile::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya_tool::generate::InputFile where T: 'static + core::marker::Sized +pub fn aya_tool::generate::InputFile::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya_tool::generate::InputFile where T: core::marker::Sized +pub fn aya_tool::generate::InputFile::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya_tool::generate::InputFile where T: core::marker::Sized +pub fn aya_tool::generate::InputFile::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya_tool::generate::InputFile +pub fn aya_tool::generate::InputFile::from(t: T) -> T +pub fn aya_tool::generate>(input_file: aya_tool::generate::InputFile, types: &[T], additional_flags: &[T]) -> core::result::Result +pub fn aya_tool::write_to_file>(path: T, code: &str) -> core::result::Result<(), std::io::error::Error> +pub fn aya_tool::write_to_file_fmt>(path: T, code: &str) -> core::result::Result<(), std::io::error::Error> diff --git a/xtask/public-api/aya.txt b/xtask/public-api/aya.txt new file mode 100644 index 00000000..c2985223 --- /dev/null +++ b/xtask/public-api/aya.txt @@ -0,0 +1,7262 @@ +pub mod aya +pub use aya::Btf +pub use aya::BtfError +pub use aya::Endianness +pub use aya::PinningType +pub use aya::bpf_map_def +pub mod aya::maps +pub mod aya::maps::array +pub struct aya::maps::array::Array +impl, V: aya::Pod> aya::maps::array::Array +pub fn aya::maps::array::Array::get(&self, index: &u32, flags: u64) -> core::result::Result +pub fn aya::maps::array::Array::iter(&self) -> impl core::iter::traits::iterator::Iterator> + '_ +pub fn aya::maps::array::Array::len(&self) -> u32 +impl, V: aya::Pod> aya::maps::array::Array +pub fn aya::maps::array::Array::set(&mut self, index: u32, value: impl core::borrow::Borrow, flags: u64) -> core::result::Result<(), aya::maps::MapError> +impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::array::Array<&'a aya::maps::MapData, V> +pub type aya::maps::array::Array<&'a aya::maps::MapData, V>::Error = aya::maps::MapError +pub fn aya::maps::array::Array<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::array::Array<&'a mut aya::maps::MapData, V> +pub type aya::maps::array::Array<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError +pub fn aya::maps::array::Array<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl, V: aya::Pod> aya::maps::IterableMap for aya::maps::array::Array +pub fn aya::maps::array::Array::get(&self, index: &u32) -> core::result::Result +pub fn aya::maps::array::Array::map(&self) -> &aya::maps::MapData +impl core::convert::TryFrom for aya::maps::array::Array +pub type aya::maps::array::Array::Error = aya::maps::MapError +pub fn aya::maps::array::Array::try_from(map: aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::marker::Send for aya::maps::array::Array where T: core::marker::Send, V: core::marker::Send +impl core::marker::Sync for aya::maps::array::Array where T: core::marker::Sync, V: core::marker::Sync +impl core::marker::Unpin for aya::maps::array::Array where T: core::marker::Unpin, V: core::marker::Unpin +impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::array::Array where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe +impl core::panic::unwind_safe::UnwindSafe for aya::maps::array::Array where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya::maps::array::Array where U: core::convert::From +pub fn aya::maps::array::Array::into(self) -> U +impl core::convert::TryFrom for aya::maps::array::Array where U: core::convert::Into +pub type aya::maps::array::Array::Error = core::convert::Infallible +pub fn aya::maps::array::Array::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::maps::array::Array where U: core::convert::TryFrom +pub type aya::maps::array::Array::Error = >::Error +pub fn aya::maps::array::Array::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::maps::array::Array where T: 'static + core::marker::Sized +pub fn aya::maps::array::Array::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::maps::array::Array where T: core::marker::Sized +pub fn aya::maps::array::Array::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::maps::array::Array where T: core::marker::Sized +pub fn aya::maps::array::Array::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::maps::array::Array +pub fn aya::maps::array::Array::from(t: T) -> T +pub struct aya::maps::array::PerCpuArray +impl, V: aya::Pod> aya::maps::PerCpuArray +pub fn aya::maps::PerCpuArray::get(&self, index: &u32, flags: u64) -> core::result::Result, aya::maps::MapError> +pub fn aya::maps::PerCpuArray::iter(&self) -> impl core::iter::traits::iterator::Iterator, aya::maps::MapError>> + '_ +pub fn aya::maps::PerCpuArray::len(&self) -> u32 +impl, V: aya::Pod> aya::maps::PerCpuArray +pub fn aya::maps::PerCpuArray::set(&mut self, index: u32, values: aya::maps::PerCpuValues, flags: u64) -> core::result::Result<(), aya::maps::MapError> +impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::PerCpuArray<&'a aya::maps::MapData, V> +pub type aya::maps::PerCpuArray<&'a aya::maps::MapData, V>::Error = aya::maps::MapError +pub fn aya::maps::PerCpuArray<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V> +pub type aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError +pub fn aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl, V: aya::Pod> aya::maps::IterableMap> for aya::maps::PerCpuArray +pub fn aya::maps::PerCpuArray::get(&self, index: &u32) -> core::result::Result, aya::maps::MapError> +pub fn aya::maps::PerCpuArray::map(&self) -> &aya::maps::MapData +impl core::convert::TryFrom for aya::maps::PerCpuArray +pub type aya::maps::PerCpuArray::Error = aya::maps::MapError +pub fn aya::maps::PerCpuArray::try_from(map: aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::marker::Send for aya::maps::PerCpuArray where T: core::marker::Send, V: core::marker::Send +impl core::marker::Sync for aya::maps::PerCpuArray where T: core::marker::Sync, V: core::marker::Sync +impl core::marker::Unpin for aya::maps::PerCpuArray where T: core::marker::Unpin, V: core::marker::Unpin +impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::PerCpuArray where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe +impl core::panic::unwind_safe::UnwindSafe for aya::maps::PerCpuArray where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya::maps::PerCpuArray where U: core::convert::From +pub fn aya::maps::PerCpuArray::into(self) -> U +impl core::convert::TryFrom for aya::maps::PerCpuArray where U: core::convert::Into +pub type aya::maps::PerCpuArray::Error = core::convert::Infallible +pub fn aya::maps::PerCpuArray::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::maps::PerCpuArray where U: core::convert::TryFrom +pub type aya::maps::PerCpuArray::Error = >::Error +pub fn aya::maps::PerCpuArray::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::maps::PerCpuArray where T: 'static + core::marker::Sized +pub fn aya::maps::PerCpuArray::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::maps::PerCpuArray where T: core::marker::Sized +pub fn aya::maps::PerCpuArray::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::maps::PerCpuArray where T: core::marker::Sized +pub fn aya::maps::PerCpuArray::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::maps::PerCpuArray +pub fn aya::maps::PerCpuArray::from(t: T) -> T +pub struct aya::maps::array::ProgramArray +impl> aya::maps::ProgramArray +pub fn aya::maps::ProgramArray::indices(&self) -> aya::maps::MapKeys<'_, u32> +impl> aya::maps::ProgramArray +pub fn aya::maps::ProgramArray::clear_index(&mut self, index: &u32) -> core::result::Result<(), aya::maps::MapError> +pub fn aya::maps::ProgramArray::set(&mut self, index: u32, program: aya::programs::ProgramFd, flags: u64) -> core::result::Result<(), aya::maps::MapError> +impl core::convert::TryFrom for aya::maps::ProgramArray +pub type aya::maps::ProgramArray::Error = aya::maps::MapError +pub fn aya::maps::ProgramArray::try_from(map: aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::ProgramArray<&'a aya::maps::MapData> +pub type aya::maps::ProgramArray<&'a aya::maps::MapData>::Error = aya::maps::MapError +pub fn aya::maps::ProgramArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::ProgramArray<&'a mut aya::maps::MapData> +pub type aya::maps::ProgramArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError +pub fn aya::maps::ProgramArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::marker::Send for aya::maps::ProgramArray where T: core::marker::Send +impl core::marker::Sync for aya::maps::ProgramArray where T: core::marker::Sync +impl core::marker::Unpin for aya::maps::ProgramArray where T: core::marker::Unpin +impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::ProgramArray where T: core::panic::unwind_safe::RefUnwindSafe +impl core::panic::unwind_safe::UnwindSafe for aya::maps::ProgramArray where T: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya::maps::ProgramArray where U: core::convert::From +pub fn aya::maps::ProgramArray::into(self) -> U +impl core::convert::TryFrom for aya::maps::ProgramArray where U: core::convert::Into +pub type aya::maps::ProgramArray::Error = core::convert::Infallible +pub fn aya::maps::ProgramArray::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::maps::ProgramArray where U: core::convert::TryFrom +pub type aya::maps::ProgramArray::Error = >::Error +pub fn aya::maps::ProgramArray::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::maps::ProgramArray where T: 'static + core::marker::Sized +pub fn aya::maps::ProgramArray::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::maps::ProgramArray where T: core::marker::Sized +pub fn aya::maps::ProgramArray::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::maps::ProgramArray where T: core::marker::Sized +pub fn aya::maps::ProgramArray::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::maps::ProgramArray +pub fn aya::maps::ProgramArray::from(t: T) -> T +pub mod aya::maps::bloom_filter +pub struct aya::maps::bloom_filter::BloomFilter +impl, V: aya::Pod> aya::maps::bloom_filter::BloomFilter +pub fn aya::maps::bloom_filter::BloomFilter::contains(&self, value: &V, flags: u64) -> core::result::Result<(), aya::maps::MapError> +pub fn aya::maps::bloom_filter::BloomFilter::insert(&self, value: impl core::borrow::Borrow, flags: u64) -> core::result::Result<(), aya::maps::MapError> +impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V> +pub type aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>::Error = aya::maps::MapError +pub fn aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V> +pub type aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError +pub fn aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::convert::TryFrom for aya::maps::bloom_filter::BloomFilter +pub type aya::maps::bloom_filter::BloomFilter::Error = aya::maps::MapError +pub fn aya::maps::bloom_filter::BloomFilter::try_from(map: aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::fmt::Debug for aya::maps::bloom_filter::BloomFilter +pub fn aya::maps::bloom_filter::BloomFilter::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::maps::bloom_filter::BloomFilter where T: core::marker::Send, V: core::marker::Send +impl core::marker::Sync for aya::maps::bloom_filter::BloomFilter where T: core::marker::Sync, V: core::marker::Sync +impl core::marker::Unpin for aya::maps::bloom_filter::BloomFilter where T: core::marker::Unpin, V: core::marker::Unpin +impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::bloom_filter::BloomFilter where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe +impl core::panic::unwind_safe::UnwindSafe for aya::maps::bloom_filter::BloomFilter where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya::maps::bloom_filter::BloomFilter where U: core::convert::From +pub fn aya::maps::bloom_filter::BloomFilter::into(self) -> U +impl core::convert::TryFrom for aya::maps::bloom_filter::BloomFilter where U: core::convert::Into +pub type aya::maps::bloom_filter::BloomFilter::Error = core::convert::Infallible +pub fn aya::maps::bloom_filter::BloomFilter::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::maps::bloom_filter::BloomFilter where U: core::convert::TryFrom +pub type aya::maps::bloom_filter::BloomFilter::Error = >::Error +pub fn aya::maps::bloom_filter::BloomFilter::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::maps::bloom_filter::BloomFilter where T: 'static + core::marker::Sized +pub fn aya::maps::bloom_filter::BloomFilter::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::maps::bloom_filter::BloomFilter where T: core::marker::Sized +pub fn aya::maps::bloom_filter::BloomFilter::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::maps::bloom_filter::BloomFilter where T: core::marker::Sized +pub fn aya::maps::bloom_filter::BloomFilter::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::maps::bloom_filter::BloomFilter +pub fn aya::maps::bloom_filter::BloomFilter::from(t: T) -> T +pub mod aya::maps::hash_map +pub struct aya::maps::hash_map::HashMap +impl, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::HashMap +pub fn aya::maps::hash_map::HashMap::get(&self, key: &K, flags: u64) -> core::result::Result +pub fn aya::maps::hash_map::HashMap::iter(&self) -> aya::maps::MapIter<'_, K, V, Self> +pub fn aya::maps::hash_map::HashMap::keys(&self) -> aya::maps::MapKeys<'_, K> +impl, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::HashMap +pub fn aya::maps::hash_map::HashMap::insert(&mut self, key: impl core::borrow::Borrow, value: impl core::borrow::Borrow, flags: u64) -> core::result::Result<(), aya::maps::MapError> +pub fn aya::maps::hash_map::HashMap::remove(&mut self, key: &K) -> core::result::Result<(), aya::maps::MapError> +impl<'a, V: aya::Pod, K: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::hash_map::HashMap<&'a aya::maps::MapData, V, K> +pub type aya::maps::hash_map::HashMap<&'a aya::maps::MapData, V, K>::Error = aya::maps::MapError +pub fn aya::maps::hash_map::HashMap<&'a aya::maps::MapData, V, K>::try_from(map: &'a aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a, V: aya::Pod, K: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, V, K> +pub type aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, V, K>::Error = aya::maps::MapError +pub fn aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, V, K>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap for aya::maps::hash_map::HashMap +pub fn aya::maps::hash_map::HashMap::get(&self, key: &K) -> core::result::Result +pub fn aya::maps::hash_map::HashMap::map(&self) -> &aya::maps::MapData +impl core::convert::TryFrom for aya::maps::hash_map::HashMap +pub type aya::maps::hash_map::HashMap::Error = aya::maps::MapError +pub fn aya::maps::hash_map::HashMap::try_from(map: aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::fmt::Debug for aya::maps::hash_map::HashMap +pub fn aya::maps::hash_map::HashMap::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::maps::hash_map::HashMap where K: core::marker::Send, T: core::marker::Send, V: core::marker::Send +impl core::marker::Sync for aya::maps::hash_map::HashMap where K: core::marker::Sync, T: core::marker::Sync, V: core::marker::Sync +impl core::marker::Unpin for aya::maps::hash_map::HashMap where K: core::marker::Unpin, T: core::marker::Unpin, V: core::marker::Unpin +impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::hash_map::HashMap where K: core::panic::unwind_safe::RefUnwindSafe, T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe +impl core::panic::unwind_safe::UnwindSafe for aya::maps::hash_map::HashMap where K: core::panic::unwind_safe::UnwindSafe, T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya::maps::hash_map::HashMap where U: core::convert::From +pub fn aya::maps::hash_map::HashMap::into(self) -> U +impl core::convert::TryFrom for aya::maps::hash_map::HashMap where U: core::convert::Into +pub type aya::maps::hash_map::HashMap::Error = core::convert::Infallible +pub fn aya::maps::hash_map::HashMap::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::maps::hash_map::HashMap where U: core::convert::TryFrom +pub type aya::maps::hash_map::HashMap::Error = >::Error +pub fn aya::maps::hash_map::HashMap::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::maps::hash_map::HashMap where T: 'static + core::marker::Sized +pub fn aya::maps::hash_map::HashMap::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::maps::hash_map::HashMap where T: core::marker::Sized +pub fn aya::maps::hash_map::HashMap::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::maps::hash_map::HashMap where T: core::marker::Sized +pub fn aya::maps::hash_map::HashMap::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::maps::hash_map::HashMap +pub fn aya::maps::hash_map::HashMap::from(t: T) -> T +pub struct aya::maps::hash_map::PerCpuHashMap +impl, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::PerCpuHashMap +pub fn aya::maps::hash_map::PerCpuHashMap::get(&self, key: &K, flags: u64) -> core::result::Result, aya::maps::MapError> +pub fn aya::maps::hash_map::PerCpuHashMap::iter(&self) -> aya::maps::MapIter<'_, K, aya::maps::PerCpuValues, Self> +pub fn aya::maps::hash_map::PerCpuHashMap::keys(&self) -> aya::maps::MapKeys<'_, K> +impl, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::PerCpuHashMap +pub fn aya::maps::hash_map::PerCpuHashMap::insert(&mut self, key: impl core::borrow::Borrow, values: aya::maps::PerCpuValues, flags: u64) -> core::result::Result<(), aya::maps::MapError> +pub fn aya::maps::hash_map::PerCpuHashMap::remove(&mut self, key: &K) -> core::result::Result<(), aya::maps::MapError> +impl<'a, V: aya::Pod, K: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, V, K> +pub type aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, V, K>::Error = aya::maps::MapError +pub fn aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, V, K>::try_from(map: &'a aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a, V: aya::Pod, K: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, V, K> +pub type aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, V, K>::Error = aya::maps::MapError +pub fn aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, V, K>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap> for aya::maps::hash_map::PerCpuHashMap +pub fn aya::maps::hash_map::PerCpuHashMap::get(&self, key: &K) -> core::result::Result, aya::maps::MapError> +pub fn aya::maps::hash_map::PerCpuHashMap::map(&self) -> &aya::maps::MapData +impl core::convert::TryFrom for aya::maps::hash_map::PerCpuHashMap +pub type aya::maps::hash_map::PerCpuHashMap::Error = aya::maps::MapError +pub fn aya::maps::hash_map::PerCpuHashMap::try_from(map: aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::marker::Send for aya::maps::hash_map::PerCpuHashMap where K: core::marker::Send, T: core::marker::Send, V: core::marker::Send +impl core::marker::Sync for aya::maps::hash_map::PerCpuHashMap where K: core::marker::Sync, T: core::marker::Sync, V: core::marker::Sync +impl core::marker::Unpin for aya::maps::hash_map::PerCpuHashMap where K: core::marker::Unpin, T: core::marker::Unpin, V: core::marker::Unpin +impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::hash_map::PerCpuHashMap where K: core::panic::unwind_safe::RefUnwindSafe, T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe +impl core::panic::unwind_safe::UnwindSafe for aya::maps::hash_map::PerCpuHashMap where K: core::panic::unwind_safe::UnwindSafe, T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya::maps::hash_map::PerCpuHashMap where U: core::convert::From +pub fn aya::maps::hash_map::PerCpuHashMap::into(self) -> U +impl core::convert::TryFrom for aya::maps::hash_map::PerCpuHashMap where U: core::convert::Into +pub type aya::maps::hash_map::PerCpuHashMap::Error = core::convert::Infallible +pub fn aya::maps::hash_map::PerCpuHashMap::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::maps::hash_map::PerCpuHashMap where U: core::convert::TryFrom +pub type aya::maps::hash_map::PerCpuHashMap::Error = >::Error +pub fn aya::maps::hash_map::PerCpuHashMap::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::maps::hash_map::PerCpuHashMap where T: 'static + core::marker::Sized +pub fn aya::maps::hash_map::PerCpuHashMap::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::maps::hash_map::PerCpuHashMap where T: core::marker::Sized +pub fn aya::maps::hash_map::PerCpuHashMap::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::maps::hash_map::PerCpuHashMap where T: core::marker::Sized +pub fn aya::maps::hash_map::PerCpuHashMap::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::maps::hash_map::PerCpuHashMap +pub fn aya::maps::hash_map::PerCpuHashMap::from(t: T) -> T +pub mod aya::maps::lpm_trie +#[repr(packed)] pub struct aya::maps::lpm_trie::Key +impl aya::maps::lpm_trie::Key +pub fn aya::maps::lpm_trie::Key::data(&self) -> K +pub fn aya::maps::lpm_trie::Key::new(prefix_len: u32, data: K) -> Self +pub fn aya::maps::lpm_trie::Key::prefix_len(&self) -> u32 +impl aya::Pod for aya::maps::lpm_trie::Key +impl core::clone::Clone for aya::maps::lpm_trie::Key +pub fn aya::maps::lpm_trie::Key::clone(&self) -> Self +impl core::marker::Copy for aya::maps::lpm_trie::Key +impl, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap, V> for aya::maps::lpm_trie::LpmTrie +pub fn aya::maps::lpm_trie::LpmTrie::get(&self, key: &aya::maps::lpm_trie::Key) -> core::result::Result +pub fn aya::maps::lpm_trie::LpmTrie::map(&self) -> &aya::maps::MapData +impl core::marker::Send for aya::maps::lpm_trie::Key where K: core::marker::Send +impl core::marker::Sync for aya::maps::lpm_trie::Key where K: core::marker::Sync +impl core::marker::Unpin for aya::maps::lpm_trie::Key where K: core::marker::Unpin +impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::lpm_trie::Key where K: core::panic::unwind_safe::RefUnwindSafe +impl core::panic::unwind_safe::UnwindSafe for aya::maps::lpm_trie::Key where K: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya::maps::lpm_trie::Key where U: core::convert::From +pub fn aya::maps::lpm_trie::Key::into(self) -> U +impl core::convert::TryFrom for aya::maps::lpm_trie::Key where U: core::convert::Into +pub type aya::maps::lpm_trie::Key::Error = core::convert::Infallible +pub fn aya::maps::lpm_trie::Key::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::maps::lpm_trie::Key where U: core::convert::TryFrom +pub type aya::maps::lpm_trie::Key::Error = >::Error +pub fn aya::maps::lpm_trie::Key::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya::maps::lpm_trie::Key where T: core::clone::Clone +pub type aya::maps::lpm_trie::Key::Owned = T +pub fn aya::maps::lpm_trie::Key::clone_into(&self, target: &mut T) +pub fn aya::maps::lpm_trie::Key::to_owned(&self) -> T +impl core::any::Any for aya::maps::lpm_trie::Key where T: 'static + core::marker::Sized +pub fn aya::maps::lpm_trie::Key::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::maps::lpm_trie::Key where T: core::marker::Sized +pub fn aya::maps::lpm_trie::Key::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::maps::lpm_trie::Key where T: core::marker::Sized +pub fn aya::maps::lpm_trie::Key::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::maps::lpm_trie::Key +pub fn aya::maps::lpm_trie::Key::from(t: T) -> T +pub struct aya::maps::lpm_trie::LpmTrie +impl, K: aya::Pod, V: aya::Pod> aya::maps::lpm_trie::LpmTrie +pub fn aya::maps::lpm_trie::LpmTrie::get(&self, key: &aya::maps::lpm_trie::Key, flags: u64) -> core::result::Result +pub fn aya::maps::lpm_trie::LpmTrie::iter(&self) -> aya::maps::MapIter<'_, aya::maps::lpm_trie::Key, V, Self> +pub fn aya::maps::lpm_trie::LpmTrie::keys(&self) -> aya::maps::MapKeys<'_, aya::maps::lpm_trie::Key> +impl, K: aya::Pod, V: aya::Pod> aya::maps::lpm_trie::LpmTrie +pub fn aya::maps::lpm_trie::LpmTrie::insert(&mut self, key: &aya::maps::lpm_trie::Key, value: impl core::borrow::Borrow, flags: u64) -> core::result::Result<(), aya::maps::MapError> +pub fn aya::maps::lpm_trie::LpmTrie::remove(&mut self, key: &aya::maps::lpm_trie::Key) -> core::result::Result<(), aya::maps::MapError> +impl<'a, V: aya::Pod, K: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, V, K> +pub type aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, V, K>::Error = aya::maps::MapError +pub fn aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, V, K>::try_from(map: &'a aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a, V: aya::Pod, K: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, V, K> +pub type aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, V, K>::Error = aya::maps::MapError +pub fn aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, V, K>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap, V> for aya::maps::lpm_trie::LpmTrie +pub fn aya::maps::lpm_trie::LpmTrie::get(&self, key: &aya::maps::lpm_trie::Key) -> core::result::Result +pub fn aya::maps::lpm_trie::LpmTrie::map(&self) -> &aya::maps::MapData +impl core::convert::TryFrom for aya::maps::lpm_trie::LpmTrie +pub type aya::maps::lpm_trie::LpmTrie::Error = aya::maps::MapError +pub fn aya::maps::lpm_trie::LpmTrie::try_from(map: aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::fmt::Debug for aya::maps::lpm_trie::LpmTrie +pub fn aya::maps::lpm_trie::LpmTrie::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::maps::lpm_trie::LpmTrie where K: core::marker::Send, T: core::marker::Send, V: core::marker::Send +impl core::marker::Sync for aya::maps::lpm_trie::LpmTrie where K: core::marker::Sync, T: core::marker::Sync, V: core::marker::Sync +impl core::marker::Unpin for aya::maps::lpm_trie::LpmTrie where K: core::marker::Unpin, T: core::marker::Unpin, V: core::marker::Unpin +impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::lpm_trie::LpmTrie where K: core::panic::unwind_safe::RefUnwindSafe, T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe +impl core::panic::unwind_safe::UnwindSafe for aya::maps::lpm_trie::LpmTrie where K: core::panic::unwind_safe::UnwindSafe, T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya::maps::lpm_trie::LpmTrie where U: core::convert::From +pub fn aya::maps::lpm_trie::LpmTrie::into(self) -> U +impl core::convert::TryFrom for aya::maps::lpm_trie::LpmTrie where U: core::convert::Into +pub type aya::maps::lpm_trie::LpmTrie::Error = core::convert::Infallible +pub fn aya::maps::lpm_trie::LpmTrie::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::maps::lpm_trie::LpmTrie where U: core::convert::TryFrom +pub type aya::maps::lpm_trie::LpmTrie::Error = >::Error +pub fn aya::maps::lpm_trie::LpmTrie::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::maps::lpm_trie::LpmTrie where T: 'static + core::marker::Sized +pub fn aya::maps::lpm_trie::LpmTrie::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::maps::lpm_trie::LpmTrie where T: core::marker::Sized +pub fn aya::maps::lpm_trie::LpmTrie::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::maps::lpm_trie::LpmTrie where T: core::marker::Sized +pub fn aya::maps::lpm_trie::LpmTrie::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::maps::lpm_trie::LpmTrie +pub fn aya::maps::lpm_trie::LpmTrie::from(t: T) -> T +pub mod aya::maps::perf +pub enum aya::maps::perf::PerfBufferError +pub aya::maps::perf::PerfBufferError::IOError(std::io::error::Error) +pub aya::maps::perf::PerfBufferError::InvalidPageCount +pub aya::maps::perf::PerfBufferError::InvalidPageCount::page_count: usize +pub aya::maps::perf::PerfBufferError::MMapError +pub aya::maps::perf::PerfBufferError::MMapError::io_error: std::io::error::Error +pub aya::maps::perf::PerfBufferError::MoreSpaceNeeded +pub aya::maps::perf::PerfBufferError::MoreSpaceNeeded::size: usize +pub aya::maps::perf::PerfBufferError::NoBuffers +pub aya::maps::perf::PerfBufferError::OpenError +pub aya::maps::perf::PerfBufferError::OpenError::io_error: std::io::error::Error +pub aya::maps::perf::PerfBufferError::PerfEventEnableError +pub aya::maps::perf::PerfBufferError::PerfEventEnableError::io_error: std::io::error::Error +impl core::convert::From for aya::maps::perf::PerfBufferError +pub fn aya::maps::perf::PerfBufferError::from(source: std::io::error::Error) -> Self +impl core::error::Error for aya::maps::perf::PerfBufferError +pub fn aya::maps::perf::PerfBufferError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)> +impl core::fmt::Display for aya::maps::perf::PerfBufferError +pub fn aya::maps::perf::PerfBufferError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::fmt::Debug for aya::maps::perf::PerfBufferError +pub fn aya::maps::perf::PerfBufferError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::maps::perf::PerfBufferError +impl core::marker::Sync for aya::maps::perf::PerfBufferError +impl core::marker::Unpin for aya::maps::perf::PerfBufferError +impl !core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::PerfBufferError +impl !core::panic::unwind_safe::UnwindSafe for aya::maps::perf::PerfBufferError +impl core::any::Provider for aya::maps::perf::PerfBufferError where E: core::error::Error + core::marker::Sized +pub fn aya::maps::perf::PerfBufferError::provide<'a>(&'a self, demand: &mut core::any::Demand<'a>) +impl core::convert::Into for aya::maps::perf::PerfBufferError where U: core::convert::From +pub fn aya::maps::perf::PerfBufferError::into(self) -> U +impl core::convert::TryFrom for aya::maps::perf::PerfBufferError where U: core::convert::Into +pub type aya::maps::perf::PerfBufferError::Error = core::convert::Infallible +pub fn aya::maps::perf::PerfBufferError::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::maps::perf::PerfBufferError where U: core::convert::TryFrom +pub type aya::maps::perf::PerfBufferError::Error = >::Error +pub fn aya::maps::perf::PerfBufferError::try_into(self) -> core::result::Result>::Error> +impl alloc::string::ToString for aya::maps::perf::PerfBufferError where T: core::fmt::Display + core::marker::Sized +pub fn aya::maps::perf::PerfBufferError::to_string(&self) -> alloc::string::String +impl core::any::Any for aya::maps::perf::PerfBufferError where T: 'static + core::marker::Sized +pub fn aya::maps::perf::PerfBufferError::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::maps::perf::PerfBufferError where T: core::marker::Sized +pub fn aya::maps::perf::PerfBufferError::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::maps::perf::PerfBufferError where T: core::marker::Sized +pub fn aya::maps::perf::PerfBufferError::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::maps::perf::PerfBufferError +pub fn aya::maps::perf::PerfBufferError::from(t: T) -> T +pub struct aya::maps::perf::AsyncPerfEventArray +impl + core::borrow::Borrow> aya::maps::perf::AsyncPerfEventArray +pub fn aya::maps::perf::AsyncPerfEventArray::open(&mut self, index: u32, page_count: core::option::Option) -> core::result::Result, aya::maps::perf::PerfBufferError> +impl core::convert::TryFrom for aya::maps::perf::AsyncPerfEventArray +pub type aya::maps::perf::AsyncPerfEventArray::Error = aya::maps::MapError +pub fn aya::maps::perf::AsyncPerfEventArray::try_from(map: aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData> +pub type aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>::Error = aya::maps::MapError +pub fn aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData> +pub type aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError +pub fn aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::marker::Send for aya::maps::perf::AsyncPerfEventArray where T: core::marker::Send + core::marker::Sync +impl core::marker::Sync for aya::maps::perf::AsyncPerfEventArray where T: core::marker::Send + core::marker::Sync +impl core::marker::Unpin for aya::maps::perf::AsyncPerfEventArray +impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::AsyncPerfEventArray where T: core::panic::unwind_safe::RefUnwindSafe +impl core::panic::unwind_safe::UnwindSafe for aya::maps::perf::AsyncPerfEventArray where T: core::panic::unwind_safe::RefUnwindSafe +impl core::convert::Into for aya::maps::perf::AsyncPerfEventArray where U: core::convert::From +pub fn aya::maps::perf::AsyncPerfEventArray::into(self) -> U +impl core::convert::TryFrom for aya::maps::perf::AsyncPerfEventArray where U: core::convert::Into +pub type aya::maps::perf::AsyncPerfEventArray::Error = core::convert::Infallible +pub fn aya::maps::perf::AsyncPerfEventArray::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::maps::perf::AsyncPerfEventArray where U: core::convert::TryFrom +pub type aya::maps::perf::AsyncPerfEventArray::Error = >::Error +pub fn aya::maps::perf::AsyncPerfEventArray::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::maps::perf::AsyncPerfEventArray where T: 'static + core::marker::Sized +pub fn aya::maps::perf::AsyncPerfEventArray::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::maps::perf::AsyncPerfEventArray where T: core::marker::Sized +pub fn aya::maps::perf::AsyncPerfEventArray::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::maps::perf::AsyncPerfEventArray where T: core::marker::Sized +pub fn aya::maps::perf::AsyncPerfEventArray::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::maps::perf::AsyncPerfEventArray +pub fn aya::maps::perf::AsyncPerfEventArray::from(t: T) -> T +pub struct aya::maps::perf::AsyncPerfEventArrayBuffer +impl + core::borrow::Borrow> aya::maps::perf::AsyncPerfEventArrayBuffer +pub async fn aya::maps::perf::AsyncPerfEventArrayBuffer::read_events(&mut self, buffers: &mut [bytes::bytes_mut::BytesMut]) -> core::result::Result +impl core::marker::Send for aya::maps::perf::AsyncPerfEventArrayBuffer where T: core::marker::Send + core::marker::Sync +impl core::marker::Sync for aya::maps::perf::AsyncPerfEventArrayBuffer where T: core::marker::Send + core::marker::Sync +impl core::marker::Unpin for aya::maps::perf::AsyncPerfEventArrayBuffer +impl !core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::AsyncPerfEventArrayBuffer +impl !core::panic::unwind_safe::UnwindSafe for aya::maps::perf::AsyncPerfEventArrayBuffer +impl core::convert::Into for aya::maps::perf::AsyncPerfEventArrayBuffer where U: core::convert::From +pub fn aya::maps::perf::AsyncPerfEventArrayBuffer::into(self) -> U +impl core::convert::TryFrom for aya::maps::perf::AsyncPerfEventArrayBuffer where U: core::convert::Into +pub type aya::maps::perf::AsyncPerfEventArrayBuffer::Error = core::convert::Infallible +pub fn aya::maps::perf::AsyncPerfEventArrayBuffer::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::maps::perf::AsyncPerfEventArrayBuffer where U: core::convert::TryFrom +pub type aya::maps::perf::AsyncPerfEventArrayBuffer::Error = >::Error +pub fn aya::maps::perf::AsyncPerfEventArrayBuffer::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::maps::perf::AsyncPerfEventArrayBuffer where T: 'static + core::marker::Sized +pub fn aya::maps::perf::AsyncPerfEventArrayBuffer::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::maps::perf::AsyncPerfEventArrayBuffer where T: core::marker::Sized +pub fn aya::maps::perf::AsyncPerfEventArrayBuffer::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::maps::perf::AsyncPerfEventArrayBuffer where T: core::marker::Sized +pub fn aya::maps::perf::AsyncPerfEventArrayBuffer::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::maps::perf::AsyncPerfEventArrayBuffer +pub fn aya::maps::perf::AsyncPerfEventArrayBuffer::from(t: T) -> T +pub struct aya::maps::perf::Events +pub aya::maps::perf::Events::lost: usize +pub aya::maps::perf::Events::read: usize +impl core::cmp::Eq for aya::maps::perf::Events +impl core::cmp::PartialEq for aya::maps::perf::Events +pub fn aya::maps::perf::Events::eq(&self, other: &aya::maps::perf::Events) -> bool +impl core::fmt::Debug for aya::maps::perf::Events +pub fn aya::maps::perf::Events::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::StructuralEq for aya::maps::perf::Events +impl core::marker::StructuralPartialEq for aya::maps::perf::Events +impl core::marker::Send for aya::maps::perf::Events +impl core::marker::Sync for aya::maps::perf::Events +impl core::marker::Unpin for aya::maps::perf::Events +impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::Events +impl core::panic::unwind_safe::UnwindSafe for aya::maps::perf::Events +impl core::convert::Into for aya::maps::perf::Events where U: core::convert::From +pub fn aya::maps::perf::Events::into(self) -> U +impl core::convert::TryFrom for aya::maps::perf::Events where U: core::convert::Into +pub type aya::maps::perf::Events::Error = core::convert::Infallible +pub fn aya::maps::perf::Events::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::maps::perf::Events where U: core::convert::TryFrom +pub type aya::maps::perf::Events::Error = >::Error +pub fn aya::maps::perf::Events::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::maps::perf::Events where T: 'static + core::marker::Sized +pub fn aya::maps::perf::Events::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::maps::perf::Events where T: core::marker::Sized +pub fn aya::maps::perf::Events::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::maps::perf::Events where T: core::marker::Sized +pub fn aya::maps::perf::Events::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::maps::perf::Events +pub fn aya::maps::perf::Events::from(t: T) -> T +pub struct aya::maps::perf::PerfEventArray +impl + core::borrow::Borrow> aya::maps::perf::PerfEventArray +pub fn aya::maps::perf::PerfEventArray::open(&mut self, index: u32, page_count: core::option::Option) -> core::result::Result, aya::maps::perf::PerfBufferError> +impl core::convert::TryFrom for aya::maps::perf::PerfEventArray +pub type aya::maps::perf::PerfEventArray::Error = aya::maps::MapError +pub fn aya::maps::perf::PerfEventArray::try_from(map: aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::perf::PerfEventArray<&'a aya::maps::MapData> +pub type aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>::Error = aya::maps::MapError +pub fn aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData> +pub type aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError +pub fn aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::marker::Send for aya::maps::perf::PerfEventArray where T: core::marker::Send + core::marker::Sync +impl core::marker::Sync for aya::maps::perf::PerfEventArray where T: core::marker::Send + core::marker::Sync +impl core::marker::Unpin for aya::maps::perf::PerfEventArray +impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::PerfEventArray where T: core::panic::unwind_safe::RefUnwindSafe +impl core::panic::unwind_safe::UnwindSafe for aya::maps::perf::PerfEventArray where T: core::panic::unwind_safe::RefUnwindSafe +impl core::convert::Into for aya::maps::perf::PerfEventArray where U: core::convert::From +pub fn aya::maps::perf::PerfEventArray::into(self) -> U +impl core::convert::TryFrom for aya::maps::perf::PerfEventArray where U: core::convert::Into +pub type aya::maps::perf::PerfEventArray::Error = core::convert::Infallible +pub fn aya::maps::perf::PerfEventArray::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::maps::perf::PerfEventArray where U: core::convert::TryFrom +pub type aya::maps::perf::PerfEventArray::Error = >::Error +pub fn aya::maps::perf::PerfEventArray::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::maps::perf::PerfEventArray where T: 'static + core::marker::Sized +pub fn aya::maps::perf::PerfEventArray::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::maps::perf::PerfEventArray where T: core::marker::Sized +pub fn aya::maps::perf::PerfEventArray::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::maps::perf::PerfEventArray where T: core::marker::Sized +pub fn aya::maps::perf::PerfEventArray::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::maps::perf::PerfEventArray +pub fn aya::maps::perf::PerfEventArray::from(t: T) -> T +pub struct aya::maps::perf::PerfEventArrayBuffer +impl + core::borrow::Borrow> aya::maps::perf::PerfEventArrayBuffer +pub fn aya::maps::perf::PerfEventArrayBuffer::read_events(&mut self, out_bufs: &mut [bytes::bytes_mut::BytesMut]) -> core::result::Result +pub fn aya::maps::perf::PerfEventArrayBuffer::readable(&self) -> bool +impl + core::borrow::Borrow> std::os::fd::raw::AsRawFd for aya::maps::perf::PerfEventArrayBuffer +pub fn aya::maps::perf::PerfEventArrayBuffer::as_raw_fd(&self) -> std::os::fd::raw::RawFd +impl core::marker::Send for aya::maps::perf::PerfEventArrayBuffer where T: core::marker::Send + core::marker::Sync +impl core::marker::Sync for aya::maps::perf::PerfEventArrayBuffer where T: core::marker::Send + core::marker::Sync +impl core::marker::Unpin for aya::maps::perf::PerfEventArrayBuffer +impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::PerfEventArrayBuffer where T: core::panic::unwind_safe::RefUnwindSafe +impl core::panic::unwind_safe::UnwindSafe for aya::maps::perf::PerfEventArrayBuffer where T: core::panic::unwind_safe::RefUnwindSafe +impl core::convert::Into for aya::maps::perf::PerfEventArrayBuffer where U: core::convert::From +pub fn aya::maps::perf::PerfEventArrayBuffer::into(self) -> U +impl core::convert::TryFrom for aya::maps::perf::PerfEventArrayBuffer where U: core::convert::Into +pub type aya::maps::perf::PerfEventArrayBuffer::Error = core::convert::Infallible +pub fn aya::maps::perf::PerfEventArrayBuffer::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::maps::perf::PerfEventArrayBuffer where U: core::convert::TryFrom +pub type aya::maps::perf::PerfEventArrayBuffer::Error = >::Error +pub fn aya::maps::perf::PerfEventArrayBuffer::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::maps::perf::PerfEventArrayBuffer where T: 'static + core::marker::Sized +pub fn aya::maps::perf::PerfEventArrayBuffer::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::maps::perf::PerfEventArrayBuffer where T: core::marker::Sized +pub fn aya::maps::perf::PerfEventArrayBuffer::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::maps::perf::PerfEventArrayBuffer where T: core::marker::Sized +pub fn aya::maps::perf::PerfEventArrayBuffer::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::maps::perf::PerfEventArrayBuffer +pub fn aya::maps::perf::PerfEventArrayBuffer::from(t: T) -> T +pub mod aya::maps::queue +pub struct aya::maps::queue::Queue +impl, V: aya::Pod> aya::maps::queue::Queue +pub fn aya::maps::queue::Queue::capacity(&self) -> u32 +impl, V: aya::Pod> aya::maps::queue::Queue +pub fn aya::maps::queue::Queue::pop(&mut self, flags: u64) -> core::result::Result +pub fn aya::maps::queue::Queue::push(&mut self, value: impl core::borrow::Borrow, flags: u64) -> core::result::Result<(), aya::maps::MapError> +impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::queue::Queue<&'a aya::maps::MapData, V> +pub type aya::maps::queue::Queue<&'a aya::maps::MapData, V>::Error = aya::maps::MapError +pub fn aya::maps::queue::Queue<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::queue::Queue<&'a mut aya::maps::MapData, V> +pub type aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError +pub fn aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::convert::TryFrom for aya::maps::queue::Queue +pub type aya::maps::queue::Queue::Error = aya::maps::MapError +pub fn aya::maps::queue::Queue::try_from(map: aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::marker::Send for aya::maps::queue::Queue where T: core::marker::Send, V: core::marker::Send +impl core::marker::Sync for aya::maps::queue::Queue where T: core::marker::Sync, V: core::marker::Sync +impl core::marker::Unpin for aya::maps::queue::Queue where T: core::marker::Unpin, V: core::marker::Unpin +impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::queue::Queue where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe +impl core::panic::unwind_safe::UnwindSafe for aya::maps::queue::Queue where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya::maps::queue::Queue where U: core::convert::From +pub fn aya::maps::queue::Queue::into(self) -> U +impl core::convert::TryFrom for aya::maps::queue::Queue where U: core::convert::Into +pub type aya::maps::queue::Queue::Error = core::convert::Infallible +pub fn aya::maps::queue::Queue::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::maps::queue::Queue where U: core::convert::TryFrom +pub type aya::maps::queue::Queue::Error = >::Error +pub fn aya::maps::queue::Queue::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::maps::queue::Queue where T: 'static + core::marker::Sized +pub fn aya::maps::queue::Queue::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::maps::queue::Queue where T: core::marker::Sized +pub fn aya::maps::queue::Queue::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::maps::queue::Queue where T: core::marker::Sized +pub fn aya::maps::queue::Queue::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::maps::queue::Queue +pub fn aya::maps::queue::Queue::from(t: T) -> T +pub mod aya::maps::sock +pub struct aya::maps::sock::SockHash +impl, K: aya::Pod> aya::maps::SockHash +pub fn aya::maps::SockHash::fd(&self) -> core::result::Result +pub fn aya::maps::SockHash::get(&self, key: &K, flags: u64) -> core::result::Result +pub fn aya::maps::SockHash::iter(&self) -> aya::maps::MapIter<'_, K, std::os::fd::raw::RawFd, Self> +pub fn aya::maps::SockHash::keys(&self) -> aya::maps::MapKeys<'_, K> +impl, K: aya::Pod> aya::maps::SockHash +pub fn aya::maps::SockHash::insert(&mut self, key: impl core::borrow::Borrow, value: I, flags: u64) -> core::result::Result<(), aya::maps::MapError> +pub fn aya::maps::SockHash::remove(&mut self, key: &K) -> core::result::Result<(), aya::maps::MapError> +impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::SockHash<&'a aya::maps::MapData, V> +pub type aya::maps::SockHash<&'a aya::maps::MapData, V>::Error = aya::maps::MapError +pub fn aya::maps::SockHash<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::SockHash<&'a mut aya::maps::MapData, V> +pub type aya::maps::SockHash<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError +pub fn aya::maps::SockHash<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl, K: aya::Pod> aya::maps::IterableMap for aya::maps::SockHash +pub fn aya::maps::SockHash::get(&self, key: &K) -> core::result::Result +pub fn aya::maps::SockHash::map(&self) -> &aya::maps::MapData +impl core::convert::TryFrom for aya::maps::SockHash +pub type aya::maps::SockHash::Error = aya::maps::MapError +pub fn aya::maps::SockHash::try_from(map: aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::marker::Send for aya::maps::SockHash where K: core::marker::Send, T: core::marker::Send +impl core::marker::Sync for aya::maps::SockHash where K: core::marker::Sync, T: core::marker::Sync +impl core::marker::Unpin for aya::maps::SockHash where K: core::marker::Unpin, T: core::marker::Unpin +impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::SockHash where K: core::panic::unwind_safe::RefUnwindSafe, T: core::panic::unwind_safe::RefUnwindSafe +impl core::panic::unwind_safe::UnwindSafe for aya::maps::SockHash where K: core::panic::unwind_safe::UnwindSafe, T: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya::maps::SockHash where U: core::convert::From +pub fn aya::maps::SockHash::into(self) -> U +impl core::convert::TryFrom for aya::maps::SockHash where U: core::convert::Into +pub type aya::maps::SockHash::Error = core::convert::Infallible +pub fn aya::maps::SockHash::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::maps::SockHash where U: core::convert::TryFrom +pub type aya::maps::SockHash::Error = >::Error +pub fn aya::maps::SockHash::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::maps::SockHash where T: 'static + core::marker::Sized +pub fn aya::maps::SockHash::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::maps::SockHash where T: core::marker::Sized +pub fn aya::maps::SockHash::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::maps::SockHash where T: core::marker::Sized +pub fn aya::maps::SockHash::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::maps::SockHash +pub fn aya::maps::SockHash::from(t: T) -> T +pub struct aya::maps::sock::SockMap +impl> aya::maps::SockMap +pub fn aya::maps::SockMap::fd(&self) -> core::result::Result +pub fn aya::maps::SockMap::indices(&self) -> aya::maps::MapKeys<'_, u32> +impl> aya::maps::SockMap +pub fn aya::maps::SockMap::clear_index(&mut self, index: &u32) -> core::result::Result<(), aya::maps::MapError> +pub fn aya::maps::SockMap::set(&mut self, index: u32, socket: &I, flags: u64) -> core::result::Result<(), aya::maps::MapError> +impl core::convert::TryFrom for aya::maps::SockMap +pub type aya::maps::SockMap::Error = aya::maps::MapError +pub fn aya::maps::SockMap::try_from(map: aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::SockMap<&'a aya::maps::MapData> +pub type aya::maps::SockMap<&'a aya::maps::MapData>::Error = aya::maps::MapError +pub fn aya::maps::SockMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::SockMap<&'a mut aya::maps::MapData> +pub type aya::maps::SockMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError +pub fn aya::maps::SockMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::marker::Send for aya::maps::SockMap where T: core::marker::Send +impl core::marker::Sync for aya::maps::SockMap where T: core::marker::Sync +impl core::marker::Unpin for aya::maps::SockMap where T: core::marker::Unpin +impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::SockMap where T: core::panic::unwind_safe::RefUnwindSafe +impl core::panic::unwind_safe::UnwindSafe for aya::maps::SockMap where T: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya::maps::SockMap where U: core::convert::From +pub fn aya::maps::SockMap::into(self) -> U +impl core::convert::TryFrom for aya::maps::SockMap where U: core::convert::Into +pub type aya::maps::SockMap::Error = core::convert::Infallible +pub fn aya::maps::SockMap::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::maps::SockMap where U: core::convert::TryFrom +pub type aya::maps::SockMap::Error = >::Error +pub fn aya::maps::SockMap::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::maps::SockMap where T: 'static + core::marker::Sized +pub fn aya::maps::SockMap::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::maps::SockMap where T: core::marker::Sized +pub fn aya::maps::SockMap::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::maps::SockMap where T: core::marker::Sized +pub fn aya::maps::SockMap::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::maps::SockMap +pub fn aya::maps::SockMap::from(t: T) -> T +pub struct aya::maps::sock::SockMapFd(_) +impl std::os::fd::raw::AsRawFd for aya::maps::sock::SockMapFd +pub fn aya::maps::sock::SockMapFd::as_raw_fd(&self) -> std::os::fd::raw::RawFd +impl core::clone::Clone for aya::maps::sock::SockMapFd +pub fn aya::maps::sock::SockMapFd::clone(&self) -> aya::maps::sock::SockMapFd +impl core::marker::Copy for aya::maps::sock::SockMapFd +impl core::marker::Send for aya::maps::sock::SockMapFd +impl core::marker::Sync for aya::maps::sock::SockMapFd +impl core::marker::Unpin for aya::maps::sock::SockMapFd +impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::sock::SockMapFd +impl core::panic::unwind_safe::UnwindSafe for aya::maps::sock::SockMapFd +impl core::convert::Into for aya::maps::sock::SockMapFd where U: core::convert::From +pub fn aya::maps::sock::SockMapFd::into(self) -> U +impl core::convert::TryFrom for aya::maps::sock::SockMapFd where U: core::convert::Into +pub type aya::maps::sock::SockMapFd::Error = core::convert::Infallible +pub fn aya::maps::sock::SockMapFd::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::maps::sock::SockMapFd where U: core::convert::TryFrom +pub type aya::maps::sock::SockMapFd::Error = >::Error +pub fn aya::maps::sock::SockMapFd::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya::maps::sock::SockMapFd where T: core::clone::Clone +pub type aya::maps::sock::SockMapFd::Owned = T +pub fn aya::maps::sock::SockMapFd::clone_into(&self, target: &mut T) +pub fn aya::maps::sock::SockMapFd::to_owned(&self) -> T +impl core::any::Any for aya::maps::sock::SockMapFd where T: 'static + core::marker::Sized +pub fn aya::maps::sock::SockMapFd::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::maps::sock::SockMapFd where T: core::marker::Sized +pub fn aya::maps::sock::SockMapFd::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::maps::sock::SockMapFd where T: core::marker::Sized +pub fn aya::maps::sock::SockMapFd::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::maps::sock::SockMapFd +pub fn aya::maps::sock::SockMapFd::from(t: T) -> T +pub mod aya::maps::stack +pub struct aya::maps::stack::Stack +impl, V: aya::Pod> aya::maps::stack::Stack +pub fn aya::maps::stack::Stack::capacity(&self) -> u32 +impl, V: aya::Pod> aya::maps::stack::Stack +pub fn aya::maps::stack::Stack::pop(&mut self, flags: u64) -> core::result::Result +pub fn aya::maps::stack::Stack::push(&mut self, value: impl core::borrow::Borrow, flags: u64) -> core::result::Result<(), aya::maps::MapError> +impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::stack::Stack<&'a aya::maps::MapData, V> +pub type aya::maps::stack::Stack<&'a aya::maps::MapData, V>::Error = aya::maps::MapError +pub fn aya::maps::stack::Stack<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::stack::Stack<&'a mut aya::maps::MapData, V> +pub type aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError +pub fn aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::convert::TryFrom for aya::maps::stack::Stack +pub type aya::maps::stack::Stack::Error = aya::maps::MapError +pub fn aya::maps::stack::Stack::try_from(map: aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::marker::Send for aya::maps::stack::Stack where T: core::marker::Send, V: core::marker::Send +impl core::marker::Sync for aya::maps::stack::Stack where T: core::marker::Sync, V: core::marker::Sync +impl core::marker::Unpin for aya::maps::stack::Stack where T: core::marker::Unpin, V: core::marker::Unpin +impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::stack::Stack where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe +impl core::panic::unwind_safe::UnwindSafe for aya::maps::stack::Stack where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya::maps::stack::Stack where U: core::convert::From +pub fn aya::maps::stack::Stack::into(self) -> U +impl core::convert::TryFrom for aya::maps::stack::Stack where U: core::convert::Into +pub type aya::maps::stack::Stack::Error = core::convert::Infallible +pub fn aya::maps::stack::Stack::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::maps::stack::Stack where U: core::convert::TryFrom +pub type aya::maps::stack::Stack::Error = >::Error +pub fn aya::maps::stack::Stack::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::maps::stack::Stack where T: 'static + core::marker::Sized +pub fn aya::maps::stack::Stack::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::maps::stack::Stack where T: core::marker::Sized +pub fn aya::maps::stack::Stack::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::maps::stack::Stack where T: core::marker::Sized +pub fn aya::maps::stack::Stack::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::maps::stack::Stack +pub fn aya::maps::stack::Stack::from(t: T) -> T +pub mod aya::maps::stack_trace +pub struct aya::maps::stack_trace::StackFrame +pub aya::maps::stack_trace::StackFrame::ip: u64 +pub aya::maps::stack_trace::StackFrame::symbol_name: core::option::Option +impl core::marker::Send for aya::maps::stack_trace::StackFrame +impl core::marker::Sync for aya::maps::stack_trace::StackFrame +impl core::marker::Unpin for aya::maps::stack_trace::StackFrame +impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::stack_trace::StackFrame +impl core::panic::unwind_safe::UnwindSafe for aya::maps::stack_trace::StackFrame +impl core::convert::Into for aya::maps::stack_trace::StackFrame where U: core::convert::From +pub fn aya::maps::stack_trace::StackFrame::into(self) -> U +impl core::convert::TryFrom for aya::maps::stack_trace::StackFrame where U: core::convert::Into +pub type aya::maps::stack_trace::StackFrame::Error = core::convert::Infallible +pub fn aya::maps::stack_trace::StackFrame::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::maps::stack_trace::StackFrame where U: core::convert::TryFrom +pub type aya::maps::stack_trace::StackFrame::Error = >::Error +pub fn aya::maps::stack_trace::StackFrame::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::maps::stack_trace::StackFrame where T: 'static + core::marker::Sized +pub fn aya::maps::stack_trace::StackFrame::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::maps::stack_trace::StackFrame where T: core::marker::Sized +pub fn aya::maps::stack_trace::StackFrame::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::maps::stack_trace::StackFrame where T: core::marker::Sized +pub fn aya::maps::stack_trace::StackFrame::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::maps::stack_trace::StackFrame +pub fn aya::maps::stack_trace::StackFrame::from(t: T) -> T +pub struct aya::maps::stack_trace::StackTrace +pub aya::maps::stack_trace::StackTrace::id: u32 +impl aya::maps::stack_trace::StackTrace +pub fn aya::maps::stack_trace::StackTrace::frames(&self) -> &[aya::maps::stack_trace::StackFrame] +pub fn aya::maps::stack_trace::StackTrace::resolve(&mut self, symbols: &alloc::collections::btree::map::BTreeMap) -> &aya::maps::stack_trace::StackTrace +impl> aya::maps::IterableMap for aya::maps::stack_trace::StackTraceMap +pub fn aya::maps::stack_trace::StackTraceMap::get(&self, index: &u32) -> core::result::Result +pub fn aya::maps::stack_trace::StackTraceMap::map(&self) -> &aya::maps::MapData +impl core::marker::Send for aya::maps::stack_trace::StackTrace +impl core::marker::Sync for aya::maps::stack_trace::StackTrace +impl core::marker::Unpin for aya::maps::stack_trace::StackTrace +impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::stack_trace::StackTrace +impl core::panic::unwind_safe::UnwindSafe for aya::maps::stack_trace::StackTrace +impl core::convert::Into for aya::maps::stack_trace::StackTrace where U: core::convert::From +pub fn aya::maps::stack_trace::StackTrace::into(self) -> U +impl core::convert::TryFrom for aya::maps::stack_trace::StackTrace where U: core::convert::Into +pub type aya::maps::stack_trace::StackTrace::Error = core::convert::Infallible +pub fn aya::maps::stack_trace::StackTrace::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::maps::stack_trace::StackTrace where U: core::convert::TryFrom +pub type aya::maps::stack_trace::StackTrace::Error = >::Error +pub fn aya::maps::stack_trace::StackTrace::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::maps::stack_trace::StackTrace where T: 'static + core::marker::Sized +pub fn aya::maps::stack_trace::StackTrace::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::maps::stack_trace::StackTrace where T: core::marker::Sized +pub fn aya::maps::stack_trace::StackTrace::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::maps::stack_trace::StackTrace where T: core::marker::Sized +pub fn aya::maps::stack_trace::StackTrace::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::maps::stack_trace::StackTrace +pub fn aya::maps::stack_trace::StackTrace::from(t: T) -> T +pub struct aya::maps::stack_trace::StackTraceMap +impl> aya::maps::stack_trace::StackTraceMap +pub fn aya::maps::stack_trace::StackTraceMap::get(&self, stack_id: &u32, flags: u64) -> core::result::Result +pub fn aya::maps::stack_trace::StackTraceMap::iter(&self) -> aya::maps::MapIter<'_, u32, aya::maps::stack_trace::StackTrace, Self> +pub fn aya::maps::stack_trace::StackTraceMap::stack_ids(&self) -> aya::maps::MapKeys<'_, u32> +impl core::convert::TryFrom for aya::maps::stack_trace::StackTraceMap +pub type aya::maps::stack_trace::StackTraceMap::Error = aya::maps::MapError +pub fn aya::maps::stack_trace::StackTraceMap::try_from(map: aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a, T: core::borrow::Borrow> core::iter::traits::collect::IntoIterator for &'a aya::maps::stack_trace::StackTraceMap +pub type &'a aya::maps::stack_trace::StackTraceMap::IntoIter = aya::maps::MapIter<'a, u32, aya::maps::stack_trace::StackTrace, aya::maps::stack_trace::StackTraceMap> +pub type &'a aya::maps::stack_trace::StackTraceMap::Item = core::result::Result<(u32, aya::maps::stack_trace::StackTrace), aya::maps::MapError> +pub fn &'a aya::maps::stack_trace::StackTraceMap::into_iter(self) -> Self::IntoIter +impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData> +pub type aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>::Error = aya::maps::MapError +pub fn aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData> +pub type aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError +pub fn aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl> aya::maps::IterableMap for aya::maps::stack_trace::StackTraceMap +pub fn aya::maps::stack_trace::StackTraceMap::get(&self, index: &u32) -> core::result::Result +pub fn aya::maps::stack_trace::StackTraceMap::map(&self) -> &aya::maps::MapData +impl core::fmt::Debug for aya::maps::stack_trace::StackTraceMap +pub fn aya::maps::stack_trace::StackTraceMap::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::maps::stack_trace::StackTraceMap where T: core::marker::Send +impl core::marker::Sync for aya::maps::stack_trace::StackTraceMap where T: core::marker::Sync +impl core::marker::Unpin for aya::maps::stack_trace::StackTraceMap where T: core::marker::Unpin +impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::stack_trace::StackTraceMap where T: core::panic::unwind_safe::RefUnwindSafe +impl core::panic::unwind_safe::UnwindSafe for aya::maps::stack_trace::StackTraceMap where T: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya::maps::stack_trace::StackTraceMap where U: core::convert::From +pub fn aya::maps::stack_trace::StackTraceMap::into(self) -> U +impl core::convert::TryFrom for aya::maps::stack_trace::StackTraceMap where U: core::convert::Into +pub type aya::maps::stack_trace::StackTraceMap::Error = core::convert::Infallible +pub fn aya::maps::stack_trace::StackTraceMap::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::maps::stack_trace::StackTraceMap where U: core::convert::TryFrom +pub type aya::maps::stack_trace::StackTraceMap::Error = >::Error +pub fn aya::maps::stack_trace::StackTraceMap::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::maps::stack_trace::StackTraceMap where T: 'static + core::marker::Sized +pub fn aya::maps::stack_trace::StackTraceMap::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::maps::stack_trace::StackTraceMap where T: core::marker::Sized +pub fn aya::maps::stack_trace::StackTraceMap::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::maps::stack_trace::StackTraceMap where T: core::marker::Sized +pub fn aya::maps::stack_trace::StackTraceMap::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::maps::stack_trace::StackTraceMap +pub fn aya::maps::stack_trace::StackTraceMap::from(t: T) -> T +pub enum aya::maps::Map +pub aya::maps::Map::Array(aya::maps::MapData) +pub aya::maps::Map::BloomFilter(aya::maps::MapData) +pub aya::maps::Map::HashMap(aya::maps::MapData) +pub aya::maps::Map::LpmTrie(aya::maps::MapData) +pub aya::maps::Map::LruHashMap(aya::maps::MapData) +pub aya::maps::Map::PerCpuArray(aya::maps::MapData) +pub aya::maps::Map::PerCpuHashMap(aya::maps::MapData) +pub aya::maps::Map::PerCpuLruHashMap(aya::maps::MapData) +pub aya::maps::Map::PerfEventArray(aya::maps::MapData) +pub aya::maps::Map::ProgramArray(aya::maps::MapData) +pub aya::maps::Map::Queue(aya::maps::MapData) +pub aya::maps::Map::SockHash(aya::maps::MapData) +pub aya::maps::Map::SockMap(aya::maps::MapData) +pub aya::maps::Map::Stack(aya::maps::MapData) +pub aya::maps::Map::StackTraceMap(aya::maps::MapData) +pub aya::maps::Map::Unsupported(aya::maps::MapData) +impl core::convert::TryFrom for aya::maps::ProgramArray +pub type aya::maps::ProgramArray::Error = aya::maps::MapError +pub fn aya::maps::ProgramArray::try_from(map: aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::convert::TryFrom for aya::maps::SockMap +pub type aya::maps::SockMap::Error = aya::maps::MapError +pub fn aya::maps::SockMap::try_from(map: aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::convert::TryFrom for aya::maps::perf::AsyncPerfEventArray +pub type aya::maps::perf::AsyncPerfEventArray::Error = aya::maps::MapError +pub fn aya::maps::perf::AsyncPerfEventArray::try_from(map: aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::convert::TryFrom for aya::maps::perf::PerfEventArray +pub type aya::maps::perf::PerfEventArray::Error = aya::maps::MapError +pub fn aya::maps::perf::PerfEventArray::try_from(map: aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::convert::TryFrom for aya::maps::stack_trace::StackTraceMap +pub type aya::maps::stack_trace::StackTraceMap::Error = aya::maps::MapError +pub fn aya::maps::stack_trace::StackTraceMap::try_from(map: aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a, V: aya::Pod, K: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::hash_map::HashMap<&'a aya::maps::MapData, V, K> +pub type aya::maps::hash_map::HashMap<&'a aya::maps::MapData, V, K>::Error = aya::maps::MapError +pub fn aya::maps::hash_map::HashMap<&'a aya::maps::MapData, V, K>::try_from(map: &'a aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a, V: aya::Pod, K: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, V, K> +pub type aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, V, K>::Error = aya::maps::MapError +pub fn aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, V, K>::try_from(map: &'a aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a, V: aya::Pod, K: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, V, K> +pub type aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, V, K>::Error = aya::maps::MapError +pub fn aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, V, K>::try_from(map: &'a aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a, V: aya::Pod, K: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, V, K> +pub type aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, V, K>::Error = aya::maps::MapError +pub fn aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, V, K>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a, V: aya::Pod, K: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, V, K> +pub type aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, V, K>::Error = aya::maps::MapError +pub fn aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, V, K>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a, V: aya::Pod, K: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, V, K> +pub type aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, V, K>::Error = aya::maps::MapError +pub fn aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, V, K>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::PerCpuArray<&'a aya::maps::MapData, V> +pub type aya::maps::PerCpuArray<&'a aya::maps::MapData, V>::Error = aya::maps::MapError +pub fn aya::maps::PerCpuArray<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::SockHash<&'a aya::maps::MapData, V> +pub type aya::maps::SockHash<&'a aya::maps::MapData, V>::Error = aya::maps::MapError +pub fn aya::maps::SockHash<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::array::Array<&'a aya::maps::MapData, V> +pub type aya::maps::array::Array<&'a aya::maps::MapData, V>::Error = aya::maps::MapError +pub fn aya::maps::array::Array<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V> +pub type aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>::Error = aya::maps::MapError +pub fn aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::queue::Queue<&'a aya::maps::MapData, V> +pub type aya::maps::queue::Queue<&'a aya::maps::MapData, V>::Error = aya::maps::MapError +pub fn aya::maps::queue::Queue<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::stack::Stack<&'a aya::maps::MapData, V> +pub type aya::maps::stack::Stack<&'a aya::maps::MapData, V>::Error = aya::maps::MapError +pub fn aya::maps::stack::Stack<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V> +pub type aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError +pub fn aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::SockHash<&'a mut aya::maps::MapData, V> +pub type aya::maps::SockHash<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError +pub fn aya::maps::SockHash<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::array::Array<&'a mut aya::maps::MapData, V> +pub type aya::maps::array::Array<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError +pub fn aya::maps::array::Array<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V> +pub type aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError +pub fn aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::queue::Queue<&'a mut aya::maps::MapData, V> +pub type aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError +pub fn aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::stack::Stack<&'a mut aya::maps::MapData, V> +pub type aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError +pub fn aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::ProgramArray<&'a aya::maps::MapData> +pub type aya::maps::ProgramArray<&'a aya::maps::MapData>::Error = aya::maps::MapError +pub fn aya::maps::ProgramArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::SockMap<&'a aya::maps::MapData> +pub type aya::maps::SockMap<&'a aya::maps::MapData>::Error = aya::maps::MapError +pub fn aya::maps::SockMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData> +pub type aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>::Error = aya::maps::MapError +pub fn aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::perf::PerfEventArray<&'a aya::maps::MapData> +pub type aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>::Error = aya::maps::MapError +pub fn aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData> +pub type aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>::Error = aya::maps::MapError +pub fn aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::ProgramArray<&'a mut aya::maps::MapData> +pub type aya::maps::ProgramArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError +pub fn aya::maps::ProgramArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::SockMap<&'a mut aya::maps::MapData> +pub type aya::maps::SockMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError +pub fn aya::maps::SockMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData> +pub type aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError +pub fn aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData> +pub type aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError +pub fn aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData> +pub type aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError +pub fn aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::convert::TryFrom for aya::maps::hash_map::HashMap +pub type aya::maps::hash_map::HashMap::Error = aya::maps::MapError +pub fn aya::maps::hash_map::HashMap::try_from(map: aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::convert::TryFrom for aya::maps::hash_map::PerCpuHashMap +pub type aya::maps::hash_map::PerCpuHashMap::Error = aya::maps::MapError +pub fn aya::maps::hash_map::PerCpuHashMap::try_from(map: aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::convert::TryFrom for aya::maps::lpm_trie::LpmTrie +pub type aya::maps::lpm_trie::LpmTrie::Error = aya::maps::MapError +pub fn aya::maps::lpm_trie::LpmTrie::try_from(map: aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::convert::TryFrom for aya::maps::PerCpuArray +pub type aya::maps::PerCpuArray::Error = aya::maps::MapError +pub fn aya::maps::PerCpuArray::try_from(map: aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::convert::TryFrom for aya::maps::SockHash +pub type aya::maps::SockHash::Error = aya::maps::MapError +pub fn aya::maps::SockHash::try_from(map: aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::convert::TryFrom for aya::maps::array::Array +pub type aya::maps::array::Array::Error = aya::maps::MapError +pub fn aya::maps::array::Array::try_from(map: aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::convert::TryFrom for aya::maps::bloom_filter::BloomFilter +pub type aya::maps::bloom_filter::BloomFilter::Error = aya::maps::MapError +pub fn aya::maps::bloom_filter::BloomFilter::try_from(map: aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::convert::TryFrom for aya::maps::queue::Queue +pub type aya::maps::queue::Queue::Error = aya::maps::MapError +pub fn aya::maps::queue::Queue::try_from(map: aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::convert::TryFrom for aya::maps::stack::Stack +pub type aya::maps::stack::Stack::Error = aya::maps::MapError +pub fn aya::maps::stack::Stack::try_from(map: aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::fmt::Debug for aya::maps::Map +pub fn aya::maps::Map::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::maps::Map +impl core::marker::Sync for aya::maps::Map +impl core::marker::Unpin for aya::maps::Map +impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::Map +impl core::panic::unwind_safe::UnwindSafe for aya::maps::Map +impl core::convert::Into for aya::maps::Map where U: core::convert::From +pub fn aya::maps::Map::into(self) -> U +impl core::convert::TryFrom for aya::maps::Map where U: core::convert::Into +pub type aya::maps::Map::Error = core::convert::Infallible +pub fn aya::maps::Map::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::maps::Map where U: core::convert::TryFrom +pub type aya::maps::Map::Error = >::Error +pub fn aya::maps::Map::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::maps::Map where T: 'static + core::marker::Sized +pub fn aya::maps::Map::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::maps::Map where T: core::marker::Sized +pub fn aya::maps::Map::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::maps::Map where T: core::marker::Sized +pub fn aya::maps::Map::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::maps::Map +pub fn aya::maps::Map::from(t: T) -> T +pub enum aya::maps::MapError +pub aya::maps::MapError::AlreadyCreated +pub aya::maps::MapError::AlreadyCreated::name: alloc::string::String +pub aya::maps::MapError::CreateError +pub aya::maps::MapError::CreateError::code: libc::unix::linux_like::linux::gnu::b64::x86_64::not_x32::c_long +pub aya::maps::MapError::CreateError::io_error: std::io::error::Error +pub aya::maps::MapError::CreateError::name: alloc::string::String +pub aya::maps::MapError::ElementNotFound +pub aya::maps::MapError::InvalidKeySize +pub aya::maps::MapError::InvalidKeySize::expected: usize +pub aya::maps::MapError::InvalidKeySize::size: usize +pub aya::maps::MapError::InvalidMapType +pub aya::maps::MapError::InvalidMapType::map_type: u32 +pub aya::maps::MapError::InvalidName +pub aya::maps::MapError::InvalidName::name: alloc::string::String +pub aya::maps::MapError::InvalidValueSize +pub aya::maps::MapError::InvalidValueSize::expected: usize +pub aya::maps::MapError::InvalidValueSize::size: usize +pub aya::maps::MapError::KeyNotFound +pub aya::maps::MapError::NotCreated +pub aya::maps::MapError::OutOfBounds +pub aya::maps::MapError::OutOfBounds::index: u32 +pub aya::maps::MapError::OutOfBounds::max_entries: u32 +pub aya::maps::MapError::PinError +pub aya::maps::MapError::PinError::error: aya::pin::PinError +pub aya::maps::MapError::PinError::name: core::option::Option +pub aya::maps::MapError::ProgramNotLoaded +pub aya::maps::MapError::SyscallError +pub aya::maps::MapError::SyscallError::call: &'static str +pub aya::maps::MapError::SyscallError::io_error: std::io::error::Error +pub aya::maps::MapError::Unsupported +pub aya::maps::MapError::Unsupported::map_type: u32 +impl core::convert::From for aya::BpfError +pub fn aya::BpfError::from(source: aya::maps::MapError) -> Self +impl core::convert::From for aya::programs::ProgramError +pub fn aya::programs::ProgramError::from(source: aya::maps::MapError) -> Self +impl core::error::Error for aya::maps::MapError +pub fn aya::maps::MapError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)> +impl core::fmt::Display for aya::maps::MapError +pub fn aya::maps::MapError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::fmt::Debug for aya::maps::MapError +pub fn aya::maps::MapError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::maps::MapError +impl core::marker::Sync for aya::maps::MapError +impl core::marker::Unpin for aya::maps::MapError +impl !core::panic::unwind_safe::RefUnwindSafe for aya::maps::MapError +impl !core::panic::unwind_safe::UnwindSafe for aya::maps::MapError +impl core::any::Provider for aya::maps::MapError where E: core::error::Error + core::marker::Sized +pub fn aya::maps::MapError::provide<'a>(&'a self, demand: &mut core::any::Demand<'a>) +impl core::convert::Into for aya::maps::MapError where U: core::convert::From +pub fn aya::maps::MapError::into(self) -> U +impl core::convert::TryFrom for aya::maps::MapError where U: core::convert::Into +pub type aya::maps::MapError::Error = core::convert::Infallible +pub fn aya::maps::MapError::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::maps::MapError where U: core::convert::TryFrom +pub type aya::maps::MapError::Error = >::Error +pub fn aya::maps::MapError::try_into(self) -> core::result::Result>::Error> +impl alloc::string::ToString for aya::maps::MapError where T: core::fmt::Display + core::marker::Sized +pub fn aya::maps::MapError::to_string(&self) -> alloc::string::String +impl core::any::Any for aya::maps::MapError where T: 'static + core::marker::Sized +pub fn aya::maps::MapError::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::maps::MapError where T: core::marker::Sized +pub fn aya::maps::MapError::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::maps::MapError where T: core::marker::Sized +pub fn aya::maps::MapError::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::maps::MapError +pub fn aya::maps::MapError::from(t: T) -> T +pub struct aya::maps::Array +impl, V: aya::Pod> aya::maps::array::Array +pub fn aya::maps::array::Array::get(&self, index: &u32, flags: u64) -> core::result::Result +pub fn aya::maps::array::Array::iter(&self) -> impl core::iter::traits::iterator::Iterator> + '_ +pub fn aya::maps::array::Array::len(&self) -> u32 +impl, V: aya::Pod> aya::maps::array::Array +pub fn aya::maps::array::Array::set(&mut self, index: u32, value: impl core::borrow::Borrow, flags: u64) -> core::result::Result<(), aya::maps::MapError> +impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::array::Array<&'a aya::maps::MapData, V> +pub type aya::maps::array::Array<&'a aya::maps::MapData, V>::Error = aya::maps::MapError +pub fn aya::maps::array::Array<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::array::Array<&'a mut aya::maps::MapData, V> +pub type aya::maps::array::Array<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError +pub fn aya::maps::array::Array<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl, V: aya::Pod> aya::maps::IterableMap for aya::maps::array::Array +pub fn aya::maps::array::Array::get(&self, index: &u32) -> core::result::Result +pub fn aya::maps::array::Array::map(&self) -> &aya::maps::MapData +impl core::convert::TryFrom for aya::maps::array::Array +pub type aya::maps::array::Array::Error = aya::maps::MapError +pub fn aya::maps::array::Array::try_from(map: aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::marker::Send for aya::maps::array::Array where T: core::marker::Send, V: core::marker::Send +impl core::marker::Sync for aya::maps::array::Array where T: core::marker::Sync, V: core::marker::Sync +impl core::marker::Unpin for aya::maps::array::Array where T: core::marker::Unpin, V: core::marker::Unpin +impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::array::Array where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe +impl core::panic::unwind_safe::UnwindSafe for aya::maps::array::Array where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya::maps::array::Array where U: core::convert::From +pub fn aya::maps::array::Array::into(self) -> U +impl core::convert::TryFrom for aya::maps::array::Array where U: core::convert::Into +pub type aya::maps::array::Array::Error = core::convert::Infallible +pub fn aya::maps::array::Array::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::maps::array::Array where U: core::convert::TryFrom +pub type aya::maps::array::Array::Error = >::Error +pub fn aya::maps::array::Array::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::maps::array::Array where T: 'static + core::marker::Sized +pub fn aya::maps::array::Array::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::maps::array::Array where T: core::marker::Sized +pub fn aya::maps::array::Array::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::maps::array::Array where T: core::marker::Sized +pub fn aya::maps::array::Array::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::maps::array::Array +pub fn aya::maps::array::Array::from(t: T) -> T +pub struct aya::maps::AsyncPerfEventArray +impl + core::borrow::Borrow> aya::maps::perf::AsyncPerfEventArray +pub fn aya::maps::perf::AsyncPerfEventArray::open(&mut self, index: u32, page_count: core::option::Option) -> core::result::Result, aya::maps::perf::PerfBufferError> +impl core::convert::TryFrom for aya::maps::perf::AsyncPerfEventArray +pub type aya::maps::perf::AsyncPerfEventArray::Error = aya::maps::MapError +pub fn aya::maps::perf::AsyncPerfEventArray::try_from(map: aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData> +pub type aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>::Error = aya::maps::MapError +pub fn aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData> +pub type aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError +pub fn aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::marker::Send for aya::maps::perf::AsyncPerfEventArray where T: core::marker::Send + core::marker::Sync +impl core::marker::Sync for aya::maps::perf::AsyncPerfEventArray where T: core::marker::Send + core::marker::Sync +impl core::marker::Unpin for aya::maps::perf::AsyncPerfEventArray +impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::AsyncPerfEventArray where T: core::panic::unwind_safe::RefUnwindSafe +impl core::panic::unwind_safe::UnwindSafe for aya::maps::perf::AsyncPerfEventArray where T: core::panic::unwind_safe::RefUnwindSafe +impl core::convert::Into for aya::maps::perf::AsyncPerfEventArray where U: core::convert::From +pub fn aya::maps::perf::AsyncPerfEventArray::into(self) -> U +impl core::convert::TryFrom for aya::maps::perf::AsyncPerfEventArray where U: core::convert::Into +pub type aya::maps::perf::AsyncPerfEventArray::Error = core::convert::Infallible +pub fn aya::maps::perf::AsyncPerfEventArray::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::maps::perf::AsyncPerfEventArray where U: core::convert::TryFrom +pub type aya::maps::perf::AsyncPerfEventArray::Error = >::Error +pub fn aya::maps::perf::AsyncPerfEventArray::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::maps::perf::AsyncPerfEventArray where T: 'static + core::marker::Sized +pub fn aya::maps::perf::AsyncPerfEventArray::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::maps::perf::AsyncPerfEventArray where T: core::marker::Sized +pub fn aya::maps::perf::AsyncPerfEventArray::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::maps::perf::AsyncPerfEventArray where T: core::marker::Sized +pub fn aya::maps::perf::AsyncPerfEventArray::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::maps::perf::AsyncPerfEventArray +pub fn aya::maps::perf::AsyncPerfEventArray::from(t: T) -> T +pub struct aya::maps::BloomFilter +impl, V: aya::Pod> aya::maps::bloom_filter::BloomFilter +pub fn aya::maps::bloom_filter::BloomFilter::contains(&self, value: &V, flags: u64) -> core::result::Result<(), aya::maps::MapError> +pub fn aya::maps::bloom_filter::BloomFilter::insert(&self, value: impl core::borrow::Borrow, flags: u64) -> core::result::Result<(), aya::maps::MapError> +impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V> +pub type aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>::Error = aya::maps::MapError +pub fn aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V> +pub type aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError +pub fn aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::convert::TryFrom for aya::maps::bloom_filter::BloomFilter +pub type aya::maps::bloom_filter::BloomFilter::Error = aya::maps::MapError +pub fn aya::maps::bloom_filter::BloomFilter::try_from(map: aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::fmt::Debug for aya::maps::bloom_filter::BloomFilter +pub fn aya::maps::bloom_filter::BloomFilter::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::maps::bloom_filter::BloomFilter where T: core::marker::Send, V: core::marker::Send +impl core::marker::Sync for aya::maps::bloom_filter::BloomFilter where T: core::marker::Sync, V: core::marker::Sync +impl core::marker::Unpin for aya::maps::bloom_filter::BloomFilter where T: core::marker::Unpin, V: core::marker::Unpin +impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::bloom_filter::BloomFilter where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe +impl core::panic::unwind_safe::UnwindSafe for aya::maps::bloom_filter::BloomFilter where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya::maps::bloom_filter::BloomFilter where U: core::convert::From +pub fn aya::maps::bloom_filter::BloomFilter::into(self) -> U +impl core::convert::TryFrom for aya::maps::bloom_filter::BloomFilter where U: core::convert::Into +pub type aya::maps::bloom_filter::BloomFilter::Error = core::convert::Infallible +pub fn aya::maps::bloom_filter::BloomFilter::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::maps::bloom_filter::BloomFilter where U: core::convert::TryFrom +pub type aya::maps::bloom_filter::BloomFilter::Error = >::Error +pub fn aya::maps::bloom_filter::BloomFilter::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::maps::bloom_filter::BloomFilter where T: 'static + core::marker::Sized +pub fn aya::maps::bloom_filter::BloomFilter::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::maps::bloom_filter::BloomFilter where T: core::marker::Sized +pub fn aya::maps::bloom_filter::BloomFilter::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::maps::bloom_filter::BloomFilter where T: core::marker::Sized +pub fn aya::maps::bloom_filter::BloomFilter::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::maps::bloom_filter::BloomFilter +pub fn aya::maps::bloom_filter::BloomFilter::from(t: T) -> T +pub struct aya::maps::HashMap +impl, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::HashMap +pub fn aya::maps::hash_map::HashMap::get(&self, key: &K, flags: u64) -> core::result::Result +pub fn aya::maps::hash_map::HashMap::iter(&self) -> aya::maps::MapIter<'_, K, V, Self> +pub fn aya::maps::hash_map::HashMap::keys(&self) -> aya::maps::MapKeys<'_, K> +impl, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::HashMap +pub fn aya::maps::hash_map::HashMap::insert(&mut self, key: impl core::borrow::Borrow, value: impl core::borrow::Borrow, flags: u64) -> core::result::Result<(), aya::maps::MapError> +pub fn aya::maps::hash_map::HashMap::remove(&mut self, key: &K) -> core::result::Result<(), aya::maps::MapError> +impl<'a, V: aya::Pod, K: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::hash_map::HashMap<&'a aya::maps::MapData, V, K> +pub type aya::maps::hash_map::HashMap<&'a aya::maps::MapData, V, K>::Error = aya::maps::MapError +pub fn aya::maps::hash_map::HashMap<&'a aya::maps::MapData, V, K>::try_from(map: &'a aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a, V: aya::Pod, K: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, V, K> +pub type aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, V, K>::Error = aya::maps::MapError +pub fn aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, V, K>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap for aya::maps::hash_map::HashMap +pub fn aya::maps::hash_map::HashMap::get(&self, key: &K) -> core::result::Result +pub fn aya::maps::hash_map::HashMap::map(&self) -> &aya::maps::MapData +impl core::convert::TryFrom for aya::maps::hash_map::HashMap +pub type aya::maps::hash_map::HashMap::Error = aya::maps::MapError +pub fn aya::maps::hash_map::HashMap::try_from(map: aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::fmt::Debug for aya::maps::hash_map::HashMap +pub fn aya::maps::hash_map::HashMap::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::maps::hash_map::HashMap where K: core::marker::Send, T: core::marker::Send, V: core::marker::Send +impl core::marker::Sync for aya::maps::hash_map::HashMap where K: core::marker::Sync, T: core::marker::Sync, V: core::marker::Sync +impl core::marker::Unpin for aya::maps::hash_map::HashMap where K: core::marker::Unpin, T: core::marker::Unpin, V: core::marker::Unpin +impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::hash_map::HashMap where K: core::panic::unwind_safe::RefUnwindSafe, T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe +impl core::panic::unwind_safe::UnwindSafe for aya::maps::hash_map::HashMap where K: core::panic::unwind_safe::UnwindSafe, T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya::maps::hash_map::HashMap where U: core::convert::From +pub fn aya::maps::hash_map::HashMap::into(self) -> U +impl core::convert::TryFrom for aya::maps::hash_map::HashMap where U: core::convert::Into +pub type aya::maps::hash_map::HashMap::Error = core::convert::Infallible +pub fn aya::maps::hash_map::HashMap::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::maps::hash_map::HashMap where U: core::convert::TryFrom +pub type aya::maps::hash_map::HashMap::Error = >::Error +pub fn aya::maps::hash_map::HashMap::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::maps::hash_map::HashMap where T: 'static + core::marker::Sized +pub fn aya::maps::hash_map::HashMap::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::maps::hash_map::HashMap where T: core::marker::Sized +pub fn aya::maps::hash_map::HashMap::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::maps::hash_map::HashMap where T: core::marker::Sized +pub fn aya::maps::hash_map::HashMap::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::maps::hash_map::HashMap +pub fn aya::maps::hash_map::HashMap::from(t: T) -> T +pub struct aya::maps::LpmTrie +impl, K: aya::Pod, V: aya::Pod> aya::maps::lpm_trie::LpmTrie +pub fn aya::maps::lpm_trie::LpmTrie::get(&self, key: &aya::maps::lpm_trie::Key, flags: u64) -> core::result::Result +pub fn aya::maps::lpm_trie::LpmTrie::iter(&self) -> aya::maps::MapIter<'_, aya::maps::lpm_trie::Key, V, Self> +pub fn aya::maps::lpm_trie::LpmTrie::keys(&self) -> aya::maps::MapKeys<'_, aya::maps::lpm_trie::Key> +impl, K: aya::Pod, V: aya::Pod> aya::maps::lpm_trie::LpmTrie +pub fn aya::maps::lpm_trie::LpmTrie::insert(&mut self, key: &aya::maps::lpm_trie::Key, value: impl core::borrow::Borrow, flags: u64) -> core::result::Result<(), aya::maps::MapError> +pub fn aya::maps::lpm_trie::LpmTrie::remove(&mut self, key: &aya::maps::lpm_trie::Key) -> core::result::Result<(), aya::maps::MapError> +impl<'a, V: aya::Pod, K: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, V, K> +pub type aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, V, K>::Error = aya::maps::MapError +pub fn aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, V, K>::try_from(map: &'a aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a, V: aya::Pod, K: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, V, K> +pub type aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, V, K>::Error = aya::maps::MapError +pub fn aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, V, K>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap, V> for aya::maps::lpm_trie::LpmTrie +pub fn aya::maps::lpm_trie::LpmTrie::get(&self, key: &aya::maps::lpm_trie::Key) -> core::result::Result +pub fn aya::maps::lpm_trie::LpmTrie::map(&self) -> &aya::maps::MapData +impl core::convert::TryFrom for aya::maps::lpm_trie::LpmTrie +pub type aya::maps::lpm_trie::LpmTrie::Error = aya::maps::MapError +pub fn aya::maps::lpm_trie::LpmTrie::try_from(map: aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::fmt::Debug for aya::maps::lpm_trie::LpmTrie +pub fn aya::maps::lpm_trie::LpmTrie::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::maps::lpm_trie::LpmTrie where K: core::marker::Send, T: core::marker::Send, V: core::marker::Send +impl core::marker::Sync for aya::maps::lpm_trie::LpmTrie where K: core::marker::Sync, T: core::marker::Sync, V: core::marker::Sync +impl core::marker::Unpin for aya::maps::lpm_trie::LpmTrie where K: core::marker::Unpin, T: core::marker::Unpin, V: core::marker::Unpin +impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::lpm_trie::LpmTrie where K: core::panic::unwind_safe::RefUnwindSafe, T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe +impl core::panic::unwind_safe::UnwindSafe for aya::maps::lpm_trie::LpmTrie where K: core::panic::unwind_safe::UnwindSafe, T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya::maps::lpm_trie::LpmTrie where U: core::convert::From +pub fn aya::maps::lpm_trie::LpmTrie::into(self) -> U +impl core::convert::TryFrom for aya::maps::lpm_trie::LpmTrie where U: core::convert::Into +pub type aya::maps::lpm_trie::LpmTrie::Error = core::convert::Infallible +pub fn aya::maps::lpm_trie::LpmTrie::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::maps::lpm_trie::LpmTrie where U: core::convert::TryFrom +pub type aya::maps::lpm_trie::LpmTrie::Error = >::Error +pub fn aya::maps::lpm_trie::LpmTrie::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::maps::lpm_trie::LpmTrie where T: 'static + core::marker::Sized +pub fn aya::maps::lpm_trie::LpmTrie::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::maps::lpm_trie::LpmTrie where T: core::marker::Sized +pub fn aya::maps::lpm_trie::LpmTrie::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::maps::lpm_trie::LpmTrie where T: core::marker::Sized +pub fn aya::maps::lpm_trie::LpmTrie::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::maps::lpm_trie::LpmTrie +pub fn aya::maps::lpm_trie::LpmTrie::from(t: T) -> T +pub struct aya::maps::MapData +pub aya::maps::MapData::pinned: bool +impl aya::maps::MapData +pub fn aya::maps::MapData::create(&mut self, name: &str) -> core::result::Result +pub fn aya::maps::MapData::fd(&self) -> core::option::Option +pub fn aya::maps::MapData::from_fd(fd: std::os::fd::raw::RawFd) -> core::result::Result +pub fn aya::maps::MapData::from_pin>(path: P) -> core::result::Result +impl core::clone::Clone for aya::maps::MapData +pub fn aya::maps::MapData::clone(&self) -> aya::maps::MapData +impl core::ops::drop::Drop for aya::maps::MapData +pub fn aya::maps::MapData::drop(&mut self) +impl core::fmt::Debug for aya::maps::MapData +pub fn aya::maps::MapData::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::maps::MapData +impl core::marker::Sync for aya::maps::MapData +impl core::marker::Unpin for aya::maps::MapData +impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::MapData +impl core::panic::unwind_safe::UnwindSafe for aya::maps::MapData +impl core::convert::Into for aya::maps::MapData where U: core::convert::From +pub fn aya::maps::MapData::into(self) -> U +impl core::convert::TryFrom for aya::maps::MapData where U: core::convert::Into +pub type aya::maps::MapData::Error = core::convert::Infallible +pub fn aya::maps::MapData::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::maps::MapData where U: core::convert::TryFrom +pub type aya::maps::MapData::Error = >::Error +pub fn aya::maps::MapData::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya::maps::MapData where T: core::clone::Clone +pub type aya::maps::MapData::Owned = T +pub fn aya::maps::MapData::clone_into(&self, target: &mut T) +pub fn aya::maps::MapData::to_owned(&self) -> T +impl core::any::Any for aya::maps::MapData where T: 'static + core::marker::Sized +pub fn aya::maps::MapData::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::maps::MapData where T: core::marker::Sized +pub fn aya::maps::MapData::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::maps::MapData where T: core::marker::Sized +pub fn aya::maps::MapData::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::maps::MapData +pub fn aya::maps::MapData::from(t: T) -> T +pub struct aya::maps::MapFd(_) +impl std::os::fd::raw::AsRawFd for aya::maps::MapFd +pub fn aya::maps::MapFd::as_raw_fd(&self) -> std::os::fd::raw::RawFd +impl core::marker::Send for aya::maps::MapFd +impl core::marker::Sync for aya::maps::MapFd +impl core::marker::Unpin for aya::maps::MapFd +impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::MapFd +impl core::panic::unwind_safe::UnwindSafe for aya::maps::MapFd +impl core::convert::Into for aya::maps::MapFd where U: core::convert::From +pub fn aya::maps::MapFd::into(self) -> U +impl core::convert::TryFrom for aya::maps::MapFd where U: core::convert::Into +pub type aya::maps::MapFd::Error = core::convert::Infallible +pub fn aya::maps::MapFd::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::maps::MapFd where U: core::convert::TryFrom +pub type aya::maps::MapFd::Error = >::Error +pub fn aya::maps::MapFd::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::maps::MapFd where T: 'static + core::marker::Sized +pub fn aya::maps::MapFd::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::maps::MapFd where T: core::marker::Sized +pub fn aya::maps::MapFd::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::maps::MapFd where T: core::marker::Sized +pub fn aya::maps::MapFd::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::maps::MapFd +pub fn aya::maps::MapFd::from(t: T) -> T +pub struct aya::maps::MapIter<'coll, K: aya::Pod, V, I: aya::maps::IterableMap> +impl> core::iter::traits::iterator::Iterator for aya::maps::MapIter<'_, K, V, I> +pub type aya::maps::MapIter<'_, K, V, I>::Item = core::result::Result<(K, V), aya::maps::MapError> +pub fn aya::maps::MapIter<'_, K, V, I>::next(&mut self) -> core::option::Option +impl<'coll, K, V, I> core::marker::Send for aya::maps::MapIter<'coll, K, V, I> where I: core::marker::Sync, K: core::marker::Send, V: core::marker::Send +impl<'coll, K, V, I> core::marker::Sync for aya::maps::MapIter<'coll, K, V, I> where I: core::marker::Sync, K: core::marker::Sync, V: core::marker::Sync +impl<'coll, K, V, I> core::marker::Unpin for aya::maps::MapIter<'coll, K, V, I> where K: core::marker::Unpin, V: core::marker::Unpin +impl<'coll, K, V, I> core::panic::unwind_safe::RefUnwindSafe for aya::maps::MapIter<'coll, K, V, I> where I: core::panic::unwind_safe::RefUnwindSafe, K: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe +impl<'coll, K, V, I> core::panic::unwind_safe::UnwindSafe for aya::maps::MapIter<'coll, K, V, I> where I: core::panic::unwind_safe::RefUnwindSafe, K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe +impl core::iter::traits::collect::IntoIterator for aya::maps::MapIter<'coll, K, V, I> where I: core::iter::traits::iterator::Iterator +pub type aya::maps::MapIter<'coll, K, V, I>::IntoIter = I +pub type aya::maps::MapIter<'coll, K, V, I>::Item = ::Item +pub fn aya::maps::MapIter<'coll, K, V, I>::into_iter(self) -> I +impl core::convert::Into for aya::maps::MapIter<'coll, K, V, I> where U: core::convert::From +pub fn aya::maps::MapIter<'coll, K, V, I>::into(self) -> U +impl core::convert::TryFrom for aya::maps::MapIter<'coll, K, V, I> where U: core::convert::Into +pub type aya::maps::MapIter<'coll, K, V, I>::Error = core::convert::Infallible +pub fn aya::maps::MapIter<'coll, K, V, I>::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::maps::MapIter<'coll, K, V, I> where U: core::convert::TryFrom +pub type aya::maps::MapIter<'coll, K, V, I>::Error = >::Error +pub fn aya::maps::MapIter<'coll, K, V, I>::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::maps::MapIter<'coll, K, V, I> where T: 'static + core::marker::Sized +pub fn aya::maps::MapIter<'coll, K, V, I>::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::maps::MapIter<'coll, K, V, I> where T: core::marker::Sized +pub fn aya::maps::MapIter<'coll, K, V, I>::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::maps::MapIter<'coll, K, V, I> where T: core::marker::Sized +pub fn aya::maps::MapIter<'coll, K, V, I>::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::maps::MapIter<'coll, K, V, I> +pub fn aya::maps::MapIter<'coll, K, V, I>::from(t: T) -> T +pub struct aya::maps::MapKeys<'coll, K: aya::Pod> +impl core::iter::traits::iterator::Iterator for aya::maps::MapKeys<'_, K> +pub type aya::maps::MapKeys<'_, K>::Item = core::result::Result +pub fn aya::maps::MapKeys<'_, K>::next(&mut self) -> core::option::Option> +impl<'coll, K> core::marker::Send for aya::maps::MapKeys<'coll, K> where K: core::marker::Send +impl<'coll, K> core::marker::Sync for aya::maps::MapKeys<'coll, K> where K: core::marker::Sync +impl<'coll, K> core::marker::Unpin for aya::maps::MapKeys<'coll, K> where K: core::marker::Unpin +impl<'coll, K> core::panic::unwind_safe::RefUnwindSafe for aya::maps::MapKeys<'coll, K> where K: core::panic::unwind_safe::RefUnwindSafe +impl<'coll, K> core::panic::unwind_safe::UnwindSafe for aya::maps::MapKeys<'coll, K> where K: core::panic::unwind_safe::UnwindSafe +impl core::iter::traits::collect::IntoIterator for aya::maps::MapKeys<'coll, K> where I: core::iter::traits::iterator::Iterator +pub type aya::maps::MapKeys<'coll, K>::IntoIter = I +pub type aya::maps::MapKeys<'coll, K>::Item = ::Item +pub fn aya::maps::MapKeys<'coll, K>::into_iter(self) -> I +impl core::convert::Into for aya::maps::MapKeys<'coll, K> where U: core::convert::From +pub fn aya::maps::MapKeys<'coll, K>::into(self) -> U +impl core::convert::TryFrom for aya::maps::MapKeys<'coll, K> where U: core::convert::Into +pub type aya::maps::MapKeys<'coll, K>::Error = core::convert::Infallible +pub fn aya::maps::MapKeys<'coll, K>::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::maps::MapKeys<'coll, K> where U: core::convert::TryFrom +pub type aya::maps::MapKeys<'coll, K>::Error = >::Error +pub fn aya::maps::MapKeys<'coll, K>::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::maps::MapKeys<'coll, K> where T: 'static + core::marker::Sized +pub fn aya::maps::MapKeys<'coll, K>::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::maps::MapKeys<'coll, K> where T: core::marker::Sized +pub fn aya::maps::MapKeys<'coll, K>::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::maps::MapKeys<'coll, K> where T: core::marker::Sized +pub fn aya::maps::MapKeys<'coll, K>::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::maps::MapKeys<'coll, K> +pub fn aya::maps::MapKeys<'coll, K>::from(t: T) -> T +pub struct aya::maps::PerCpuArray +impl, V: aya::Pod> aya::maps::PerCpuArray +pub fn aya::maps::PerCpuArray::get(&self, index: &u32, flags: u64) -> core::result::Result, aya::maps::MapError> +pub fn aya::maps::PerCpuArray::iter(&self) -> impl core::iter::traits::iterator::Iterator, aya::maps::MapError>> + '_ +pub fn aya::maps::PerCpuArray::len(&self) -> u32 +impl, V: aya::Pod> aya::maps::PerCpuArray +pub fn aya::maps::PerCpuArray::set(&mut self, index: u32, values: aya::maps::PerCpuValues, flags: u64) -> core::result::Result<(), aya::maps::MapError> +impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::PerCpuArray<&'a aya::maps::MapData, V> +pub type aya::maps::PerCpuArray<&'a aya::maps::MapData, V>::Error = aya::maps::MapError +pub fn aya::maps::PerCpuArray<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V> +pub type aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError +pub fn aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl, V: aya::Pod> aya::maps::IterableMap> for aya::maps::PerCpuArray +pub fn aya::maps::PerCpuArray::get(&self, index: &u32) -> core::result::Result, aya::maps::MapError> +pub fn aya::maps::PerCpuArray::map(&self) -> &aya::maps::MapData +impl core::convert::TryFrom for aya::maps::PerCpuArray +pub type aya::maps::PerCpuArray::Error = aya::maps::MapError +pub fn aya::maps::PerCpuArray::try_from(map: aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::marker::Send for aya::maps::PerCpuArray where T: core::marker::Send, V: core::marker::Send +impl core::marker::Sync for aya::maps::PerCpuArray where T: core::marker::Sync, V: core::marker::Sync +impl core::marker::Unpin for aya::maps::PerCpuArray where T: core::marker::Unpin, V: core::marker::Unpin +impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::PerCpuArray where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe +impl core::panic::unwind_safe::UnwindSafe for aya::maps::PerCpuArray where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya::maps::PerCpuArray where U: core::convert::From +pub fn aya::maps::PerCpuArray::into(self) -> U +impl core::convert::TryFrom for aya::maps::PerCpuArray where U: core::convert::Into +pub type aya::maps::PerCpuArray::Error = core::convert::Infallible +pub fn aya::maps::PerCpuArray::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::maps::PerCpuArray where U: core::convert::TryFrom +pub type aya::maps::PerCpuArray::Error = >::Error +pub fn aya::maps::PerCpuArray::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::maps::PerCpuArray where T: 'static + core::marker::Sized +pub fn aya::maps::PerCpuArray::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::maps::PerCpuArray where T: core::marker::Sized +pub fn aya::maps::PerCpuArray::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::maps::PerCpuArray where T: core::marker::Sized +pub fn aya::maps::PerCpuArray::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::maps::PerCpuArray +pub fn aya::maps::PerCpuArray::from(t: T) -> T +pub struct aya::maps::PerCpuHashMap +impl, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::PerCpuHashMap +pub fn aya::maps::hash_map::PerCpuHashMap::get(&self, key: &K, flags: u64) -> core::result::Result, aya::maps::MapError> +pub fn aya::maps::hash_map::PerCpuHashMap::iter(&self) -> aya::maps::MapIter<'_, K, aya::maps::PerCpuValues, Self> +pub fn aya::maps::hash_map::PerCpuHashMap::keys(&self) -> aya::maps::MapKeys<'_, K> +impl, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::PerCpuHashMap +pub fn aya::maps::hash_map::PerCpuHashMap::insert(&mut self, key: impl core::borrow::Borrow, values: aya::maps::PerCpuValues, flags: u64) -> core::result::Result<(), aya::maps::MapError> +pub fn aya::maps::hash_map::PerCpuHashMap::remove(&mut self, key: &K) -> core::result::Result<(), aya::maps::MapError> +impl<'a, V: aya::Pod, K: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, V, K> +pub type aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, V, K>::Error = aya::maps::MapError +pub fn aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, V, K>::try_from(map: &'a aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a, V: aya::Pod, K: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, V, K> +pub type aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, V, K>::Error = aya::maps::MapError +pub fn aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, V, K>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap> for aya::maps::hash_map::PerCpuHashMap +pub fn aya::maps::hash_map::PerCpuHashMap::get(&self, key: &K) -> core::result::Result, aya::maps::MapError> +pub fn aya::maps::hash_map::PerCpuHashMap::map(&self) -> &aya::maps::MapData +impl core::convert::TryFrom for aya::maps::hash_map::PerCpuHashMap +pub type aya::maps::hash_map::PerCpuHashMap::Error = aya::maps::MapError +pub fn aya::maps::hash_map::PerCpuHashMap::try_from(map: aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::marker::Send for aya::maps::hash_map::PerCpuHashMap where K: core::marker::Send, T: core::marker::Send, V: core::marker::Send +impl core::marker::Sync for aya::maps::hash_map::PerCpuHashMap where K: core::marker::Sync, T: core::marker::Sync, V: core::marker::Sync +impl core::marker::Unpin for aya::maps::hash_map::PerCpuHashMap where K: core::marker::Unpin, T: core::marker::Unpin, V: core::marker::Unpin +impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::hash_map::PerCpuHashMap where K: core::panic::unwind_safe::RefUnwindSafe, T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe +impl core::panic::unwind_safe::UnwindSafe for aya::maps::hash_map::PerCpuHashMap where K: core::panic::unwind_safe::UnwindSafe, T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya::maps::hash_map::PerCpuHashMap where U: core::convert::From +pub fn aya::maps::hash_map::PerCpuHashMap::into(self) -> U +impl core::convert::TryFrom for aya::maps::hash_map::PerCpuHashMap where U: core::convert::Into +pub type aya::maps::hash_map::PerCpuHashMap::Error = core::convert::Infallible +pub fn aya::maps::hash_map::PerCpuHashMap::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::maps::hash_map::PerCpuHashMap where U: core::convert::TryFrom +pub type aya::maps::hash_map::PerCpuHashMap::Error = >::Error +pub fn aya::maps::hash_map::PerCpuHashMap::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::maps::hash_map::PerCpuHashMap where T: 'static + core::marker::Sized +pub fn aya::maps::hash_map::PerCpuHashMap::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::maps::hash_map::PerCpuHashMap where T: core::marker::Sized +pub fn aya::maps::hash_map::PerCpuHashMap::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::maps::hash_map::PerCpuHashMap where T: core::marker::Sized +pub fn aya::maps::hash_map::PerCpuHashMap::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::maps::hash_map::PerCpuHashMap +pub fn aya::maps::hash_map::PerCpuHashMap::from(t: T) -> T +pub struct aya::maps::PerCpuValues +impl core::convert::TryFrom> for aya::maps::PerCpuValues +pub type aya::maps::PerCpuValues::Error = std::io::error::Error +pub fn aya::maps::PerCpuValues::try_from(values: alloc::vec::Vec) -> core::result::Result +impl core::ops::deref::Deref for aya::maps::PerCpuValues +pub type aya::maps::PerCpuValues::Target = alloc::boxed::Box<[T], alloc::alloc::Global> +pub fn aya::maps::PerCpuValues::deref(&self) -> &Self::Target +impl, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap> for aya::maps::hash_map::PerCpuHashMap +pub fn aya::maps::hash_map::PerCpuHashMap::get(&self, key: &K) -> core::result::Result, aya::maps::MapError> +pub fn aya::maps::hash_map::PerCpuHashMap::map(&self) -> &aya::maps::MapData +impl, V: aya::Pod> aya::maps::IterableMap> for aya::maps::PerCpuArray +pub fn aya::maps::PerCpuArray::get(&self, index: &u32) -> core::result::Result, aya::maps::MapError> +pub fn aya::maps::PerCpuArray::map(&self) -> &aya::maps::MapData +impl core::fmt::Debug for aya::maps::PerCpuValues +pub fn aya::maps::PerCpuValues::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::maps::PerCpuValues where T: core::marker::Send +impl core::marker::Sync for aya::maps::PerCpuValues where T: core::marker::Sync +impl core::marker::Unpin for aya::maps::PerCpuValues +impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::PerCpuValues where T: core::panic::unwind_safe::RefUnwindSafe +impl core::panic::unwind_safe::UnwindSafe for aya::maps::PerCpuValues where T: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya::maps::PerCpuValues where U: core::convert::From +pub fn aya::maps::PerCpuValues::into(self) -> U +impl core::convert::TryFrom for aya::maps::PerCpuValues where U: core::convert::Into +pub type aya::maps::PerCpuValues::Error = core::convert::Infallible +pub fn aya::maps::PerCpuValues::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::maps::PerCpuValues where U: core::convert::TryFrom +pub type aya::maps::PerCpuValues::Error = >::Error +pub fn aya::maps::PerCpuValues::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::maps::PerCpuValues where T: 'static + core::marker::Sized +pub fn aya::maps::PerCpuValues::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::maps::PerCpuValues where T: core::marker::Sized +pub fn aya::maps::PerCpuValues::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::maps::PerCpuValues where T: core::marker::Sized +pub fn aya::maps::PerCpuValues::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::maps::PerCpuValues +pub fn aya::maps::PerCpuValues::from(t: T) -> T +pub struct aya::maps::PerfEventArray +impl + core::borrow::Borrow> aya::maps::perf::PerfEventArray +pub fn aya::maps::perf::PerfEventArray::open(&mut self, index: u32, page_count: core::option::Option) -> core::result::Result, aya::maps::perf::PerfBufferError> +impl core::convert::TryFrom for aya::maps::perf::PerfEventArray +pub type aya::maps::perf::PerfEventArray::Error = aya::maps::MapError +pub fn aya::maps::perf::PerfEventArray::try_from(map: aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::perf::PerfEventArray<&'a aya::maps::MapData> +pub type aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>::Error = aya::maps::MapError +pub fn aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData> +pub type aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError +pub fn aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::marker::Send for aya::maps::perf::PerfEventArray where T: core::marker::Send + core::marker::Sync +impl core::marker::Sync for aya::maps::perf::PerfEventArray where T: core::marker::Send + core::marker::Sync +impl core::marker::Unpin for aya::maps::perf::PerfEventArray +impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::PerfEventArray where T: core::panic::unwind_safe::RefUnwindSafe +impl core::panic::unwind_safe::UnwindSafe for aya::maps::perf::PerfEventArray where T: core::panic::unwind_safe::RefUnwindSafe +impl core::convert::Into for aya::maps::perf::PerfEventArray where U: core::convert::From +pub fn aya::maps::perf::PerfEventArray::into(self) -> U +impl core::convert::TryFrom for aya::maps::perf::PerfEventArray where U: core::convert::Into +pub type aya::maps::perf::PerfEventArray::Error = core::convert::Infallible +pub fn aya::maps::perf::PerfEventArray::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::maps::perf::PerfEventArray where U: core::convert::TryFrom +pub type aya::maps::perf::PerfEventArray::Error = >::Error +pub fn aya::maps::perf::PerfEventArray::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::maps::perf::PerfEventArray where T: 'static + core::marker::Sized +pub fn aya::maps::perf::PerfEventArray::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::maps::perf::PerfEventArray where T: core::marker::Sized +pub fn aya::maps::perf::PerfEventArray::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::maps::perf::PerfEventArray where T: core::marker::Sized +pub fn aya::maps::perf::PerfEventArray::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::maps::perf::PerfEventArray +pub fn aya::maps::perf::PerfEventArray::from(t: T) -> T +pub struct aya::maps::ProgramArray +impl> aya::maps::ProgramArray +pub fn aya::maps::ProgramArray::indices(&self) -> aya::maps::MapKeys<'_, u32> +impl> aya::maps::ProgramArray +pub fn aya::maps::ProgramArray::clear_index(&mut self, index: &u32) -> core::result::Result<(), aya::maps::MapError> +pub fn aya::maps::ProgramArray::set(&mut self, index: u32, program: aya::programs::ProgramFd, flags: u64) -> core::result::Result<(), aya::maps::MapError> +impl core::convert::TryFrom for aya::maps::ProgramArray +pub type aya::maps::ProgramArray::Error = aya::maps::MapError +pub fn aya::maps::ProgramArray::try_from(map: aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::ProgramArray<&'a aya::maps::MapData> +pub type aya::maps::ProgramArray<&'a aya::maps::MapData>::Error = aya::maps::MapError +pub fn aya::maps::ProgramArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::ProgramArray<&'a mut aya::maps::MapData> +pub type aya::maps::ProgramArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError +pub fn aya::maps::ProgramArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::marker::Send for aya::maps::ProgramArray where T: core::marker::Send +impl core::marker::Sync for aya::maps::ProgramArray where T: core::marker::Sync +impl core::marker::Unpin for aya::maps::ProgramArray where T: core::marker::Unpin +impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::ProgramArray where T: core::panic::unwind_safe::RefUnwindSafe +impl core::panic::unwind_safe::UnwindSafe for aya::maps::ProgramArray where T: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya::maps::ProgramArray where U: core::convert::From +pub fn aya::maps::ProgramArray::into(self) -> U +impl core::convert::TryFrom for aya::maps::ProgramArray where U: core::convert::Into +pub type aya::maps::ProgramArray::Error = core::convert::Infallible +pub fn aya::maps::ProgramArray::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::maps::ProgramArray where U: core::convert::TryFrom +pub type aya::maps::ProgramArray::Error = >::Error +pub fn aya::maps::ProgramArray::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::maps::ProgramArray where T: 'static + core::marker::Sized +pub fn aya::maps::ProgramArray::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::maps::ProgramArray where T: core::marker::Sized +pub fn aya::maps::ProgramArray::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::maps::ProgramArray where T: core::marker::Sized +pub fn aya::maps::ProgramArray::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::maps::ProgramArray +pub fn aya::maps::ProgramArray::from(t: T) -> T +pub struct aya::maps::Queue +impl, V: aya::Pod> aya::maps::queue::Queue +pub fn aya::maps::queue::Queue::capacity(&self) -> u32 +impl, V: aya::Pod> aya::maps::queue::Queue +pub fn aya::maps::queue::Queue::pop(&mut self, flags: u64) -> core::result::Result +pub fn aya::maps::queue::Queue::push(&mut self, value: impl core::borrow::Borrow, flags: u64) -> core::result::Result<(), aya::maps::MapError> +impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::queue::Queue<&'a aya::maps::MapData, V> +pub type aya::maps::queue::Queue<&'a aya::maps::MapData, V>::Error = aya::maps::MapError +pub fn aya::maps::queue::Queue<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::queue::Queue<&'a mut aya::maps::MapData, V> +pub type aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError +pub fn aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::convert::TryFrom for aya::maps::queue::Queue +pub type aya::maps::queue::Queue::Error = aya::maps::MapError +pub fn aya::maps::queue::Queue::try_from(map: aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::marker::Send for aya::maps::queue::Queue where T: core::marker::Send, V: core::marker::Send +impl core::marker::Sync for aya::maps::queue::Queue where T: core::marker::Sync, V: core::marker::Sync +impl core::marker::Unpin for aya::maps::queue::Queue where T: core::marker::Unpin, V: core::marker::Unpin +impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::queue::Queue where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe +impl core::panic::unwind_safe::UnwindSafe for aya::maps::queue::Queue where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya::maps::queue::Queue where U: core::convert::From +pub fn aya::maps::queue::Queue::into(self) -> U +impl core::convert::TryFrom for aya::maps::queue::Queue where U: core::convert::Into +pub type aya::maps::queue::Queue::Error = core::convert::Infallible +pub fn aya::maps::queue::Queue::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::maps::queue::Queue where U: core::convert::TryFrom +pub type aya::maps::queue::Queue::Error = >::Error +pub fn aya::maps::queue::Queue::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::maps::queue::Queue where T: 'static + core::marker::Sized +pub fn aya::maps::queue::Queue::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::maps::queue::Queue where T: core::marker::Sized +pub fn aya::maps::queue::Queue::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::maps::queue::Queue where T: core::marker::Sized +pub fn aya::maps::queue::Queue::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::maps::queue::Queue +pub fn aya::maps::queue::Queue::from(t: T) -> T +pub struct aya::maps::SockHash +impl, K: aya::Pod> aya::maps::SockHash +pub fn aya::maps::SockHash::fd(&self) -> core::result::Result +pub fn aya::maps::SockHash::get(&self, key: &K, flags: u64) -> core::result::Result +pub fn aya::maps::SockHash::iter(&self) -> aya::maps::MapIter<'_, K, std::os::fd::raw::RawFd, Self> +pub fn aya::maps::SockHash::keys(&self) -> aya::maps::MapKeys<'_, K> +impl, K: aya::Pod> aya::maps::SockHash +pub fn aya::maps::SockHash::insert(&mut self, key: impl core::borrow::Borrow, value: I, flags: u64) -> core::result::Result<(), aya::maps::MapError> +pub fn aya::maps::SockHash::remove(&mut self, key: &K) -> core::result::Result<(), aya::maps::MapError> +impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::SockHash<&'a aya::maps::MapData, V> +pub type aya::maps::SockHash<&'a aya::maps::MapData, V>::Error = aya::maps::MapError +pub fn aya::maps::SockHash<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::SockHash<&'a mut aya::maps::MapData, V> +pub type aya::maps::SockHash<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError +pub fn aya::maps::SockHash<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl, K: aya::Pod> aya::maps::IterableMap for aya::maps::SockHash +pub fn aya::maps::SockHash::get(&self, key: &K) -> core::result::Result +pub fn aya::maps::SockHash::map(&self) -> &aya::maps::MapData +impl core::convert::TryFrom for aya::maps::SockHash +pub type aya::maps::SockHash::Error = aya::maps::MapError +pub fn aya::maps::SockHash::try_from(map: aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::marker::Send for aya::maps::SockHash where K: core::marker::Send, T: core::marker::Send +impl core::marker::Sync for aya::maps::SockHash where K: core::marker::Sync, T: core::marker::Sync +impl core::marker::Unpin for aya::maps::SockHash where K: core::marker::Unpin, T: core::marker::Unpin +impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::SockHash where K: core::panic::unwind_safe::RefUnwindSafe, T: core::panic::unwind_safe::RefUnwindSafe +impl core::panic::unwind_safe::UnwindSafe for aya::maps::SockHash where K: core::panic::unwind_safe::UnwindSafe, T: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya::maps::SockHash where U: core::convert::From +pub fn aya::maps::SockHash::into(self) -> U +impl core::convert::TryFrom for aya::maps::SockHash where U: core::convert::Into +pub type aya::maps::SockHash::Error = core::convert::Infallible +pub fn aya::maps::SockHash::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::maps::SockHash where U: core::convert::TryFrom +pub type aya::maps::SockHash::Error = >::Error +pub fn aya::maps::SockHash::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::maps::SockHash where T: 'static + core::marker::Sized +pub fn aya::maps::SockHash::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::maps::SockHash where T: core::marker::Sized +pub fn aya::maps::SockHash::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::maps::SockHash where T: core::marker::Sized +pub fn aya::maps::SockHash::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::maps::SockHash +pub fn aya::maps::SockHash::from(t: T) -> T +pub struct aya::maps::SockMap +impl> aya::maps::SockMap +pub fn aya::maps::SockMap::fd(&self) -> core::result::Result +pub fn aya::maps::SockMap::indices(&self) -> aya::maps::MapKeys<'_, u32> +impl> aya::maps::SockMap +pub fn aya::maps::SockMap::clear_index(&mut self, index: &u32) -> core::result::Result<(), aya::maps::MapError> +pub fn aya::maps::SockMap::set(&mut self, index: u32, socket: &I, flags: u64) -> core::result::Result<(), aya::maps::MapError> +impl core::convert::TryFrom for aya::maps::SockMap +pub type aya::maps::SockMap::Error = aya::maps::MapError +pub fn aya::maps::SockMap::try_from(map: aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::SockMap<&'a aya::maps::MapData> +pub type aya::maps::SockMap<&'a aya::maps::MapData>::Error = aya::maps::MapError +pub fn aya::maps::SockMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::SockMap<&'a mut aya::maps::MapData> +pub type aya::maps::SockMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError +pub fn aya::maps::SockMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::marker::Send for aya::maps::SockMap where T: core::marker::Send +impl core::marker::Sync for aya::maps::SockMap where T: core::marker::Sync +impl core::marker::Unpin for aya::maps::SockMap where T: core::marker::Unpin +impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::SockMap where T: core::panic::unwind_safe::RefUnwindSafe +impl core::panic::unwind_safe::UnwindSafe for aya::maps::SockMap where T: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya::maps::SockMap where U: core::convert::From +pub fn aya::maps::SockMap::into(self) -> U +impl core::convert::TryFrom for aya::maps::SockMap where U: core::convert::Into +pub type aya::maps::SockMap::Error = core::convert::Infallible +pub fn aya::maps::SockMap::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::maps::SockMap where U: core::convert::TryFrom +pub type aya::maps::SockMap::Error = >::Error +pub fn aya::maps::SockMap::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::maps::SockMap where T: 'static + core::marker::Sized +pub fn aya::maps::SockMap::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::maps::SockMap where T: core::marker::Sized +pub fn aya::maps::SockMap::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::maps::SockMap where T: core::marker::Sized +pub fn aya::maps::SockMap::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::maps::SockMap +pub fn aya::maps::SockMap::from(t: T) -> T +pub struct aya::maps::Stack +impl, V: aya::Pod> aya::maps::stack::Stack +pub fn aya::maps::stack::Stack::capacity(&self) -> u32 +impl, V: aya::Pod> aya::maps::stack::Stack +pub fn aya::maps::stack::Stack::pop(&mut self, flags: u64) -> core::result::Result +pub fn aya::maps::stack::Stack::push(&mut self, value: impl core::borrow::Borrow, flags: u64) -> core::result::Result<(), aya::maps::MapError> +impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::stack::Stack<&'a aya::maps::MapData, V> +pub type aya::maps::stack::Stack<&'a aya::maps::MapData, V>::Error = aya::maps::MapError +pub fn aya::maps::stack::Stack<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::stack::Stack<&'a mut aya::maps::MapData, V> +pub type aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError +pub fn aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::convert::TryFrom for aya::maps::stack::Stack +pub type aya::maps::stack::Stack::Error = aya::maps::MapError +pub fn aya::maps::stack::Stack::try_from(map: aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl core::marker::Send for aya::maps::stack::Stack where T: core::marker::Send, V: core::marker::Send +impl core::marker::Sync for aya::maps::stack::Stack where T: core::marker::Sync, V: core::marker::Sync +impl core::marker::Unpin for aya::maps::stack::Stack where T: core::marker::Unpin, V: core::marker::Unpin +impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::stack::Stack where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe +impl core::panic::unwind_safe::UnwindSafe for aya::maps::stack::Stack where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya::maps::stack::Stack where U: core::convert::From +pub fn aya::maps::stack::Stack::into(self) -> U +impl core::convert::TryFrom for aya::maps::stack::Stack where U: core::convert::Into +pub type aya::maps::stack::Stack::Error = core::convert::Infallible +pub fn aya::maps::stack::Stack::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::maps::stack::Stack where U: core::convert::TryFrom +pub type aya::maps::stack::Stack::Error = >::Error +pub fn aya::maps::stack::Stack::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::maps::stack::Stack where T: 'static + core::marker::Sized +pub fn aya::maps::stack::Stack::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::maps::stack::Stack where T: core::marker::Sized +pub fn aya::maps::stack::Stack::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::maps::stack::Stack where T: core::marker::Sized +pub fn aya::maps::stack::Stack::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::maps::stack::Stack +pub fn aya::maps::stack::Stack::from(t: T) -> T +pub struct aya::maps::StackTraceMap +impl> aya::maps::stack_trace::StackTraceMap +pub fn aya::maps::stack_trace::StackTraceMap::get(&self, stack_id: &u32, flags: u64) -> core::result::Result +pub fn aya::maps::stack_trace::StackTraceMap::iter(&self) -> aya::maps::MapIter<'_, u32, aya::maps::stack_trace::StackTrace, Self> +pub fn aya::maps::stack_trace::StackTraceMap::stack_ids(&self) -> aya::maps::MapKeys<'_, u32> +impl core::convert::TryFrom for aya::maps::stack_trace::StackTraceMap +pub type aya::maps::stack_trace::StackTraceMap::Error = aya::maps::MapError +pub fn aya::maps::stack_trace::StackTraceMap::try_from(map: aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a, T: core::borrow::Borrow> core::iter::traits::collect::IntoIterator for &'a aya::maps::stack_trace::StackTraceMap +pub type &'a aya::maps::stack_trace::StackTraceMap::IntoIter = aya::maps::MapIter<'a, u32, aya::maps::stack_trace::StackTrace, aya::maps::stack_trace::StackTraceMap> +pub type &'a aya::maps::stack_trace::StackTraceMap::Item = core::result::Result<(u32, aya::maps::stack_trace::StackTrace), aya::maps::MapError> +pub fn &'a aya::maps::stack_trace::StackTraceMap::into_iter(self) -> Self::IntoIter +impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData> +pub type aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>::Error = aya::maps::MapError +pub fn aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData> +pub type aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError +pub fn aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result, aya::maps::MapError> +impl> aya::maps::IterableMap for aya::maps::stack_trace::StackTraceMap +pub fn aya::maps::stack_trace::StackTraceMap::get(&self, index: &u32) -> core::result::Result +pub fn aya::maps::stack_trace::StackTraceMap::map(&self) -> &aya::maps::MapData +impl core::fmt::Debug for aya::maps::stack_trace::StackTraceMap +pub fn aya::maps::stack_trace::StackTraceMap::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::maps::stack_trace::StackTraceMap where T: core::marker::Send +impl core::marker::Sync for aya::maps::stack_trace::StackTraceMap where T: core::marker::Sync +impl core::marker::Unpin for aya::maps::stack_trace::StackTraceMap where T: core::marker::Unpin +impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::stack_trace::StackTraceMap where T: core::panic::unwind_safe::RefUnwindSafe +impl core::panic::unwind_safe::UnwindSafe for aya::maps::stack_trace::StackTraceMap where T: core::panic::unwind_safe::UnwindSafe +impl core::convert::Into for aya::maps::stack_trace::StackTraceMap where U: core::convert::From +pub fn aya::maps::stack_trace::StackTraceMap::into(self) -> U +impl core::convert::TryFrom for aya::maps::stack_trace::StackTraceMap where U: core::convert::Into +pub type aya::maps::stack_trace::StackTraceMap::Error = core::convert::Infallible +pub fn aya::maps::stack_trace::StackTraceMap::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::maps::stack_trace::StackTraceMap where U: core::convert::TryFrom +pub type aya::maps::stack_trace::StackTraceMap::Error = >::Error +pub fn aya::maps::stack_trace::StackTraceMap::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::maps::stack_trace::StackTraceMap where T: 'static + core::marker::Sized +pub fn aya::maps::stack_trace::StackTraceMap::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::maps::stack_trace::StackTraceMap where T: core::marker::Sized +pub fn aya::maps::stack_trace::StackTraceMap::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::maps::stack_trace::StackTraceMap where T: core::marker::Sized +pub fn aya::maps::stack_trace::StackTraceMap::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::maps::stack_trace::StackTraceMap +pub fn aya::maps::stack_trace::StackTraceMap::from(t: T) -> T +pub trait aya::maps::IterableMap +pub fn aya::maps::IterableMap::get(&self, key: &K) -> core::result::Result +pub fn aya::maps::IterableMap::map(&self) -> &aya::maps::MapData +impl, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap for aya::maps::hash_map::HashMap +pub fn aya::maps::hash_map::HashMap::get(&self, key: &K) -> core::result::Result +pub fn aya::maps::hash_map::HashMap::map(&self) -> &aya::maps::MapData +impl, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap> for aya::maps::hash_map::PerCpuHashMap +pub fn aya::maps::hash_map::PerCpuHashMap::get(&self, key: &K) -> core::result::Result, aya::maps::MapError> +pub fn aya::maps::hash_map::PerCpuHashMap::map(&self) -> &aya::maps::MapData +impl, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap, V> for aya::maps::lpm_trie::LpmTrie +pub fn aya::maps::lpm_trie::LpmTrie::get(&self, key: &aya::maps::lpm_trie::Key) -> core::result::Result +pub fn aya::maps::lpm_trie::LpmTrie::map(&self) -> &aya::maps::MapData +impl, K: aya::Pod> aya::maps::IterableMap for aya::maps::SockHash +pub fn aya::maps::SockHash::get(&self, key: &K) -> core::result::Result +pub fn aya::maps::SockHash::map(&self) -> &aya::maps::MapData +impl, V: aya::Pod> aya::maps::IterableMap for aya::maps::array::Array +pub fn aya::maps::array::Array::get(&self, index: &u32) -> core::result::Result +pub fn aya::maps::array::Array::map(&self) -> &aya::maps::MapData +impl, V: aya::Pod> aya::maps::IterableMap> for aya::maps::PerCpuArray +pub fn aya::maps::PerCpuArray::get(&self, index: &u32) -> core::result::Result, aya::maps::MapError> +pub fn aya::maps::PerCpuArray::map(&self) -> &aya::maps::MapData +impl> aya::maps::IterableMap for aya::maps::stack_trace::StackTraceMap +pub fn aya::maps::stack_trace::StackTraceMap::get(&self, index: &u32) -> core::result::Result +pub fn aya::maps::stack_trace::StackTraceMap::map(&self) -> &aya::maps::MapData +pub mod aya::pin +pub enum aya::pin::PinError +pub aya::pin::PinError::AlreadyPinned +pub aya::pin::PinError::AlreadyPinned::name: alloc::string::String +pub aya::pin::PinError::InvalidPinPath +pub aya::pin::PinError::InvalidPinPath::error: alloc::string::String +pub aya::pin::PinError::NoFd +pub aya::pin::PinError::NoFd::name: alloc::string::String +pub aya::pin::PinError::SyscallError +pub aya::pin::PinError::SyscallError::io_error: std::io::error::Error +pub aya::pin::PinError::SyscallError::name: &'static str +impl core::error::Error for aya::pin::PinError +pub fn aya::pin::PinError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)> +impl core::fmt::Display for aya::pin::PinError +pub fn aya::pin::PinError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::fmt::Debug for aya::pin::PinError +pub fn aya::pin::PinError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::pin::PinError +impl core::marker::Sync for aya::pin::PinError +impl core::marker::Unpin for aya::pin::PinError +impl !core::panic::unwind_safe::RefUnwindSafe for aya::pin::PinError +impl !core::panic::unwind_safe::UnwindSafe for aya::pin::PinError +impl core::any::Provider for aya::pin::PinError where E: core::error::Error + core::marker::Sized +pub fn aya::pin::PinError::provide<'a>(&'a self, demand: &mut core::any::Demand<'a>) +impl core::convert::Into for aya::pin::PinError where U: core::convert::From +pub fn aya::pin::PinError::into(self) -> U +impl core::convert::TryFrom for aya::pin::PinError where U: core::convert::Into +pub type aya::pin::PinError::Error = core::convert::Infallible +pub fn aya::pin::PinError::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::pin::PinError where U: core::convert::TryFrom +pub type aya::pin::PinError::Error = >::Error +pub fn aya::pin::PinError::try_into(self) -> core::result::Result>::Error> +impl alloc::string::ToString for aya::pin::PinError where T: core::fmt::Display + core::marker::Sized +pub fn aya::pin::PinError::to_string(&self) -> alloc::string::String +impl core::any::Any for aya::pin::PinError where T: 'static + core::marker::Sized +pub fn aya::pin::PinError::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::pin::PinError where T: core::marker::Sized +pub fn aya::pin::PinError::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::pin::PinError where T: core::marker::Sized +pub fn aya::pin::PinError::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::pin::PinError +pub fn aya::pin::PinError::from(t: T) -> T +pub mod aya::programs +pub use aya::programs::CgroupSockAddrAttachType +pub use aya::programs::CgroupSockAttachType +pub use aya::programs::CgroupSockoptAttachType +pub mod aya::programs::cgroup_device +pub struct aya::programs::cgroup_device::CgroupDevice +impl aya::programs::cgroup_device::CgroupDevice +pub fn aya::programs::cgroup_device::CgroupDevice::attach(&mut self, cgroup: T) -> core::result::Result +pub fn aya::programs::cgroup_device::CgroupDevice::detach(&mut self, link_id: aya::programs::cgroup_device::CgroupDeviceLinkId) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::cgroup_device::CgroupDevice::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::cgroup_device::CgroupDevice::take_link(&mut self, link_id: aya::programs::cgroup_device::CgroupDeviceLinkId) -> core::result::Result +impl aya::programs::cgroup_device::CgroupDevice +pub fn aya::programs::cgroup_device::CgroupDevice::fd(&self) -> core::option::Option +impl aya::programs::cgroup_device::CgroupDevice +pub fn aya::programs::cgroup_device::CgroupDevice::from_pin>(path: P) -> core::result::Result +impl aya::programs::cgroup_device::CgroupDevice +pub fn aya::programs::cgroup_device::CgroupDevice::pin>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError> +pub fn aya::programs::cgroup_device::CgroupDevice::unpin(self) -> core::result::Result<(), std::io::error::Error> +impl aya::programs::cgroup_device::CgroupDevice +pub fn aya::programs::cgroup_device::CgroupDevice::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +impl core::ops::drop::Drop for aya::programs::cgroup_device::CgroupDevice +pub fn aya::programs::cgroup_device::CgroupDevice::drop(&mut self) +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_device::CgroupDevice +pub type &'a aya::programs::cgroup_device::CgroupDevice::Error = aya::programs::ProgramError +pub fn &'a aya::programs::cgroup_device::CgroupDevice::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_device::CgroupDevice, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_device::CgroupDevice +pub type &'a mut aya::programs::cgroup_device::CgroupDevice::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::cgroup_device::CgroupDevice::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_device::CgroupDevice, aya::programs::ProgramError> +impl core::fmt::Debug for aya::programs::cgroup_device::CgroupDevice +pub fn aya::programs::cgroup_device::CgroupDevice::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::cgroup_device::CgroupDevice +impl core::marker::Sync for aya::programs::cgroup_device::CgroupDevice +impl core::marker::Unpin for aya::programs::cgroup_device::CgroupDevice +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_device::CgroupDevice +impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_device::CgroupDevice +impl core::convert::Into for aya::programs::cgroup_device::CgroupDevice where U: core::convert::From +pub fn aya::programs::cgroup_device::CgroupDevice::into(self) -> U +impl core::convert::TryFrom for aya::programs::cgroup_device::CgroupDevice where U: core::convert::Into +pub type aya::programs::cgroup_device::CgroupDevice::Error = core::convert::Infallible +pub fn aya::programs::cgroup_device::CgroupDevice::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::cgroup_device::CgroupDevice where U: core::convert::TryFrom +pub type aya::programs::cgroup_device::CgroupDevice::Error = >::Error +pub fn aya::programs::cgroup_device::CgroupDevice::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::cgroup_device::CgroupDevice where T: 'static + core::marker::Sized +pub fn aya::programs::cgroup_device::CgroupDevice::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::cgroup_device::CgroupDevice where T: core::marker::Sized +pub fn aya::programs::cgroup_device::CgroupDevice::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::cgroup_device::CgroupDevice where T: core::marker::Sized +pub fn aya::programs::cgroup_device::CgroupDevice::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::cgroup_device::CgroupDevice +pub fn aya::programs::cgroup_device::CgroupDevice::from(t: T) -> T +pub struct aya::programs::cgroup_device::CgroupDeviceLink(_) +impl aya::programs::links::Link for aya::programs::cgroup_device::CgroupDeviceLink +pub type aya::programs::cgroup_device::CgroupDeviceLink::Id = aya::programs::cgroup_device::CgroupDeviceLinkId +pub fn aya::programs::cgroup_device::CgroupDeviceLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::cgroup_device::CgroupDeviceLink::id(&self) -> Self::Id +impl core::ops::drop::Drop for aya::programs::cgroup_device::CgroupDeviceLink +pub fn aya::programs::cgroup_device::CgroupDeviceLink::drop(&mut self) +impl core::fmt::Debug for aya::programs::cgroup_device::CgroupDeviceLink +pub fn aya::programs::cgroup_device::CgroupDeviceLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::cgroup_device::CgroupDeviceLink +impl core::marker::Sync for aya::programs::cgroup_device::CgroupDeviceLink +impl core::marker::Unpin for aya::programs::cgroup_device::CgroupDeviceLink +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_device::CgroupDeviceLink +impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_device::CgroupDeviceLink +impl core::convert::Into for aya::programs::cgroup_device::CgroupDeviceLink where U: core::convert::From +pub fn aya::programs::cgroup_device::CgroupDeviceLink::into(self) -> U +impl core::convert::TryFrom for aya::programs::cgroup_device::CgroupDeviceLink where U: core::convert::Into +pub type aya::programs::cgroup_device::CgroupDeviceLink::Error = core::convert::Infallible +pub fn aya::programs::cgroup_device::CgroupDeviceLink::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::cgroup_device::CgroupDeviceLink where U: core::convert::TryFrom +pub type aya::programs::cgroup_device::CgroupDeviceLink::Error = >::Error +pub fn aya::programs::cgroup_device::CgroupDeviceLink::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::cgroup_device::CgroupDeviceLink where T: 'static + core::marker::Sized +pub fn aya::programs::cgroup_device::CgroupDeviceLink::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::cgroup_device::CgroupDeviceLink where T: core::marker::Sized +pub fn aya::programs::cgroup_device::CgroupDeviceLink::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::cgroup_device::CgroupDeviceLink where T: core::marker::Sized +pub fn aya::programs::cgroup_device::CgroupDeviceLink::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::cgroup_device::CgroupDeviceLink +pub fn aya::programs::cgroup_device::CgroupDeviceLink::from(t: T) -> T +pub struct aya::programs::cgroup_device::CgroupDeviceLinkId(_) +impl core::cmp::Eq for aya::programs::cgroup_device::CgroupDeviceLinkId +impl core::cmp::PartialEq for aya::programs::cgroup_device::CgroupDeviceLinkId +pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::eq(&self, other: &aya::programs::cgroup_device::CgroupDeviceLinkId) -> bool +impl core::fmt::Debug for aya::programs::cgroup_device::CgroupDeviceLinkId +pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::hash::Hash for aya::programs::cgroup_device::CgroupDeviceLinkId +pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H) +impl core::marker::StructuralEq for aya::programs::cgroup_device::CgroupDeviceLinkId +impl core::marker::StructuralPartialEq for aya::programs::cgroup_device::CgroupDeviceLinkId +impl core::marker::Send for aya::programs::cgroup_device::CgroupDeviceLinkId +impl core::marker::Sync for aya::programs::cgroup_device::CgroupDeviceLinkId +impl core::marker::Unpin for aya::programs::cgroup_device::CgroupDeviceLinkId +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_device::CgroupDeviceLinkId +impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_device::CgroupDeviceLinkId +impl core::convert::Into for aya::programs::cgroup_device::CgroupDeviceLinkId where U: core::convert::From +pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::into(self) -> U +impl core::convert::TryFrom for aya::programs::cgroup_device::CgroupDeviceLinkId where U: core::convert::Into +pub type aya::programs::cgroup_device::CgroupDeviceLinkId::Error = core::convert::Infallible +pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::cgroup_device::CgroupDeviceLinkId where U: core::convert::TryFrom +pub type aya::programs::cgroup_device::CgroupDeviceLinkId::Error = >::Error +pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::cgroup_device::CgroupDeviceLinkId where T: 'static + core::marker::Sized +pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::cgroup_device::CgroupDeviceLinkId where T: core::marker::Sized +pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::cgroup_device::CgroupDeviceLinkId where T: core::marker::Sized +pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::cgroup_device::CgroupDeviceLinkId +pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::from(t: T) -> T +pub mod aya::programs::cgroup_skb +pub enum aya::programs::cgroup_skb::CgroupSkbAttachType +pub aya::programs::cgroup_skb::CgroupSkbAttachType::Egress +pub aya::programs::cgroup_skb::CgroupSkbAttachType::Ingress +impl core::clone::Clone for aya::programs::cgroup_skb::CgroupSkbAttachType +pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::clone(&self) -> aya::programs::cgroup_skb::CgroupSkbAttachType +impl core::fmt::Debug for aya::programs::cgroup_skb::CgroupSkbAttachType +pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya::programs::cgroup_skb::CgroupSkbAttachType +impl core::marker::Send for aya::programs::cgroup_skb::CgroupSkbAttachType +impl core::marker::Sync for aya::programs::cgroup_skb::CgroupSkbAttachType +impl core::marker::Unpin for aya::programs::cgroup_skb::CgroupSkbAttachType +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_skb::CgroupSkbAttachType +impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_skb::CgroupSkbAttachType +impl core::convert::Into for aya::programs::cgroup_skb::CgroupSkbAttachType where U: core::convert::From +pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::into(self) -> U +impl core::convert::TryFrom for aya::programs::cgroup_skb::CgroupSkbAttachType where U: core::convert::Into +pub type aya::programs::cgroup_skb::CgroupSkbAttachType::Error = core::convert::Infallible +pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::cgroup_skb::CgroupSkbAttachType where U: core::convert::TryFrom +pub type aya::programs::cgroup_skb::CgroupSkbAttachType::Error = >::Error +pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya::programs::cgroup_skb::CgroupSkbAttachType where T: core::clone::Clone +pub type aya::programs::cgroup_skb::CgroupSkbAttachType::Owned = T +pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::clone_into(&self, target: &mut T) +pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::to_owned(&self) -> T +impl core::any::Any for aya::programs::cgroup_skb::CgroupSkbAttachType where T: 'static + core::marker::Sized +pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::cgroup_skb::CgroupSkbAttachType where T: core::marker::Sized +pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::cgroup_skb::CgroupSkbAttachType where T: core::marker::Sized +pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::cgroup_skb::CgroupSkbAttachType +pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::from(t: T) -> T +pub struct aya::programs::cgroup_skb::CgroupSkb +impl aya::programs::cgroup_skb::CgroupSkb +pub fn aya::programs::cgroup_skb::CgroupSkb::attach(&mut self, cgroup: T, attach_type: aya::programs::cgroup_skb::CgroupSkbAttachType) -> core::result::Result +pub fn aya::programs::cgroup_skb::CgroupSkb::detach(&mut self, link_id: aya::programs::cgroup_skb::CgroupSkbLinkId) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::cgroup_skb::CgroupSkb::expected_attach_type(&self) -> &core::option::Option +pub fn aya::programs::cgroup_skb::CgroupSkb::from_pin>(path: P, expected_attach_type: aya::programs::cgroup_skb::CgroupSkbAttachType) -> core::result::Result +pub fn aya::programs::cgroup_skb::CgroupSkb::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::cgroup_skb::CgroupSkb::take_link(&mut self, link_id: aya::programs::cgroup_skb::CgroupSkbLinkId) -> core::result::Result +impl aya::programs::cgroup_skb::CgroupSkb +pub fn aya::programs::cgroup_skb::CgroupSkb::fd(&self) -> core::option::Option +impl aya::programs::cgroup_skb::CgroupSkb +pub fn aya::programs::cgroup_skb::CgroupSkb::pin>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError> +pub fn aya::programs::cgroup_skb::CgroupSkb::unpin(self) -> core::result::Result<(), std::io::error::Error> +impl aya::programs::cgroup_skb::CgroupSkb +pub fn aya::programs::cgroup_skb::CgroupSkb::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +impl core::ops::drop::Drop for aya::programs::cgroup_skb::CgroupSkb +pub fn aya::programs::cgroup_skb::CgroupSkb::drop(&mut self) +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_skb::CgroupSkb +pub type &'a aya::programs::cgroup_skb::CgroupSkb::Error = aya::programs::ProgramError +pub fn &'a aya::programs::cgroup_skb::CgroupSkb::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_skb::CgroupSkb, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_skb::CgroupSkb +pub type &'a mut aya::programs::cgroup_skb::CgroupSkb::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::cgroup_skb::CgroupSkb::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_skb::CgroupSkb, aya::programs::ProgramError> +impl core::fmt::Debug for aya::programs::cgroup_skb::CgroupSkb +pub fn aya::programs::cgroup_skb::CgroupSkb::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::cgroup_skb::CgroupSkb +impl core::marker::Sync for aya::programs::cgroup_skb::CgroupSkb +impl core::marker::Unpin for aya::programs::cgroup_skb::CgroupSkb +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_skb::CgroupSkb +impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_skb::CgroupSkb +impl core::convert::Into for aya::programs::cgroup_skb::CgroupSkb where U: core::convert::From +pub fn aya::programs::cgroup_skb::CgroupSkb::into(self) -> U +impl core::convert::TryFrom for aya::programs::cgroup_skb::CgroupSkb where U: core::convert::Into +pub type aya::programs::cgroup_skb::CgroupSkb::Error = core::convert::Infallible +pub fn aya::programs::cgroup_skb::CgroupSkb::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::cgroup_skb::CgroupSkb where U: core::convert::TryFrom +pub type aya::programs::cgroup_skb::CgroupSkb::Error = >::Error +pub fn aya::programs::cgroup_skb::CgroupSkb::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::cgroup_skb::CgroupSkb where T: 'static + core::marker::Sized +pub fn aya::programs::cgroup_skb::CgroupSkb::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::cgroup_skb::CgroupSkb where T: core::marker::Sized +pub fn aya::programs::cgroup_skb::CgroupSkb::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::cgroup_skb::CgroupSkb where T: core::marker::Sized +pub fn aya::programs::cgroup_skb::CgroupSkb::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::cgroup_skb::CgroupSkb +pub fn aya::programs::cgroup_skb::CgroupSkb::from(t: T) -> T +pub struct aya::programs::cgroup_skb::CgroupSkbLink(_) +impl aya::programs::links::Link for aya::programs::cgroup_skb::CgroupSkbLink +pub type aya::programs::cgroup_skb::CgroupSkbLink::Id = aya::programs::cgroup_skb::CgroupSkbLinkId +pub fn aya::programs::cgroup_skb::CgroupSkbLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::cgroup_skb::CgroupSkbLink::id(&self) -> Self::Id +impl core::ops::drop::Drop for aya::programs::cgroup_skb::CgroupSkbLink +pub fn aya::programs::cgroup_skb::CgroupSkbLink::drop(&mut self) +impl core::fmt::Debug for aya::programs::cgroup_skb::CgroupSkbLink +pub fn aya::programs::cgroup_skb::CgroupSkbLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::cgroup_skb::CgroupSkbLink +impl core::marker::Sync for aya::programs::cgroup_skb::CgroupSkbLink +impl core::marker::Unpin for aya::programs::cgroup_skb::CgroupSkbLink +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_skb::CgroupSkbLink +impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_skb::CgroupSkbLink +impl core::convert::Into for aya::programs::cgroup_skb::CgroupSkbLink where U: core::convert::From +pub fn aya::programs::cgroup_skb::CgroupSkbLink::into(self) -> U +impl core::convert::TryFrom for aya::programs::cgroup_skb::CgroupSkbLink where U: core::convert::Into +pub type aya::programs::cgroup_skb::CgroupSkbLink::Error = core::convert::Infallible +pub fn aya::programs::cgroup_skb::CgroupSkbLink::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::cgroup_skb::CgroupSkbLink where U: core::convert::TryFrom +pub type aya::programs::cgroup_skb::CgroupSkbLink::Error = >::Error +pub fn aya::programs::cgroup_skb::CgroupSkbLink::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::cgroup_skb::CgroupSkbLink where T: 'static + core::marker::Sized +pub fn aya::programs::cgroup_skb::CgroupSkbLink::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::cgroup_skb::CgroupSkbLink where T: core::marker::Sized +pub fn aya::programs::cgroup_skb::CgroupSkbLink::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::cgroup_skb::CgroupSkbLink where T: core::marker::Sized +pub fn aya::programs::cgroup_skb::CgroupSkbLink::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::cgroup_skb::CgroupSkbLink +pub fn aya::programs::cgroup_skb::CgroupSkbLink::from(t: T) -> T +pub struct aya::programs::cgroup_skb::CgroupSkbLinkId(_) +impl core::cmp::Eq for aya::programs::cgroup_skb::CgroupSkbLinkId +impl core::cmp::PartialEq for aya::programs::cgroup_skb::CgroupSkbLinkId +pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::eq(&self, other: &aya::programs::cgroup_skb::CgroupSkbLinkId) -> bool +impl core::fmt::Debug for aya::programs::cgroup_skb::CgroupSkbLinkId +pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::hash::Hash for aya::programs::cgroup_skb::CgroupSkbLinkId +pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H) +impl core::marker::StructuralEq for aya::programs::cgroup_skb::CgroupSkbLinkId +impl core::marker::StructuralPartialEq for aya::programs::cgroup_skb::CgroupSkbLinkId +impl core::marker::Send for aya::programs::cgroup_skb::CgroupSkbLinkId +impl core::marker::Sync for aya::programs::cgroup_skb::CgroupSkbLinkId +impl core::marker::Unpin for aya::programs::cgroup_skb::CgroupSkbLinkId +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_skb::CgroupSkbLinkId +impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_skb::CgroupSkbLinkId +impl core::convert::Into for aya::programs::cgroup_skb::CgroupSkbLinkId where U: core::convert::From +pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::into(self) -> U +impl core::convert::TryFrom for aya::programs::cgroup_skb::CgroupSkbLinkId where U: core::convert::Into +pub type aya::programs::cgroup_skb::CgroupSkbLinkId::Error = core::convert::Infallible +pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::cgroup_skb::CgroupSkbLinkId where U: core::convert::TryFrom +pub type aya::programs::cgroup_skb::CgroupSkbLinkId::Error = >::Error +pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::cgroup_skb::CgroupSkbLinkId where T: 'static + core::marker::Sized +pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::cgroup_skb::CgroupSkbLinkId where T: core::marker::Sized +pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::cgroup_skb::CgroupSkbLinkId where T: core::marker::Sized +pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::cgroup_skb::CgroupSkbLinkId +pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::from(t: T) -> T +pub mod aya::programs::cgroup_sock +pub use aya::programs::cgroup_sock::CgroupSockAttachType +pub struct aya::programs::cgroup_sock::CgroupSock +impl aya::programs::cgroup_sock::CgroupSock +pub fn aya::programs::cgroup_sock::CgroupSock::attach(&mut self, cgroup: T) -> core::result::Result +pub fn aya::programs::cgroup_sock::CgroupSock::detach(&mut self, link_id: aya::programs::cgroup_sock::CgroupSockLinkId) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::cgroup_sock::CgroupSock::from_pin>(path: P, attach_type: aya_obj::programs::cgroup_sock::CgroupSockAttachType) -> core::result::Result +pub fn aya::programs::cgroup_sock::CgroupSock::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::cgroup_sock::CgroupSock::take_link(&mut self, link_id: aya::programs::cgroup_sock::CgroupSockLinkId) -> core::result::Result +impl aya::programs::cgroup_sock::CgroupSock +pub fn aya::programs::cgroup_sock::CgroupSock::fd(&self) -> core::option::Option +impl aya::programs::cgroup_sock::CgroupSock +pub fn aya::programs::cgroup_sock::CgroupSock::pin>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError> +pub fn aya::programs::cgroup_sock::CgroupSock::unpin(self) -> core::result::Result<(), std::io::error::Error> +impl aya::programs::cgroup_sock::CgroupSock +pub fn aya::programs::cgroup_sock::CgroupSock::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +impl core::ops::drop::Drop for aya::programs::cgroup_sock::CgroupSock +pub fn aya::programs::cgroup_sock::CgroupSock::drop(&mut self) +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sock::CgroupSock +pub type &'a aya::programs::cgroup_sock::CgroupSock::Error = aya::programs::ProgramError +pub fn &'a aya::programs::cgroup_sock::CgroupSock::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sock::CgroupSock, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sock::CgroupSock +pub type &'a mut aya::programs::cgroup_sock::CgroupSock::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::cgroup_sock::CgroupSock::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sock::CgroupSock, aya::programs::ProgramError> +impl core::fmt::Debug for aya::programs::cgroup_sock::CgroupSock +pub fn aya::programs::cgroup_sock::CgroupSock::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::cgroup_sock::CgroupSock +impl core::marker::Sync for aya::programs::cgroup_sock::CgroupSock +impl core::marker::Unpin for aya::programs::cgroup_sock::CgroupSock +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock::CgroupSock +impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock::CgroupSock +impl core::convert::Into for aya::programs::cgroup_sock::CgroupSock where U: core::convert::From +pub fn aya::programs::cgroup_sock::CgroupSock::into(self) -> U +impl core::convert::TryFrom for aya::programs::cgroup_sock::CgroupSock where U: core::convert::Into +pub type aya::programs::cgroup_sock::CgroupSock::Error = core::convert::Infallible +pub fn aya::programs::cgroup_sock::CgroupSock::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::cgroup_sock::CgroupSock where U: core::convert::TryFrom +pub type aya::programs::cgroup_sock::CgroupSock::Error = >::Error +pub fn aya::programs::cgroup_sock::CgroupSock::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::cgroup_sock::CgroupSock where T: 'static + core::marker::Sized +pub fn aya::programs::cgroup_sock::CgroupSock::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::cgroup_sock::CgroupSock where T: core::marker::Sized +pub fn aya::programs::cgroup_sock::CgroupSock::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::cgroup_sock::CgroupSock where T: core::marker::Sized +pub fn aya::programs::cgroup_sock::CgroupSock::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::cgroup_sock::CgroupSock +pub fn aya::programs::cgroup_sock::CgroupSock::from(t: T) -> T +pub struct aya::programs::cgroup_sock::CgroupSockLink(_) +impl aya::programs::links::Link for aya::programs::cgroup_sock::CgroupSockLink +pub type aya::programs::cgroup_sock::CgroupSockLink::Id = aya::programs::cgroup_sock::CgroupSockLinkId +pub fn aya::programs::cgroup_sock::CgroupSockLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::cgroup_sock::CgroupSockLink::id(&self) -> Self::Id +impl core::ops::drop::Drop for aya::programs::cgroup_sock::CgroupSockLink +pub fn aya::programs::cgroup_sock::CgroupSockLink::drop(&mut self) +impl core::fmt::Debug for aya::programs::cgroup_sock::CgroupSockLink +pub fn aya::programs::cgroup_sock::CgroupSockLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::cgroup_sock::CgroupSockLink +impl core::marker::Sync for aya::programs::cgroup_sock::CgroupSockLink +impl core::marker::Unpin for aya::programs::cgroup_sock::CgroupSockLink +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock::CgroupSockLink +impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock::CgroupSockLink +impl core::convert::Into for aya::programs::cgroup_sock::CgroupSockLink where U: core::convert::From +pub fn aya::programs::cgroup_sock::CgroupSockLink::into(self) -> U +impl core::convert::TryFrom for aya::programs::cgroup_sock::CgroupSockLink where U: core::convert::Into +pub type aya::programs::cgroup_sock::CgroupSockLink::Error = core::convert::Infallible +pub fn aya::programs::cgroup_sock::CgroupSockLink::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::cgroup_sock::CgroupSockLink where U: core::convert::TryFrom +pub type aya::programs::cgroup_sock::CgroupSockLink::Error = >::Error +pub fn aya::programs::cgroup_sock::CgroupSockLink::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::cgroup_sock::CgroupSockLink where T: 'static + core::marker::Sized +pub fn aya::programs::cgroup_sock::CgroupSockLink::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::cgroup_sock::CgroupSockLink where T: core::marker::Sized +pub fn aya::programs::cgroup_sock::CgroupSockLink::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::cgroup_sock::CgroupSockLink where T: core::marker::Sized +pub fn aya::programs::cgroup_sock::CgroupSockLink::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::cgroup_sock::CgroupSockLink +pub fn aya::programs::cgroup_sock::CgroupSockLink::from(t: T) -> T +pub struct aya::programs::cgroup_sock::CgroupSockLinkId(_) +impl core::cmp::Eq for aya::programs::cgroup_sock::CgroupSockLinkId +impl core::cmp::PartialEq for aya::programs::cgroup_sock::CgroupSockLinkId +pub fn aya::programs::cgroup_sock::CgroupSockLinkId::eq(&self, other: &aya::programs::cgroup_sock::CgroupSockLinkId) -> bool +impl core::fmt::Debug for aya::programs::cgroup_sock::CgroupSockLinkId +pub fn aya::programs::cgroup_sock::CgroupSockLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::hash::Hash for aya::programs::cgroup_sock::CgroupSockLinkId +pub fn aya::programs::cgroup_sock::CgroupSockLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H) +impl core::marker::StructuralEq for aya::programs::cgroup_sock::CgroupSockLinkId +impl core::marker::StructuralPartialEq for aya::programs::cgroup_sock::CgroupSockLinkId +impl core::marker::Send for aya::programs::cgroup_sock::CgroupSockLinkId +impl core::marker::Sync for aya::programs::cgroup_sock::CgroupSockLinkId +impl core::marker::Unpin for aya::programs::cgroup_sock::CgroupSockLinkId +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock::CgroupSockLinkId +impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock::CgroupSockLinkId +impl core::convert::Into for aya::programs::cgroup_sock::CgroupSockLinkId where U: core::convert::From +pub fn aya::programs::cgroup_sock::CgroupSockLinkId::into(self) -> U +impl core::convert::TryFrom for aya::programs::cgroup_sock::CgroupSockLinkId where U: core::convert::Into +pub type aya::programs::cgroup_sock::CgroupSockLinkId::Error = core::convert::Infallible +pub fn aya::programs::cgroup_sock::CgroupSockLinkId::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::cgroup_sock::CgroupSockLinkId where U: core::convert::TryFrom +pub type aya::programs::cgroup_sock::CgroupSockLinkId::Error = >::Error +pub fn aya::programs::cgroup_sock::CgroupSockLinkId::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::cgroup_sock::CgroupSockLinkId where T: 'static + core::marker::Sized +pub fn aya::programs::cgroup_sock::CgroupSockLinkId::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::cgroup_sock::CgroupSockLinkId where T: core::marker::Sized +pub fn aya::programs::cgroup_sock::CgroupSockLinkId::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::cgroup_sock::CgroupSockLinkId where T: core::marker::Sized +pub fn aya::programs::cgroup_sock::CgroupSockLinkId::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::cgroup_sock::CgroupSockLinkId +pub fn aya::programs::cgroup_sock::CgroupSockLinkId::from(t: T) -> T +pub mod aya::programs::cgroup_sock_addr +pub use aya::programs::cgroup_sock_addr::CgroupSockAddrAttachType +pub struct aya::programs::cgroup_sock_addr::CgroupSockAddr +impl aya::programs::cgroup_sock_addr::CgroupSockAddr +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::attach(&mut self, cgroup: T) -> core::result::Result +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::detach(&mut self, link_id: aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::from_pin>(path: P, attach_type: aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType) -> core::result::Result +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::take_link(&mut self, link_id: aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId) -> core::result::Result +impl aya::programs::cgroup_sock_addr::CgroupSockAddr +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::fd(&self) -> core::option::Option +impl aya::programs::cgroup_sock_addr::CgroupSockAddr +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::pin>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError> +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::unpin(self) -> core::result::Result<(), std::io::error::Error> +impl aya::programs::cgroup_sock_addr::CgroupSockAddr +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +impl core::ops::drop::Drop for aya::programs::cgroup_sock_addr::CgroupSockAddr +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::drop(&mut self) +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sock_addr::CgroupSockAddr +pub type &'a aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = aya::programs::ProgramError +pub fn &'a aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sock_addr::CgroupSockAddr, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr +pub type &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr, aya::programs::ProgramError> +impl core::fmt::Debug for aya::programs::cgroup_sock_addr::CgroupSockAddr +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::cgroup_sock_addr::CgroupSockAddr +impl core::marker::Sync for aya::programs::cgroup_sock_addr::CgroupSockAddr +impl core::marker::Unpin for aya::programs::cgroup_sock_addr::CgroupSockAddr +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddr +impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddr +impl core::convert::Into for aya::programs::cgroup_sock_addr::CgroupSockAddr where U: core::convert::From +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::into(self) -> U +impl core::convert::TryFrom for aya::programs::cgroup_sock_addr::CgroupSockAddr where U: core::convert::Into +pub type aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = core::convert::Infallible +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::cgroup_sock_addr::CgroupSockAddr where U: core::convert::TryFrom +pub type aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = >::Error +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::cgroup_sock_addr::CgroupSockAddr where T: 'static + core::marker::Sized +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::cgroup_sock_addr::CgroupSockAddr where T: core::marker::Sized +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::cgroup_sock_addr::CgroupSockAddr where T: core::marker::Sized +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::cgroup_sock_addr::CgroupSockAddr +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::from(t: T) -> T +pub struct aya::programs::cgroup_sock_addr::CgroupSockAddrLink(_) +impl aya::programs::links::Link for aya::programs::cgroup_sock_addr::CgroupSockAddrLink +pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLink::Id = aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::id(&self) -> Self::Id +impl core::ops::drop::Drop for aya::programs::cgroup_sock_addr::CgroupSockAddrLink +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::drop(&mut self) +impl core::fmt::Debug for aya::programs::cgroup_sock_addr::CgroupSockAddrLink +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::cgroup_sock_addr::CgroupSockAddrLink +impl core::marker::Sync for aya::programs::cgroup_sock_addr::CgroupSockAddrLink +impl core::marker::Unpin for aya::programs::cgroup_sock_addr::CgroupSockAddrLink +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddrLink +impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddrLink +impl core::convert::Into for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where U: core::convert::From +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::into(self) -> U +impl core::convert::TryFrom for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where U: core::convert::Into +pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLink::Error = core::convert::Infallible +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where U: core::convert::TryFrom +pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLink::Error = >::Error +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where T: 'static + core::marker::Sized +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where T: core::marker::Sized +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where T: core::marker::Sized +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::cgroup_sock_addr::CgroupSockAddrLink +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::from(t: T) -> T +pub struct aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId(_) +impl core::cmp::Eq for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId +impl core::cmp::PartialEq for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::eq(&self, other: &aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId) -> bool +impl core::fmt::Debug for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::hash::Hash for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H) +impl core::marker::StructuralEq for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId +impl core::marker::StructuralPartialEq for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId +impl core::marker::Send for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId +impl core::marker::Sync for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId +impl core::marker::Unpin for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId +impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId +impl core::convert::Into for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where U: core::convert::From +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::into(self) -> U +impl core::convert::TryFrom for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where U: core::convert::Into +pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::Error = core::convert::Infallible +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where U: core::convert::TryFrom +pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::Error = >::Error +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where T: 'static + core::marker::Sized +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where T: core::marker::Sized +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where T: core::marker::Sized +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::from(t: T) -> T +pub mod aya::programs::cgroup_sockopt +pub use aya::programs::cgroup_sockopt::CgroupSockoptAttachType +pub struct aya::programs::cgroup_sockopt::CgroupSockopt +impl aya::programs::cgroup_sockopt::CgroupSockopt +pub fn aya::programs::cgroup_sockopt::CgroupSockopt::attach(&mut self, cgroup: T) -> core::result::Result +pub fn aya::programs::cgroup_sockopt::CgroupSockopt::detach(&mut self, link_id: aya::programs::cgroup_sockopt::CgroupSockoptLinkId) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::cgroup_sockopt::CgroupSockopt::from_pin>(path: P, attach_type: aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType) -> core::result::Result +pub fn aya::programs::cgroup_sockopt::CgroupSockopt::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::cgroup_sockopt::CgroupSockopt::take_link(&mut self, link_id: aya::programs::cgroup_sockopt::CgroupSockoptLinkId) -> core::result::Result +impl aya::programs::cgroup_sockopt::CgroupSockopt +pub fn aya::programs::cgroup_sockopt::CgroupSockopt::fd(&self) -> core::option::Option +impl aya::programs::cgroup_sockopt::CgroupSockopt +pub fn aya::programs::cgroup_sockopt::CgroupSockopt::pin>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError> +pub fn aya::programs::cgroup_sockopt::CgroupSockopt::unpin(self) -> core::result::Result<(), std::io::error::Error> +impl aya::programs::cgroup_sockopt::CgroupSockopt +pub fn aya::programs::cgroup_sockopt::CgroupSockopt::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +impl core::ops::drop::Drop for aya::programs::cgroup_sockopt::CgroupSockopt +pub fn aya::programs::cgroup_sockopt::CgroupSockopt::drop(&mut self) +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sockopt::CgroupSockopt +pub type &'a aya::programs::cgroup_sockopt::CgroupSockopt::Error = aya::programs::ProgramError +pub fn &'a aya::programs::cgroup_sockopt::CgroupSockopt::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sockopt::CgroupSockopt, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sockopt::CgroupSockopt +pub type &'a mut aya::programs::cgroup_sockopt::CgroupSockopt::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::cgroup_sockopt::CgroupSockopt::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sockopt::CgroupSockopt, aya::programs::ProgramError> +impl core::fmt::Debug for aya::programs::cgroup_sockopt::CgroupSockopt +pub fn aya::programs::cgroup_sockopt::CgroupSockopt::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::cgroup_sockopt::CgroupSockopt +impl core::marker::Sync for aya::programs::cgroup_sockopt::CgroupSockopt +impl core::marker::Unpin for aya::programs::cgroup_sockopt::CgroupSockopt +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sockopt::CgroupSockopt +impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sockopt::CgroupSockopt +impl core::convert::Into for aya::programs::cgroup_sockopt::CgroupSockopt where U: core::convert::From +pub fn aya::programs::cgroup_sockopt::CgroupSockopt::into(self) -> U +impl core::convert::TryFrom for aya::programs::cgroup_sockopt::CgroupSockopt where U: core::convert::Into +pub type aya::programs::cgroup_sockopt::CgroupSockopt::Error = core::convert::Infallible +pub fn aya::programs::cgroup_sockopt::CgroupSockopt::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::cgroup_sockopt::CgroupSockopt where U: core::convert::TryFrom +pub type aya::programs::cgroup_sockopt::CgroupSockopt::Error = >::Error +pub fn aya::programs::cgroup_sockopt::CgroupSockopt::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::cgroup_sockopt::CgroupSockopt where T: 'static + core::marker::Sized +pub fn aya::programs::cgroup_sockopt::CgroupSockopt::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::cgroup_sockopt::CgroupSockopt where T: core::marker::Sized +pub fn aya::programs::cgroup_sockopt::CgroupSockopt::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::cgroup_sockopt::CgroupSockopt where T: core::marker::Sized +pub fn aya::programs::cgroup_sockopt::CgroupSockopt::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::cgroup_sockopt::CgroupSockopt +pub fn aya::programs::cgroup_sockopt::CgroupSockopt::from(t: T) -> T +pub struct aya::programs::cgroup_sockopt::CgroupSockoptLink(_) +impl aya::programs::links::Link for aya::programs::cgroup_sockopt::CgroupSockoptLink +pub type aya::programs::cgroup_sockopt::CgroupSockoptLink::Id = aya::programs::cgroup_sockopt::CgroupSockoptLinkId +pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::id(&self) -> Self::Id +impl core::ops::drop::Drop for aya::programs::cgroup_sockopt::CgroupSockoptLink +pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::drop(&mut self) +impl core::fmt::Debug for aya::programs::cgroup_sockopt::CgroupSockoptLink +pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::cgroup_sockopt::CgroupSockoptLink +impl core::marker::Sync for aya::programs::cgroup_sockopt::CgroupSockoptLink +impl core::marker::Unpin for aya::programs::cgroup_sockopt::CgroupSockoptLink +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sockopt::CgroupSockoptLink +impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sockopt::CgroupSockoptLink +impl core::convert::Into for aya::programs::cgroup_sockopt::CgroupSockoptLink where U: core::convert::From +pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::into(self) -> U +impl core::convert::TryFrom for aya::programs::cgroup_sockopt::CgroupSockoptLink where U: core::convert::Into +pub type aya::programs::cgroup_sockopt::CgroupSockoptLink::Error = core::convert::Infallible +pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::cgroup_sockopt::CgroupSockoptLink where U: core::convert::TryFrom +pub type aya::programs::cgroup_sockopt::CgroupSockoptLink::Error = >::Error +pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::cgroup_sockopt::CgroupSockoptLink where T: 'static + core::marker::Sized +pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::cgroup_sockopt::CgroupSockoptLink where T: core::marker::Sized +pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::cgroup_sockopt::CgroupSockoptLink where T: core::marker::Sized +pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::cgroup_sockopt::CgroupSockoptLink +pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::from(t: T) -> T +pub struct aya::programs::cgroup_sockopt::CgroupSockoptLinkId(_) +impl core::cmp::Eq for aya::programs::cgroup_sockopt::CgroupSockoptLinkId +impl core::cmp::PartialEq for aya::programs::cgroup_sockopt::CgroupSockoptLinkId +pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::eq(&self, other: &aya::programs::cgroup_sockopt::CgroupSockoptLinkId) -> bool +impl core::fmt::Debug for aya::programs::cgroup_sockopt::CgroupSockoptLinkId +pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::hash::Hash for aya::programs::cgroup_sockopt::CgroupSockoptLinkId +pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H) +impl core::marker::StructuralEq for aya::programs::cgroup_sockopt::CgroupSockoptLinkId +impl core::marker::StructuralPartialEq for aya::programs::cgroup_sockopt::CgroupSockoptLinkId +impl core::marker::Send for aya::programs::cgroup_sockopt::CgroupSockoptLinkId +impl core::marker::Sync for aya::programs::cgroup_sockopt::CgroupSockoptLinkId +impl core::marker::Unpin for aya::programs::cgroup_sockopt::CgroupSockoptLinkId +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sockopt::CgroupSockoptLinkId +impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sockopt::CgroupSockoptLinkId +impl core::convert::Into for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where U: core::convert::From +pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::into(self) -> U +impl core::convert::TryFrom for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where U: core::convert::Into +pub type aya::programs::cgroup_sockopt::CgroupSockoptLinkId::Error = core::convert::Infallible +pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where U: core::convert::TryFrom +pub type aya::programs::cgroup_sockopt::CgroupSockoptLinkId::Error = >::Error +pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where T: 'static + core::marker::Sized +pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where T: core::marker::Sized +pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where T: core::marker::Sized +pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::cgroup_sockopt::CgroupSockoptLinkId +pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::from(t: T) -> T +pub mod aya::programs::cgroup_sysctl +pub struct aya::programs::cgroup_sysctl::CgroupSysctl +impl aya::programs::cgroup_sysctl::CgroupSysctl +pub fn aya::programs::cgroup_sysctl::CgroupSysctl::attach(&mut self, cgroup: T) -> core::result::Result +pub fn aya::programs::cgroup_sysctl::CgroupSysctl::detach(&mut self, link_id: aya::programs::cgroup_sysctl::CgroupSysctlLinkId) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::cgroup_sysctl::CgroupSysctl::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::cgroup_sysctl::CgroupSysctl::take_link(&mut self, link_id: aya::programs::cgroup_sysctl::CgroupSysctlLinkId) -> core::result::Result +impl aya::programs::cgroup_sysctl::CgroupSysctl +pub fn aya::programs::cgroup_sysctl::CgroupSysctl::fd(&self) -> core::option::Option +impl aya::programs::cgroup_sysctl::CgroupSysctl +pub fn aya::programs::cgroup_sysctl::CgroupSysctl::from_pin>(path: P) -> core::result::Result +impl aya::programs::cgroup_sysctl::CgroupSysctl +pub fn aya::programs::cgroup_sysctl::CgroupSysctl::pin>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError> +pub fn aya::programs::cgroup_sysctl::CgroupSysctl::unpin(self) -> core::result::Result<(), std::io::error::Error> +impl aya::programs::cgroup_sysctl::CgroupSysctl +pub fn aya::programs::cgroup_sysctl::CgroupSysctl::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +impl core::ops::drop::Drop for aya::programs::cgroup_sysctl::CgroupSysctl +pub fn aya::programs::cgroup_sysctl::CgroupSysctl::drop(&mut self) +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sysctl::CgroupSysctl +pub type &'a aya::programs::cgroup_sysctl::CgroupSysctl::Error = aya::programs::ProgramError +pub fn &'a aya::programs::cgroup_sysctl::CgroupSysctl::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sysctl::CgroupSysctl, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sysctl::CgroupSysctl +pub type &'a mut aya::programs::cgroup_sysctl::CgroupSysctl::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::cgroup_sysctl::CgroupSysctl::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sysctl::CgroupSysctl, aya::programs::ProgramError> +impl core::fmt::Debug for aya::programs::cgroup_sysctl::CgroupSysctl +pub fn aya::programs::cgroup_sysctl::CgroupSysctl::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::cgroup_sysctl::CgroupSysctl +impl core::marker::Sync for aya::programs::cgroup_sysctl::CgroupSysctl +impl core::marker::Unpin for aya::programs::cgroup_sysctl::CgroupSysctl +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctl +impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctl +impl core::convert::Into for aya::programs::cgroup_sysctl::CgroupSysctl where U: core::convert::From +pub fn aya::programs::cgroup_sysctl::CgroupSysctl::into(self) -> U +impl core::convert::TryFrom for aya::programs::cgroup_sysctl::CgroupSysctl where U: core::convert::Into +pub type aya::programs::cgroup_sysctl::CgroupSysctl::Error = core::convert::Infallible +pub fn aya::programs::cgroup_sysctl::CgroupSysctl::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::cgroup_sysctl::CgroupSysctl where U: core::convert::TryFrom +pub type aya::programs::cgroup_sysctl::CgroupSysctl::Error = >::Error +pub fn aya::programs::cgroup_sysctl::CgroupSysctl::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::cgroup_sysctl::CgroupSysctl where T: 'static + core::marker::Sized +pub fn aya::programs::cgroup_sysctl::CgroupSysctl::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::cgroup_sysctl::CgroupSysctl where T: core::marker::Sized +pub fn aya::programs::cgroup_sysctl::CgroupSysctl::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::cgroup_sysctl::CgroupSysctl where T: core::marker::Sized +pub fn aya::programs::cgroup_sysctl::CgroupSysctl::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::cgroup_sysctl::CgroupSysctl +pub fn aya::programs::cgroup_sysctl::CgroupSysctl::from(t: T) -> T +pub struct aya::programs::cgroup_sysctl::CgroupSysctlLink(_) +impl aya::programs::links::Link for aya::programs::cgroup_sysctl::CgroupSysctlLink +pub type aya::programs::cgroup_sysctl::CgroupSysctlLink::Id = aya::programs::cgroup_sysctl::CgroupSysctlLinkId +pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::id(&self) -> Self::Id +impl core::ops::drop::Drop for aya::programs::cgroup_sysctl::CgroupSysctlLink +pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::drop(&mut self) +impl core::fmt::Debug for aya::programs::cgroup_sysctl::CgroupSysctlLink +pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::cgroup_sysctl::CgroupSysctlLink +impl core::marker::Sync for aya::programs::cgroup_sysctl::CgroupSysctlLink +impl core::marker::Unpin for aya::programs::cgroup_sysctl::CgroupSysctlLink +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctlLink +impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctlLink +impl core::convert::Into for aya::programs::cgroup_sysctl::CgroupSysctlLink where U: core::convert::From +pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::into(self) -> U +impl core::convert::TryFrom for aya::programs::cgroup_sysctl::CgroupSysctlLink where U: core::convert::Into +pub type aya::programs::cgroup_sysctl::CgroupSysctlLink::Error = core::convert::Infallible +pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::cgroup_sysctl::CgroupSysctlLink where U: core::convert::TryFrom +pub type aya::programs::cgroup_sysctl::CgroupSysctlLink::Error = >::Error +pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::cgroup_sysctl::CgroupSysctlLink where T: 'static + core::marker::Sized +pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::cgroup_sysctl::CgroupSysctlLink where T: core::marker::Sized +pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::cgroup_sysctl::CgroupSysctlLink where T: core::marker::Sized +pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::cgroup_sysctl::CgroupSysctlLink +pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::from(t: T) -> T +pub struct aya::programs::cgroup_sysctl::CgroupSysctlLinkId(_) +impl core::cmp::Eq for aya::programs::cgroup_sysctl::CgroupSysctlLinkId +impl core::cmp::PartialEq for aya::programs::cgroup_sysctl::CgroupSysctlLinkId +pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::eq(&self, other: &aya::programs::cgroup_sysctl::CgroupSysctlLinkId) -> bool +impl core::fmt::Debug for aya::programs::cgroup_sysctl::CgroupSysctlLinkId +pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::hash::Hash for aya::programs::cgroup_sysctl::CgroupSysctlLinkId +pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H) +impl core::marker::StructuralEq for aya::programs::cgroup_sysctl::CgroupSysctlLinkId +impl core::marker::StructuralPartialEq for aya::programs::cgroup_sysctl::CgroupSysctlLinkId +impl core::marker::Send for aya::programs::cgroup_sysctl::CgroupSysctlLinkId +impl core::marker::Sync for aya::programs::cgroup_sysctl::CgroupSysctlLinkId +impl core::marker::Unpin for aya::programs::cgroup_sysctl::CgroupSysctlLinkId +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctlLinkId +impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctlLinkId +impl core::convert::Into for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where U: core::convert::From +pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::into(self) -> U +impl core::convert::TryFrom for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where U: core::convert::Into +pub type aya::programs::cgroup_sysctl::CgroupSysctlLinkId::Error = core::convert::Infallible +pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where U: core::convert::TryFrom +pub type aya::programs::cgroup_sysctl::CgroupSysctlLinkId::Error = >::Error +pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where T: 'static + core::marker::Sized +pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where T: core::marker::Sized +pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where T: core::marker::Sized +pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::cgroup_sysctl::CgroupSysctlLinkId +pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::from(t: T) -> T +pub mod aya::programs::extension +pub enum aya::programs::extension::ExtensionError +pub aya::programs::extension::ExtensionError::NoBTF +impl core::convert::From for aya::programs::ProgramError +pub fn aya::programs::ProgramError::from(source: aya::programs::extension::ExtensionError) -> Self +impl core::error::Error for aya::programs::extension::ExtensionError +impl core::fmt::Display for aya::programs::extension::ExtensionError +pub fn aya::programs::extension::ExtensionError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::fmt::Debug for aya::programs::extension::ExtensionError +pub fn aya::programs::extension::ExtensionError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::extension::ExtensionError +impl core::marker::Sync for aya::programs::extension::ExtensionError +impl core::marker::Unpin for aya::programs::extension::ExtensionError +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::extension::ExtensionError +impl core::panic::unwind_safe::UnwindSafe for aya::programs::extension::ExtensionError +impl core::any::Provider for aya::programs::extension::ExtensionError where E: core::error::Error + core::marker::Sized +pub fn aya::programs::extension::ExtensionError::provide<'a>(&'a self, demand: &mut core::any::Demand<'a>) +impl core::convert::Into for aya::programs::extension::ExtensionError where U: core::convert::From +pub fn aya::programs::extension::ExtensionError::into(self) -> U +impl core::convert::TryFrom for aya::programs::extension::ExtensionError where U: core::convert::Into +pub type aya::programs::extension::ExtensionError::Error = core::convert::Infallible +pub fn aya::programs::extension::ExtensionError::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::extension::ExtensionError where U: core::convert::TryFrom +pub type aya::programs::extension::ExtensionError::Error = >::Error +pub fn aya::programs::extension::ExtensionError::try_into(self) -> core::result::Result>::Error> +impl alloc::string::ToString for aya::programs::extension::ExtensionError where T: core::fmt::Display + core::marker::Sized +pub fn aya::programs::extension::ExtensionError::to_string(&self) -> alloc::string::String +impl core::any::Any for aya::programs::extension::ExtensionError where T: 'static + core::marker::Sized +pub fn aya::programs::extension::ExtensionError::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::extension::ExtensionError where T: core::marker::Sized +pub fn aya::programs::extension::ExtensionError::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::extension::ExtensionError where T: core::marker::Sized +pub fn aya::programs::extension::ExtensionError::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::extension::ExtensionError +pub fn aya::programs::extension::ExtensionError::from(t: T) -> T +pub struct aya::programs::extension::Extension +impl aya::programs::extension::Extension +pub fn aya::programs::extension::Extension::attach(&mut self) -> core::result::Result +pub fn aya::programs::extension::Extension::attach_to_program(&mut self, program: aya::programs::ProgramFd, func_name: &str) -> core::result::Result +pub fn aya::programs::extension::Extension::detach(&mut self, link_id: aya::programs::extension::ExtensionLinkId) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::extension::Extension::load(&mut self, program: aya::programs::ProgramFd, func_name: &str) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::extension::Extension::take_link(&mut self, link_id: aya::programs::extension::ExtensionLinkId) -> core::result::Result +impl aya::programs::extension::Extension +pub fn aya::programs::extension::Extension::fd(&self) -> core::option::Option +impl aya::programs::extension::Extension +pub fn aya::programs::extension::Extension::from_pin>(path: P) -> core::result::Result +impl aya::programs::extension::Extension +pub fn aya::programs::extension::Extension::pin>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError> +pub fn aya::programs::extension::Extension::unpin(self) -> core::result::Result<(), std::io::error::Error> +impl aya::programs::extension::Extension +pub fn aya::programs::extension::Extension::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +impl core::ops::drop::Drop for aya::programs::extension::Extension +pub fn aya::programs::extension::Extension::drop(&mut self) +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::extension::Extension +pub type &'a aya::programs::extension::Extension::Error = aya::programs::ProgramError +pub fn &'a aya::programs::extension::Extension::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::extension::Extension, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::extension::Extension +pub type &'a mut aya::programs::extension::Extension::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::extension::Extension::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::extension::Extension, aya::programs::ProgramError> +impl core::fmt::Debug for aya::programs::extension::Extension +pub fn aya::programs::extension::Extension::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::extension::Extension +impl core::marker::Sync for aya::programs::extension::Extension +impl core::marker::Unpin for aya::programs::extension::Extension +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::extension::Extension +impl core::panic::unwind_safe::UnwindSafe for aya::programs::extension::Extension +impl core::convert::Into for aya::programs::extension::Extension where U: core::convert::From +pub fn aya::programs::extension::Extension::into(self) -> U +impl core::convert::TryFrom for aya::programs::extension::Extension where U: core::convert::Into +pub type aya::programs::extension::Extension::Error = core::convert::Infallible +pub fn aya::programs::extension::Extension::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::extension::Extension where U: core::convert::TryFrom +pub type aya::programs::extension::Extension::Error = >::Error +pub fn aya::programs::extension::Extension::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::extension::Extension where T: 'static + core::marker::Sized +pub fn aya::programs::extension::Extension::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::extension::Extension where T: core::marker::Sized +pub fn aya::programs::extension::Extension::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::extension::Extension where T: core::marker::Sized +pub fn aya::programs::extension::Extension::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::extension::Extension +pub fn aya::programs::extension::Extension::from(t: T) -> T +pub struct aya::programs::extension::ExtensionLink(_) +impl aya::programs::links::Link for aya::programs::extension::ExtensionLink +pub type aya::programs::extension::ExtensionLink::Id = aya::programs::extension::ExtensionLinkId +pub fn aya::programs::extension::ExtensionLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::extension::ExtensionLink::id(&self) -> Self::Id +impl core::convert::From for aya::programs::links::FdLink +pub fn aya::programs::links::FdLink::from(w: aya::programs::extension::ExtensionLink) -> aya::programs::links::FdLink +impl core::convert::From for aya::programs::extension::ExtensionLink +pub fn aya::programs::extension::ExtensionLink::from(b: aya::programs::links::FdLink) -> aya::programs::extension::ExtensionLink +impl core::ops::drop::Drop for aya::programs::extension::ExtensionLink +pub fn aya::programs::extension::ExtensionLink::drop(&mut self) +impl core::fmt::Debug for aya::programs::extension::ExtensionLink +pub fn aya::programs::extension::ExtensionLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::extension::ExtensionLink +impl core::marker::Sync for aya::programs::extension::ExtensionLink +impl core::marker::Unpin for aya::programs::extension::ExtensionLink +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::extension::ExtensionLink +impl core::panic::unwind_safe::UnwindSafe for aya::programs::extension::ExtensionLink +impl core::convert::Into for aya::programs::extension::ExtensionLink where U: core::convert::From +pub fn aya::programs::extension::ExtensionLink::into(self) -> U +impl core::convert::TryFrom for aya::programs::extension::ExtensionLink where U: core::convert::Into +pub type aya::programs::extension::ExtensionLink::Error = core::convert::Infallible +pub fn aya::programs::extension::ExtensionLink::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::extension::ExtensionLink where U: core::convert::TryFrom +pub type aya::programs::extension::ExtensionLink::Error = >::Error +pub fn aya::programs::extension::ExtensionLink::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::extension::ExtensionLink where T: 'static + core::marker::Sized +pub fn aya::programs::extension::ExtensionLink::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::extension::ExtensionLink where T: core::marker::Sized +pub fn aya::programs::extension::ExtensionLink::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::extension::ExtensionLink where T: core::marker::Sized +pub fn aya::programs::extension::ExtensionLink::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::extension::ExtensionLink +pub fn aya::programs::extension::ExtensionLink::from(t: T) -> T +pub struct aya::programs::extension::ExtensionLinkId(_) +impl core::cmp::Eq for aya::programs::extension::ExtensionLinkId +impl core::cmp::PartialEq for aya::programs::extension::ExtensionLinkId +pub fn aya::programs::extension::ExtensionLinkId::eq(&self, other: &aya::programs::extension::ExtensionLinkId) -> bool +impl core::fmt::Debug for aya::programs::extension::ExtensionLinkId +pub fn aya::programs::extension::ExtensionLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::hash::Hash for aya::programs::extension::ExtensionLinkId +pub fn aya::programs::extension::ExtensionLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H) +impl core::marker::StructuralEq for aya::programs::extension::ExtensionLinkId +impl core::marker::StructuralPartialEq for aya::programs::extension::ExtensionLinkId +impl core::marker::Send for aya::programs::extension::ExtensionLinkId +impl core::marker::Sync for aya::programs::extension::ExtensionLinkId +impl core::marker::Unpin for aya::programs::extension::ExtensionLinkId +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::extension::ExtensionLinkId +impl core::panic::unwind_safe::UnwindSafe for aya::programs::extension::ExtensionLinkId +impl core::convert::Into for aya::programs::extension::ExtensionLinkId where U: core::convert::From +pub fn aya::programs::extension::ExtensionLinkId::into(self) -> U +impl core::convert::TryFrom for aya::programs::extension::ExtensionLinkId where U: core::convert::Into +pub type aya::programs::extension::ExtensionLinkId::Error = core::convert::Infallible +pub fn aya::programs::extension::ExtensionLinkId::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::extension::ExtensionLinkId where U: core::convert::TryFrom +pub type aya::programs::extension::ExtensionLinkId::Error = >::Error +pub fn aya::programs::extension::ExtensionLinkId::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::extension::ExtensionLinkId where T: 'static + core::marker::Sized +pub fn aya::programs::extension::ExtensionLinkId::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::extension::ExtensionLinkId where T: core::marker::Sized +pub fn aya::programs::extension::ExtensionLinkId::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::extension::ExtensionLinkId where T: core::marker::Sized +pub fn aya::programs::extension::ExtensionLinkId::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::extension::ExtensionLinkId +pub fn aya::programs::extension::ExtensionLinkId::from(t: T) -> T +pub mod aya::programs::fentry +pub struct aya::programs::fentry::FEntry +impl aya::programs::fentry::FEntry +pub fn aya::programs::fentry::FEntry::attach(&mut self) -> core::result::Result +pub fn aya::programs::fentry::FEntry::detach(&mut self, link_id: aya::programs::fentry::FEntryLinkId) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::fentry::FEntry::load(&mut self, fn_name: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::fentry::FEntry::take_link(&mut self, link_id: aya::programs::fentry::FEntryLinkId) -> core::result::Result +impl aya::programs::fentry::FEntry +pub fn aya::programs::fentry::FEntry::fd(&self) -> core::option::Option +impl aya::programs::fentry::FEntry +pub fn aya::programs::fentry::FEntry::from_pin>(path: P) -> core::result::Result +impl aya::programs::fentry::FEntry +pub fn aya::programs::fentry::FEntry::pin>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError> +pub fn aya::programs::fentry::FEntry::unpin(self) -> core::result::Result<(), std::io::error::Error> +impl aya::programs::fentry::FEntry +pub fn aya::programs::fentry::FEntry::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +impl core::ops::drop::Drop for aya::programs::fentry::FEntry +pub fn aya::programs::fentry::FEntry::drop(&mut self) +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::fentry::FEntry +pub type &'a aya::programs::fentry::FEntry::Error = aya::programs::ProgramError +pub fn &'a aya::programs::fentry::FEntry::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::fentry::FEntry, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::fentry::FEntry +pub type &'a mut aya::programs::fentry::FEntry::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::fentry::FEntry::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::fentry::FEntry, aya::programs::ProgramError> +impl core::fmt::Debug for aya::programs::fentry::FEntry +pub fn aya::programs::fentry::FEntry::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::fentry::FEntry +impl core::marker::Sync for aya::programs::fentry::FEntry +impl core::marker::Unpin for aya::programs::fentry::FEntry +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fentry::FEntry +impl core::panic::unwind_safe::UnwindSafe for aya::programs::fentry::FEntry +impl core::convert::Into for aya::programs::fentry::FEntry where U: core::convert::From +pub fn aya::programs::fentry::FEntry::into(self) -> U +impl core::convert::TryFrom for aya::programs::fentry::FEntry where U: core::convert::Into +pub type aya::programs::fentry::FEntry::Error = core::convert::Infallible +pub fn aya::programs::fentry::FEntry::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::fentry::FEntry where U: core::convert::TryFrom +pub type aya::programs::fentry::FEntry::Error = >::Error +pub fn aya::programs::fentry::FEntry::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::fentry::FEntry where T: 'static + core::marker::Sized +pub fn aya::programs::fentry::FEntry::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::fentry::FEntry where T: core::marker::Sized +pub fn aya::programs::fentry::FEntry::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::fentry::FEntry where T: core::marker::Sized +pub fn aya::programs::fentry::FEntry::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::fentry::FEntry +pub fn aya::programs::fentry::FEntry::from(t: T) -> T +pub struct aya::programs::fentry::FEntryLink(_) +impl aya::programs::links::Link for aya::programs::fentry::FEntryLink +pub type aya::programs::fentry::FEntryLink::Id = aya::programs::fentry::FEntryLinkId +pub fn aya::programs::fentry::FEntryLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::fentry::FEntryLink::id(&self) -> Self::Id +impl core::convert::From for aya::programs::links::FdLink +pub fn aya::programs::links::FdLink::from(w: aya::programs::fentry::FEntryLink) -> aya::programs::links::FdLink +impl core::convert::From for aya::programs::fentry::FEntryLink +pub fn aya::programs::fentry::FEntryLink::from(b: aya::programs::links::FdLink) -> aya::programs::fentry::FEntryLink +impl core::ops::drop::Drop for aya::programs::fentry::FEntryLink +pub fn aya::programs::fentry::FEntryLink::drop(&mut self) +impl core::fmt::Debug for aya::programs::fentry::FEntryLink +pub fn aya::programs::fentry::FEntryLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::fentry::FEntryLink +impl core::marker::Sync for aya::programs::fentry::FEntryLink +impl core::marker::Unpin for aya::programs::fentry::FEntryLink +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fentry::FEntryLink +impl core::panic::unwind_safe::UnwindSafe for aya::programs::fentry::FEntryLink +impl core::convert::Into for aya::programs::fentry::FEntryLink where U: core::convert::From +pub fn aya::programs::fentry::FEntryLink::into(self) -> U +impl core::convert::TryFrom for aya::programs::fentry::FEntryLink where U: core::convert::Into +pub type aya::programs::fentry::FEntryLink::Error = core::convert::Infallible +pub fn aya::programs::fentry::FEntryLink::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::fentry::FEntryLink where U: core::convert::TryFrom +pub type aya::programs::fentry::FEntryLink::Error = >::Error +pub fn aya::programs::fentry::FEntryLink::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::fentry::FEntryLink where T: 'static + core::marker::Sized +pub fn aya::programs::fentry::FEntryLink::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::fentry::FEntryLink where T: core::marker::Sized +pub fn aya::programs::fentry::FEntryLink::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::fentry::FEntryLink where T: core::marker::Sized +pub fn aya::programs::fentry::FEntryLink::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::fentry::FEntryLink +pub fn aya::programs::fentry::FEntryLink::from(t: T) -> T +pub struct aya::programs::fentry::FEntryLinkId(_) +impl core::cmp::Eq for aya::programs::fentry::FEntryLinkId +impl core::cmp::PartialEq for aya::programs::fentry::FEntryLinkId +pub fn aya::programs::fentry::FEntryLinkId::eq(&self, other: &aya::programs::fentry::FEntryLinkId) -> bool +impl core::fmt::Debug for aya::programs::fentry::FEntryLinkId +pub fn aya::programs::fentry::FEntryLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::hash::Hash for aya::programs::fentry::FEntryLinkId +pub fn aya::programs::fentry::FEntryLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H) +impl core::marker::StructuralEq for aya::programs::fentry::FEntryLinkId +impl core::marker::StructuralPartialEq for aya::programs::fentry::FEntryLinkId +impl core::marker::Send for aya::programs::fentry::FEntryLinkId +impl core::marker::Sync for aya::programs::fentry::FEntryLinkId +impl core::marker::Unpin for aya::programs::fentry::FEntryLinkId +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fentry::FEntryLinkId +impl core::panic::unwind_safe::UnwindSafe for aya::programs::fentry::FEntryLinkId +impl core::convert::Into for aya::programs::fentry::FEntryLinkId where U: core::convert::From +pub fn aya::programs::fentry::FEntryLinkId::into(self) -> U +impl core::convert::TryFrom for aya::programs::fentry::FEntryLinkId where U: core::convert::Into +pub type aya::programs::fentry::FEntryLinkId::Error = core::convert::Infallible +pub fn aya::programs::fentry::FEntryLinkId::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::fentry::FEntryLinkId where U: core::convert::TryFrom +pub type aya::programs::fentry::FEntryLinkId::Error = >::Error +pub fn aya::programs::fentry::FEntryLinkId::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::fentry::FEntryLinkId where T: 'static + core::marker::Sized +pub fn aya::programs::fentry::FEntryLinkId::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::fentry::FEntryLinkId where T: core::marker::Sized +pub fn aya::programs::fentry::FEntryLinkId::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::fentry::FEntryLinkId where T: core::marker::Sized +pub fn aya::programs::fentry::FEntryLinkId::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::fentry::FEntryLinkId +pub fn aya::programs::fentry::FEntryLinkId::from(t: T) -> T +pub mod aya::programs::fexit +pub struct aya::programs::fexit::FExit +impl aya::programs::fexit::FExit +pub fn aya::programs::fexit::FExit::attach(&mut self) -> core::result::Result +pub fn aya::programs::fexit::FExit::detach(&mut self, link_id: aya::programs::fexit::FExitLinkId) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::fexit::FExit::load(&mut self, fn_name: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::fexit::FExit::take_link(&mut self, link_id: aya::programs::fexit::FExitLinkId) -> core::result::Result +impl aya::programs::fexit::FExit +pub fn aya::programs::fexit::FExit::fd(&self) -> core::option::Option +impl aya::programs::fexit::FExit +pub fn aya::programs::fexit::FExit::from_pin>(path: P) -> core::result::Result +impl aya::programs::fexit::FExit +pub fn aya::programs::fexit::FExit::pin>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError> +pub fn aya::programs::fexit::FExit::unpin(self) -> core::result::Result<(), std::io::error::Error> +impl aya::programs::fexit::FExit +pub fn aya::programs::fexit::FExit::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +impl core::ops::drop::Drop for aya::programs::fexit::FExit +pub fn aya::programs::fexit::FExit::drop(&mut self) +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::fexit::FExit +pub type &'a aya::programs::fexit::FExit::Error = aya::programs::ProgramError +pub fn &'a aya::programs::fexit::FExit::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::fexit::FExit, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::fexit::FExit +pub type &'a mut aya::programs::fexit::FExit::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::fexit::FExit::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::fexit::FExit, aya::programs::ProgramError> +impl core::fmt::Debug for aya::programs::fexit::FExit +pub fn aya::programs::fexit::FExit::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::fexit::FExit +impl core::marker::Sync for aya::programs::fexit::FExit +impl core::marker::Unpin for aya::programs::fexit::FExit +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fexit::FExit +impl core::panic::unwind_safe::UnwindSafe for aya::programs::fexit::FExit +impl core::convert::Into for aya::programs::fexit::FExit where U: core::convert::From +pub fn aya::programs::fexit::FExit::into(self) -> U +impl core::convert::TryFrom for aya::programs::fexit::FExit where U: core::convert::Into +pub type aya::programs::fexit::FExit::Error = core::convert::Infallible +pub fn aya::programs::fexit::FExit::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::fexit::FExit where U: core::convert::TryFrom +pub type aya::programs::fexit::FExit::Error = >::Error +pub fn aya::programs::fexit::FExit::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::fexit::FExit where T: 'static + core::marker::Sized +pub fn aya::programs::fexit::FExit::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::fexit::FExit where T: core::marker::Sized +pub fn aya::programs::fexit::FExit::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::fexit::FExit where T: core::marker::Sized +pub fn aya::programs::fexit::FExit::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::fexit::FExit +pub fn aya::programs::fexit::FExit::from(t: T) -> T +pub struct aya::programs::fexit::FExitLink(_) +impl aya::programs::links::Link for aya::programs::fexit::FExitLink +pub type aya::programs::fexit::FExitLink::Id = aya::programs::fexit::FExitLinkId +pub fn aya::programs::fexit::FExitLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::fexit::FExitLink::id(&self) -> Self::Id +impl core::convert::From for aya::programs::links::FdLink +pub fn aya::programs::links::FdLink::from(w: aya::programs::fexit::FExitLink) -> aya::programs::links::FdLink +impl core::convert::From for aya::programs::fexit::FExitLink +pub fn aya::programs::fexit::FExitLink::from(b: aya::programs::links::FdLink) -> aya::programs::fexit::FExitLink +impl core::ops::drop::Drop for aya::programs::fexit::FExitLink +pub fn aya::programs::fexit::FExitLink::drop(&mut self) +impl core::fmt::Debug for aya::programs::fexit::FExitLink +pub fn aya::programs::fexit::FExitLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::fexit::FExitLink +impl core::marker::Sync for aya::programs::fexit::FExitLink +impl core::marker::Unpin for aya::programs::fexit::FExitLink +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fexit::FExitLink +impl core::panic::unwind_safe::UnwindSafe for aya::programs::fexit::FExitLink +impl core::convert::Into for aya::programs::fexit::FExitLink where U: core::convert::From +pub fn aya::programs::fexit::FExitLink::into(self) -> U +impl core::convert::TryFrom for aya::programs::fexit::FExitLink where U: core::convert::Into +pub type aya::programs::fexit::FExitLink::Error = core::convert::Infallible +pub fn aya::programs::fexit::FExitLink::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::fexit::FExitLink where U: core::convert::TryFrom +pub type aya::programs::fexit::FExitLink::Error = >::Error +pub fn aya::programs::fexit::FExitLink::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::fexit::FExitLink where T: 'static + core::marker::Sized +pub fn aya::programs::fexit::FExitLink::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::fexit::FExitLink where T: core::marker::Sized +pub fn aya::programs::fexit::FExitLink::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::fexit::FExitLink where T: core::marker::Sized +pub fn aya::programs::fexit::FExitLink::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::fexit::FExitLink +pub fn aya::programs::fexit::FExitLink::from(t: T) -> T +pub struct aya::programs::fexit::FExitLinkId(_) +impl core::cmp::Eq for aya::programs::fexit::FExitLinkId +impl core::cmp::PartialEq for aya::programs::fexit::FExitLinkId +pub fn aya::programs::fexit::FExitLinkId::eq(&self, other: &aya::programs::fexit::FExitLinkId) -> bool +impl core::fmt::Debug for aya::programs::fexit::FExitLinkId +pub fn aya::programs::fexit::FExitLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::hash::Hash for aya::programs::fexit::FExitLinkId +pub fn aya::programs::fexit::FExitLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H) +impl core::marker::StructuralEq for aya::programs::fexit::FExitLinkId +impl core::marker::StructuralPartialEq for aya::programs::fexit::FExitLinkId +impl core::marker::Send for aya::programs::fexit::FExitLinkId +impl core::marker::Sync for aya::programs::fexit::FExitLinkId +impl core::marker::Unpin for aya::programs::fexit::FExitLinkId +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fexit::FExitLinkId +impl core::panic::unwind_safe::UnwindSafe for aya::programs::fexit::FExitLinkId +impl core::convert::Into for aya::programs::fexit::FExitLinkId where U: core::convert::From +pub fn aya::programs::fexit::FExitLinkId::into(self) -> U +impl core::convert::TryFrom for aya::programs::fexit::FExitLinkId where U: core::convert::Into +pub type aya::programs::fexit::FExitLinkId::Error = core::convert::Infallible +pub fn aya::programs::fexit::FExitLinkId::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::fexit::FExitLinkId where U: core::convert::TryFrom +pub type aya::programs::fexit::FExitLinkId::Error = >::Error +pub fn aya::programs::fexit::FExitLinkId::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::fexit::FExitLinkId where T: 'static + core::marker::Sized +pub fn aya::programs::fexit::FExitLinkId::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::fexit::FExitLinkId where T: core::marker::Sized +pub fn aya::programs::fexit::FExitLinkId::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::fexit::FExitLinkId where T: core::marker::Sized +pub fn aya::programs::fexit::FExitLinkId::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::fexit::FExitLinkId +pub fn aya::programs::fexit::FExitLinkId::from(t: T) -> T +pub mod aya::programs::kprobe +pub enum aya::programs::kprobe::KProbeError +pub aya::programs::kprobe::KProbeError::FileError +pub aya::programs::kprobe::KProbeError::FileError::filename: alloc::string::String +pub aya::programs::kprobe::KProbeError::FileError::io_error: std::io::error::Error +impl core::convert::From for aya::programs::ProgramError +pub fn aya::programs::ProgramError::from(source: aya::programs::kprobe::KProbeError) -> Self +impl core::error::Error for aya::programs::kprobe::KProbeError +pub fn aya::programs::kprobe::KProbeError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)> +impl core::fmt::Display for aya::programs::kprobe::KProbeError +pub fn aya::programs::kprobe::KProbeError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::fmt::Debug for aya::programs::kprobe::KProbeError +pub fn aya::programs::kprobe::KProbeError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::kprobe::KProbeError +impl core::marker::Sync for aya::programs::kprobe::KProbeError +impl core::marker::Unpin for aya::programs::kprobe::KProbeError +impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::kprobe::KProbeError +impl !core::panic::unwind_safe::UnwindSafe for aya::programs::kprobe::KProbeError +impl core::any::Provider for aya::programs::kprobe::KProbeError where E: core::error::Error + core::marker::Sized +pub fn aya::programs::kprobe::KProbeError::provide<'a>(&'a self, demand: &mut core::any::Demand<'a>) +impl core::convert::Into for aya::programs::kprobe::KProbeError where U: core::convert::From +pub fn aya::programs::kprobe::KProbeError::into(self) -> U +impl core::convert::TryFrom for aya::programs::kprobe::KProbeError where U: core::convert::Into +pub type aya::programs::kprobe::KProbeError::Error = core::convert::Infallible +pub fn aya::programs::kprobe::KProbeError::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::kprobe::KProbeError where U: core::convert::TryFrom +pub type aya::programs::kprobe::KProbeError::Error = >::Error +pub fn aya::programs::kprobe::KProbeError::try_into(self) -> core::result::Result>::Error> +impl alloc::string::ToString for aya::programs::kprobe::KProbeError where T: core::fmt::Display + core::marker::Sized +pub fn aya::programs::kprobe::KProbeError::to_string(&self) -> alloc::string::String +impl core::any::Any for aya::programs::kprobe::KProbeError where T: 'static + core::marker::Sized +pub fn aya::programs::kprobe::KProbeError::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::kprobe::KProbeError where T: core::marker::Sized +pub fn aya::programs::kprobe::KProbeError::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::kprobe::KProbeError where T: core::marker::Sized +pub fn aya::programs::kprobe::KProbeError::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::kprobe::KProbeError +pub fn aya::programs::kprobe::KProbeError::from(t: T) -> T +pub struct aya::programs::kprobe::KProbe +impl aya::programs::kprobe::KProbe +pub fn aya::programs::kprobe::KProbe::attach(&mut self, fn_name: &str, offset: u64) -> core::result::Result +pub fn aya::programs::kprobe::KProbe::detach(&mut self, link_id: aya::programs::kprobe::KProbeLinkId) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::kprobe::KProbe::from_pin>(path: P, kind: aya::programs::ProbeKind) -> core::result::Result +pub fn aya::programs::kprobe::KProbe::kind(&self) -> aya::programs::ProbeKind +pub fn aya::programs::kprobe::KProbe::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::kprobe::KProbe::take_link(&mut self, link_id: aya::programs::kprobe::KProbeLinkId) -> core::result::Result +impl aya::programs::kprobe::KProbe +pub fn aya::programs::kprobe::KProbe::fd(&self) -> core::option::Option +impl aya::programs::kprobe::KProbe +pub fn aya::programs::kprobe::KProbe::pin>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError> +pub fn aya::programs::kprobe::KProbe::unpin(self) -> core::result::Result<(), std::io::error::Error> +impl aya::programs::kprobe::KProbe +pub fn aya::programs::kprobe::KProbe::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +impl core::ops::drop::Drop for aya::programs::kprobe::KProbe +pub fn aya::programs::kprobe::KProbe::drop(&mut self) +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::kprobe::KProbe +pub type &'a aya::programs::kprobe::KProbe::Error = aya::programs::ProgramError +pub fn &'a aya::programs::kprobe::KProbe::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::kprobe::KProbe, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::kprobe::KProbe +pub type &'a mut aya::programs::kprobe::KProbe::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::kprobe::KProbe::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::kprobe::KProbe, aya::programs::ProgramError> +impl core::fmt::Debug for aya::programs::kprobe::KProbe +pub fn aya::programs::kprobe::KProbe::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::kprobe::KProbe +impl core::marker::Sync for aya::programs::kprobe::KProbe +impl core::marker::Unpin for aya::programs::kprobe::KProbe +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::kprobe::KProbe +impl core::panic::unwind_safe::UnwindSafe for aya::programs::kprobe::KProbe +impl core::convert::Into for aya::programs::kprobe::KProbe where U: core::convert::From +pub fn aya::programs::kprobe::KProbe::into(self) -> U +impl core::convert::TryFrom for aya::programs::kprobe::KProbe where U: core::convert::Into +pub type aya::programs::kprobe::KProbe::Error = core::convert::Infallible +pub fn aya::programs::kprobe::KProbe::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::kprobe::KProbe where U: core::convert::TryFrom +pub type aya::programs::kprobe::KProbe::Error = >::Error +pub fn aya::programs::kprobe::KProbe::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::kprobe::KProbe where T: 'static + core::marker::Sized +pub fn aya::programs::kprobe::KProbe::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::kprobe::KProbe where T: core::marker::Sized +pub fn aya::programs::kprobe::KProbe::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::kprobe::KProbe where T: core::marker::Sized +pub fn aya::programs::kprobe::KProbe::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::kprobe::KProbe +pub fn aya::programs::kprobe::KProbe::from(t: T) -> T +pub struct aya::programs::kprobe::KProbeLink(_) +impl aya::programs::links::Link for aya::programs::kprobe::KProbeLink +pub type aya::programs::kprobe::KProbeLink::Id = aya::programs::kprobe::KProbeLinkId +pub fn aya::programs::kprobe::KProbeLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::kprobe::KProbeLink::id(&self) -> Self::Id +impl core::convert::TryFrom for aya::programs::links::FdLink +pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError +pub fn aya::programs::links::FdLink::try_from(value: aya::programs::kprobe::KProbeLink) -> core::result::Result +impl core::convert::TryFrom for aya::programs::kprobe::KProbeLink +pub type aya::programs::kprobe::KProbeLink::Error = aya::programs::links::LinkError +pub fn aya::programs::kprobe::KProbeLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result +impl core::ops::drop::Drop for aya::programs::kprobe::KProbeLink +pub fn aya::programs::kprobe::KProbeLink::drop(&mut self) +impl core::fmt::Debug for aya::programs::kprobe::KProbeLink +pub fn aya::programs::kprobe::KProbeLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::kprobe::KProbeLink +impl core::marker::Sync for aya::programs::kprobe::KProbeLink +impl core::marker::Unpin for aya::programs::kprobe::KProbeLink +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::kprobe::KProbeLink +impl core::panic::unwind_safe::UnwindSafe for aya::programs::kprobe::KProbeLink +impl core::convert::Into for aya::programs::kprobe::KProbeLink where U: core::convert::From +pub fn aya::programs::kprobe::KProbeLink::into(self) -> U +impl core::convert::TryFrom for aya::programs::kprobe::KProbeLink where U: core::convert::Into +pub type aya::programs::kprobe::KProbeLink::Error = core::convert::Infallible +pub fn aya::programs::kprobe::KProbeLink::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::kprobe::KProbeLink where U: core::convert::TryFrom +pub type aya::programs::kprobe::KProbeLink::Error = >::Error +pub fn aya::programs::kprobe::KProbeLink::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::kprobe::KProbeLink where T: 'static + core::marker::Sized +pub fn aya::programs::kprobe::KProbeLink::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::kprobe::KProbeLink where T: core::marker::Sized +pub fn aya::programs::kprobe::KProbeLink::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::kprobe::KProbeLink where T: core::marker::Sized +pub fn aya::programs::kprobe::KProbeLink::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::kprobe::KProbeLink +pub fn aya::programs::kprobe::KProbeLink::from(t: T) -> T +pub struct aya::programs::kprobe::KProbeLinkId(_) +impl core::cmp::Eq for aya::programs::kprobe::KProbeLinkId +impl core::cmp::PartialEq for aya::programs::kprobe::KProbeLinkId +pub fn aya::programs::kprobe::KProbeLinkId::eq(&self, other: &aya::programs::kprobe::KProbeLinkId) -> bool +impl core::fmt::Debug for aya::programs::kprobe::KProbeLinkId +pub fn aya::programs::kprobe::KProbeLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::hash::Hash for aya::programs::kprobe::KProbeLinkId +pub fn aya::programs::kprobe::KProbeLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H) +impl core::marker::StructuralEq for aya::programs::kprobe::KProbeLinkId +impl core::marker::StructuralPartialEq for aya::programs::kprobe::KProbeLinkId +impl core::marker::Send for aya::programs::kprobe::KProbeLinkId +impl core::marker::Sync for aya::programs::kprobe::KProbeLinkId +impl core::marker::Unpin for aya::programs::kprobe::KProbeLinkId +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::kprobe::KProbeLinkId +impl core::panic::unwind_safe::UnwindSafe for aya::programs::kprobe::KProbeLinkId +impl core::convert::Into for aya::programs::kprobe::KProbeLinkId where U: core::convert::From +pub fn aya::programs::kprobe::KProbeLinkId::into(self) -> U +impl core::convert::TryFrom for aya::programs::kprobe::KProbeLinkId where U: core::convert::Into +pub type aya::programs::kprobe::KProbeLinkId::Error = core::convert::Infallible +pub fn aya::programs::kprobe::KProbeLinkId::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::kprobe::KProbeLinkId where U: core::convert::TryFrom +pub type aya::programs::kprobe::KProbeLinkId::Error = >::Error +pub fn aya::programs::kprobe::KProbeLinkId::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::kprobe::KProbeLinkId where T: 'static + core::marker::Sized +pub fn aya::programs::kprobe::KProbeLinkId::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::kprobe::KProbeLinkId where T: core::marker::Sized +pub fn aya::programs::kprobe::KProbeLinkId::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::kprobe::KProbeLinkId where T: core::marker::Sized +pub fn aya::programs::kprobe::KProbeLinkId::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::kprobe::KProbeLinkId +pub fn aya::programs::kprobe::KProbeLinkId::from(t: T) -> T +pub mod aya::programs::links +pub enum aya::programs::links::LinkError +pub aya::programs::links::LinkError::InvalidLink +pub aya::programs::links::LinkError::SyscallError +pub aya::programs::links::LinkError::SyscallError::call: &'static str +pub aya::programs::links::LinkError::SyscallError::code: libc::unix::linux_like::linux::gnu::b64::x86_64::not_x32::c_long +pub aya::programs::links::LinkError::SyscallError::io_error: std::io::error::Error +impl core::error::Error for aya::programs::links::LinkError +pub fn aya::programs::links::LinkError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)> +impl core::fmt::Display for aya::programs::links::LinkError +pub fn aya::programs::links::LinkError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::fmt::Debug for aya::programs::links::LinkError +pub fn aya::programs::links::LinkError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::links::LinkError +impl core::marker::Sync for aya::programs::links::LinkError +impl core::marker::Unpin for aya::programs::links::LinkError +impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::LinkError +impl !core::panic::unwind_safe::UnwindSafe for aya::programs::links::LinkError +impl core::any::Provider for aya::programs::links::LinkError where E: core::error::Error + core::marker::Sized +pub fn aya::programs::links::LinkError::provide<'a>(&'a self, demand: &mut core::any::Demand<'a>) +impl core::convert::Into for aya::programs::links::LinkError where U: core::convert::From +pub fn aya::programs::links::LinkError::into(self) -> U +impl core::convert::TryFrom for aya::programs::links::LinkError where U: core::convert::Into +pub type aya::programs::links::LinkError::Error = core::convert::Infallible +pub fn aya::programs::links::LinkError::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::links::LinkError where U: core::convert::TryFrom +pub type aya::programs::links::LinkError::Error = >::Error +pub fn aya::programs::links::LinkError::try_into(self) -> core::result::Result>::Error> +impl alloc::string::ToString for aya::programs::links::LinkError where T: core::fmt::Display + core::marker::Sized +pub fn aya::programs::links::LinkError::to_string(&self) -> alloc::string::String +impl core::any::Any for aya::programs::links::LinkError where T: 'static + core::marker::Sized +pub fn aya::programs::links::LinkError::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::links::LinkError where T: core::marker::Sized +pub fn aya::programs::links::LinkError::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::links::LinkError where T: core::marker::Sized +pub fn aya::programs::links::LinkError::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::links::LinkError +pub fn aya::programs::links::LinkError::from(t: T) -> T +pub struct aya::programs::links::FdLink +impl aya::programs::links::FdLink +pub fn aya::programs::links::FdLink::pin>(self, path: P) -> core::result::Result +impl aya::programs::links::Link for aya::programs::links::FdLink +pub type aya::programs::links::FdLink::Id = aya::programs::links::FdLinkId +pub fn aya::programs::links::FdLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::links::FdLink::id(&self) -> Self::Id +impl core::convert::From for aya::programs::links::FdLink +pub fn aya::programs::links::FdLink::from(w: aya::programs::extension::ExtensionLink) -> aya::programs::links::FdLink +impl core::convert::From for aya::programs::links::FdLink +pub fn aya::programs::links::FdLink::from(w: aya::programs::fentry::FEntryLink) -> aya::programs::links::FdLink +impl core::convert::From for aya::programs::links::FdLink +pub fn aya::programs::links::FdLink::from(w: aya::programs::fexit::FExitLink) -> aya::programs::links::FdLink +impl core::convert::From for aya::programs::extension::ExtensionLink +pub fn aya::programs::extension::ExtensionLink::from(b: aya::programs::links::FdLink) -> aya::programs::extension::ExtensionLink +impl core::convert::From for aya::programs::fentry::FEntryLink +pub fn aya::programs::fentry::FEntryLink::from(b: aya::programs::links::FdLink) -> aya::programs::fentry::FEntryLink +impl core::convert::From for aya::programs::fexit::FExitLink +pub fn aya::programs::fexit::FExitLink::from(b: aya::programs::links::FdLink) -> aya::programs::fexit::FExitLink +impl core::convert::From for aya::programs::lsm::LsmLink +pub fn aya::programs::lsm::LsmLink::from(b: aya::programs::links::FdLink) -> aya::programs::lsm::LsmLink +impl core::convert::From for aya::programs::tp_btf::BtfTracePointLink +pub fn aya::programs::tp_btf::BtfTracePointLink::from(b: aya::programs::links::FdLink) -> aya::programs::tp_btf::BtfTracePointLink +impl core::convert::From for aya::programs::links::FdLink +pub fn aya::programs::links::FdLink::from(p: aya::programs::links::PinnedLink) -> Self +impl core::convert::From for aya::programs::links::FdLink +pub fn aya::programs::links::FdLink::from(w: aya::programs::lsm::LsmLink) -> aya::programs::links::FdLink +impl core::convert::From for aya::programs::links::FdLink +pub fn aya::programs::links::FdLink::from(w: aya::programs::tp_btf::BtfTracePointLink) -> aya::programs::links::FdLink +impl core::convert::TryFrom for aya::programs::links::FdLink +pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError +pub fn aya::programs::links::FdLink::try_from(value: aya::programs::kprobe::KProbeLink) -> core::result::Result +impl core::convert::TryFrom for aya::programs::kprobe::KProbeLink +pub type aya::programs::kprobe::KProbeLink::Error = aya::programs::links::LinkError +pub fn aya::programs::kprobe::KProbeLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result +impl core::convert::TryFrom for aya::programs::perf_event::PerfEventLink +pub type aya::programs::perf_event::PerfEventLink::Error = aya::programs::links::LinkError +pub fn aya::programs::perf_event::PerfEventLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result +impl core::convert::TryFrom for aya::programs::trace_point::TracePointLink +pub type aya::programs::trace_point::TracePointLink::Error = aya::programs::links::LinkError +pub fn aya::programs::trace_point::TracePointLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result +impl core::convert::TryFrom for aya::programs::uprobe::UProbeLink +pub type aya::programs::uprobe::UProbeLink::Error = aya::programs::links::LinkError +pub fn aya::programs::uprobe::UProbeLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result +impl core::convert::TryFrom for aya::programs::xdp::XdpLink +pub type aya::programs::xdp::XdpLink::Error = aya::programs::links::LinkError +pub fn aya::programs::xdp::XdpLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result +impl core::convert::TryFrom for aya::programs::links::FdLink +pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError +pub fn aya::programs::links::FdLink::try_from(value: aya::programs::perf_event::PerfEventLink) -> core::result::Result +impl core::convert::TryFrom for aya::programs::links::FdLink +pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError +pub fn aya::programs::links::FdLink::try_from(value: aya::programs::trace_point::TracePointLink) -> core::result::Result +impl core::convert::TryFrom for aya::programs::links::FdLink +pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError +pub fn aya::programs::links::FdLink::try_from(value: aya::programs::uprobe::UProbeLink) -> core::result::Result +impl core::convert::TryFrom for aya::programs::links::FdLink +pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError +pub fn aya::programs::links::FdLink::try_from(value: aya::programs::xdp::XdpLink) -> core::result::Result +impl core::ops::drop::Drop for aya::programs::links::FdLink +pub fn aya::programs::links::FdLink::drop(&mut self) +impl core::fmt::Debug for aya::programs::links::FdLink +pub fn aya::programs::links::FdLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::links::FdLink +impl core::marker::Sync for aya::programs::links::FdLink +impl core::marker::Unpin for aya::programs::links::FdLink +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::FdLink +impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::FdLink +impl core::convert::Into for aya::programs::links::FdLink where U: core::convert::From +pub fn aya::programs::links::FdLink::into(self) -> U +impl core::convert::TryFrom for aya::programs::links::FdLink where U: core::convert::Into +pub type aya::programs::links::FdLink::Error = core::convert::Infallible +pub fn aya::programs::links::FdLink::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::links::FdLink where U: core::convert::TryFrom +pub type aya::programs::links::FdLink::Error = >::Error +pub fn aya::programs::links::FdLink::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::links::FdLink where T: 'static + core::marker::Sized +pub fn aya::programs::links::FdLink::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::links::FdLink where T: core::marker::Sized +pub fn aya::programs::links::FdLink::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::links::FdLink where T: core::marker::Sized +pub fn aya::programs::links::FdLink::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::links::FdLink +pub fn aya::programs::links::FdLink::from(t: T) -> T +pub struct aya::programs::links::FdLinkId(_) +impl core::cmp::Eq for aya::programs::links::FdLinkId +impl core::cmp::PartialEq for aya::programs::links::FdLinkId +pub fn aya::programs::links::FdLinkId::eq(&self, other: &aya::programs::links::FdLinkId) -> bool +impl core::fmt::Debug for aya::programs::links::FdLinkId +pub fn aya::programs::links::FdLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::hash::Hash for aya::programs::links::FdLinkId +pub fn aya::programs::links::FdLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H) +impl core::marker::StructuralEq for aya::programs::links::FdLinkId +impl core::marker::StructuralPartialEq for aya::programs::links::FdLinkId +impl core::marker::Send for aya::programs::links::FdLinkId +impl core::marker::Sync for aya::programs::links::FdLinkId +impl core::marker::Unpin for aya::programs::links::FdLinkId +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::FdLinkId +impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::FdLinkId +impl core::convert::Into for aya::programs::links::FdLinkId where U: core::convert::From +pub fn aya::programs::links::FdLinkId::into(self) -> U +impl core::convert::TryFrom for aya::programs::links::FdLinkId where U: core::convert::Into +pub type aya::programs::links::FdLinkId::Error = core::convert::Infallible +pub fn aya::programs::links::FdLinkId::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::links::FdLinkId where U: core::convert::TryFrom +pub type aya::programs::links::FdLinkId::Error = >::Error +pub fn aya::programs::links::FdLinkId::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::links::FdLinkId where T: 'static + core::marker::Sized +pub fn aya::programs::links::FdLinkId::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::links::FdLinkId where T: core::marker::Sized +pub fn aya::programs::links::FdLinkId::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::links::FdLinkId where T: core::marker::Sized +pub fn aya::programs::links::FdLinkId::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::links::FdLinkId +pub fn aya::programs::links::FdLinkId::from(t: T) -> T +pub struct aya::programs::links::PinnedLink +impl aya::programs::links::PinnedLink +pub fn aya::programs::links::PinnedLink::from_pin>(path: P) -> core::result::Result +pub fn aya::programs::links::PinnedLink::unpin(self) -> core::result::Result +impl core::convert::From for aya::programs::links::FdLink +pub fn aya::programs::links::FdLink::from(p: aya::programs::links::PinnedLink) -> Self +impl core::fmt::Debug for aya::programs::links::PinnedLink +pub fn aya::programs::links::PinnedLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::links::PinnedLink +impl core::marker::Sync for aya::programs::links::PinnedLink +impl core::marker::Unpin for aya::programs::links::PinnedLink +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::PinnedLink +impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::PinnedLink +impl core::convert::Into for aya::programs::links::PinnedLink where U: core::convert::From +pub fn aya::programs::links::PinnedLink::into(self) -> U +impl core::convert::TryFrom for aya::programs::links::PinnedLink where U: core::convert::Into +pub type aya::programs::links::PinnedLink::Error = core::convert::Infallible +pub fn aya::programs::links::PinnedLink::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::links::PinnedLink where U: core::convert::TryFrom +pub type aya::programs::links::PinnedLink::Error = >::Error +pub fn aya::programs::links::PinnedLink::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::links::PinnedLink where T: 'static + core::marker::Sized +pub fn aya::programs::links::PinnedLink::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::links::PinnedLink where T: core::marker::Sized +pub fn aya::programs::links::PinnedLink::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::links::PinnedLink where T: core::marker::Sized +pub fn aya::programs::links::PinnedLink::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::links::PinnedLink +pub fn aya::programs::links::PinnedLink::from(t: T) -> T +pub struct aya::programs::links::ProgAttachLink +impl aya::programs::links::Link for aya::programs::links::ProgAttachLink +pub type aya::programs::links::ProgAttachLink::Id = aya::programs::links::ProgAttachLinkId +pub fn aya::programs::links::ProgAttachLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::links::ProgAttachLink::id(&self) -> Self::Id +impl core::fmt::Debug for aya::programs::links::ProgAttachLink +pub fn aya::programs::links::ProgAttachLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::links::ProgAttachLink +impl core::marker::Sync for aya::programs::links::ProgAttachLink +impl core::marker::Unpin for aya::programs::links::ProgAttachLink +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::ProgAttachLink +impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::ProgAttachLink +impl core::convert::Into for aya::programs::links::ProgAttachLink where U: core::convert::From +pub fn aya::programs::links::ProgAttachLink::into(self) -> U +impl core::convert::TryFrom for aya::programs::links::ProgAttachLink where U: core::convert::Into +pub type aya::programs::links::ProgAttachLink::Error = core::convert::Infallible +pub fn aya::programs::links::ProgAttachLink::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::links::ProgAttachLink where U: core::convert::TryFrom +pub type aya::programs::links::ProgAttachLink::Error = >::Error +pub fn aya::programs::links::ProgAttachLink::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::links::ProgAttachLink where T: 'static + core::marker::Sized +pub fn aya::programs::links::ProgAttachLink::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::links::ProgAttachLink where T: core::marker::Sized +pub fn aya::programs::links::ProgAttachLink::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::links::ProgAttachLink where T: core::marker::Sized +pub fn aya::programs::links::ProgAttachLink::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::links::ProgAttachLink +pub fn aya::programs::links::ProgAttachLink::from(t: T) -> T +pub struct aya::programs::links::ProgAttachLinkId(_, _, _) +impl core::cmp::Eq for aya::programs::links::ProgAttachLinkId +impl core::cmp::PartialEq for aya::programs::links::ProgAttachLinkId +pub fn aya::programs::links::ProgAttachLinkId::eq(&self, other: &aya::programs::links::ProgAttachLinkId) -> bool +impl core::fmt::Debug for aya::programs::links::ProgAttachLinkId +pub fn aya::programs::links::ProgAttachLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::hash::Hash for aya::programs::links::ProgAttachLinkId +pub fn aya::programs::links::ProgAttachLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H) +impl core::marker::StructuralEq for aya::programs::links::ProgAttachLinkId +impl core::marker::StructuralPartialEq for aya::programs::links::ProgAttachLinkId +impl core::marker::Send for aya::programs::links::ProgAttachLinkId +impl core::marker::Sync for aya::programs::links::ProgAttachLinkId +impl core::marker::Unpin for aya::programs::links::ProgAttachLinkId +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::ProgAttachLinkId +impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::ProgAttachLinkId +impl core::convert::Into for aya::programs::links::ProgAttachLinkId where U: core::convert::From +pub fn aya::programs::links::ProgAttachLinkId::into(self) -> U +impl core::convert::TryFrom for aya::programs::links::ProgAttachLinkId where U: core::convert::Into +pub type aya::programs::links::ProgAttachLinkId::Error = core::convert::Infallible +pub fn aya::programs::links::ProgAttachLinkId::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::links::ProgAttachLinkId where U: core::convert::TryFrom +pub type aya::programs::links::ProgAttachLinkId::Error = >::Error +pub fn aya::programs::links::ProgAttachLinkId::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::links::ProgAttachLinkId where T: 'static + core::marker::Sized +pub fn aya::programs::links::ProgAttachLinkId::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::links::ProgAttachLinkId where T: core::marker::Sized +pub fn aya::programs::links::ProgAttachLinkId::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::links::ProgAttachLinkId where T: core::marker::Sized +pub fn aya::programs::links::ProgAttachLinkId::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::links::ProgAttachLinkId +pub fn aya::programs::links::ProgAttachLinkId::from(t: T) -> T +pub trait aya::programs::links::Link: core::fmt::Debug + 'static +pub type aya::programs::links::Link::Id: core::fmt::Debug + core::hash::Hash + core::cmp::Eq + core::cmp::PartialEq +pub fn aya::programs::links::Link::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::links::Link::id(&self) -> Self::Id +impl aya::programs::links::Link for aya::programs::cgroup_device::CgroupDeviceLink +pub type aya::programs::cgroup_device::CgroupDeviceLink::Id = aya::programs::cgroup_device::CgroupDeviceLinkId +pub fn aya::programs::cgroup_device::CgroupDeviceLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::cgroup_device::CgroupDeviceLink::id(&self) -> Self::Id +impl aya::programs::links::Link for aya::programs::cgroup_skb::CgroupSkbLink +pub type aya::programs::cgroup_skb::CgroupSkbLink::Id = aya::programs::cgroup_skb::CgroupSkbLinkId +pub fn aya::programs::cgroup_skb::CgroupSkbLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::cgroup_skb::CgroupSkbLink::id(&self) -> Self::Id +impl aya::programs::links::Link for aya::programs::cgroup_sock::CgroupSockLink +pub type aya::programs::cgroup_sock::CgroupSockLink::Id = aya::programs::cgroup_sock::CgroupSockLinkId +pub fn aya::programs::cgroup_sock::CgroupSockLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::cgroup_sock::CgroupSockLink::id(&self) -> Self::Id +impl aya::programs::links::Link for aya::programs::cgroup_sock_addr::CgroupSockAddrLink +pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLink::Id = aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::id(&self) -> Self::Id +impl aya::programs::links::Link for aya::programs::cgroup_sockopt::CgroupSockoptLink +pub type aya::programs::cgroup_sockopt::CgroupSockoptLink::Id = aya::programs::cgroup_sockopt::CgroupSockoptLinkId +pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::id(&self) -> Self::Id +impl aya::programs::links::Link for aya::programs::cgroup_sysctl::CgroupSysctlLink +pub type aya::programs::cgroup_sysctl::CgroupSysctlLink::Id = aya::programs::cgroup_sysctl::CgroupSysctlLinkId +pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::id(&self) -> Self::Id +impl aya::programs::links::Link for aya::programs::extension::ExtensionLink +pub type aya::programs::extension::ExtensionLink::Id = aya::programs::extension::ExtensionLinkId +pub fn aya::programs::extension::ExtensionLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::extension::ExtensionLink::id(&self) -> Self::Id +impl aya::programs::links::Link for aya::programs::fentry::FEntryLink +pub type aya::programs::fentry::FEntryLink::Id = aya::programs::fentry::FEntryLinkId +pub fn aya::programs::fentry::FEntryLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::fentry::FEntryLink::id(&self) -> Self::Id +impl aya::programs::links::Link for aya::programs::fexit::FExitLink +pub type aya::programs::fexit::FExitLink::Id = aya::programs::fexit::FExitLinkId +pub fn aya::programs::fexit::FExitLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::fexit::FExitLink::id(&self) -> Self::Id +impl aya::programs::links::Link for aya::programs::kprobe::KProbeLink +pub type aya::programs::kprobe::KProbeLink::Id = aya::programs::kprobe::KProbeLinkId +pub fn aya::programs::kprobe::KProbeLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::kprobe::KProbeLink::id(&self) -> Self::Id +impl aya::programs::links::Link for aya::programs::links::FdLink +pub type aya::programs::links::FdLink::Id = aya::programs::links::FdLinkId +pub fn aya::programs::links::FdLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::links::FdLink::id(&self) -> Self::Id +impl aya::programs::links::Link for aya::programs::links::ProgAttachLink +pub type aya::programs::links::ProgAttachLink::Id = aya::programs::links::ProgAttachLinkId +pub fn aya::programs::links::ProgAttachLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::links::ProgAttachLink::id(&self) -> Self::Id +impl aya::programs::links::Link for aya::programs::lirc_mode2::LircLink +pub type aya::programs::lirc_mode2::LircLink::Id = aya::programs::lirc_mode2::LircLinkId +pub fn aya::programs::lirc_mode2::LircLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::lirc_mode2::LircLink::id(&self) -> Self::Id +impl aya::programs::links::Link for aya::programs::lsm::LsmLink +pub type aya::programs::lsm::LsmLink::Id = aya::programs::lsm::LsmLinkId +pub fn aya::programs::lsm::LsmLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::lsm::LsmLink::id(&self) -> Self::Id +impl aya::programs::links::Link for aya::programs::perf_attach::PerfLink +pub type aya::programs::perf_attach::PerfLink::Id = aya::programs::perf_attach::PerfLinkId +pub fn aya::programs::perf_attach::PerfLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::perf_attach::PerfLink::id(&self) -> Self::Id +impl aya::programs::links::Link for aya::programs::perf_event::PerfEventLink +pub type aya::programs::perf_event::PerfEventLink::Id = aya::programs::perf_event::PerfEventLinkId +pub fn aya::programs::perf_event::PerfEventLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::perf_event::PerfEventLink::id(&self) -> Self::Id +impl aya::programs::links::Link for aya::programs::tc::SchedClassifierLink +pub type aya::programs::tc::SchedClassifierLink::Id = aya::programs::tc::SchedClassifierLinkId +pub fn aya::programs::tc::SchedClassifierLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::tc::SchedClassifierLink::id(&self) -> Self::Id +impl aya::programs::links::Link for aya::programs::tp_btf::BtfTracePointLink +pub type aya::programs::tp_btf::BtfTracePointLink::Id = aya::programs::tp_btf::BtfTracePointLinkId +pub fn aya::programs::tp_btf::BtfTracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::tp_btf::BtfTracePointLink::id(&self) -> Self::Id +impl aya::programs::links::Link for aya::programs::trace_point::TracePointLink +pub type aya::programs::trace_point::TracePointLink::Id = aya::programs::trace_point::TracePointLinkId +pub fn aya::programs::trace_point::TracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::trace_point::TracePointLink::id(&self) -> Self::Id +impl aya::programs::links::Link for aya::programs::uprobe::UProbeLink +pub type aya::programs::uprobe::UProbeLink::Id = aya::programs::uprobe::UProbeLinkId +pub fn aya::programs::uprobe::UProbeLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::uprobe::UProbeLink::id(&self) -> Self::Id +impl aya::programs::links::Link for aya::programs::xdp::XdpLink +pub type aya::programs::xdp::XdpLink::Id = aya::programs::xdp::XdpLinkId +pub fn aya::programs::xdp::XdpLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::xdp::XdpLink::id(&self) -> Self::Id +pub mod aya::programs::lirc_mode2 +pub struct aya::programs::lirc_mode2::LircLink +impl aya::programs::lirc_mode2::LircLink +pub fn aya::programs::lirc_mode2::LircLink::info(&self) -> core::result::Result +impl aya::programs::links::Link for aya::programs::lirc_mode2::LircLink +pub type aya::programs::lirc_mode2::LircLink::Id = aya::programs::lirc_mode2::LircLinkId +pub fn aya::programs::lirc_mode2::LircLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::lirc_mode2::LircLink::id(&self) -> Self::Id +impl core::fmt::Debug for aya::programs::lirc_mode2::LircLink +pub fn aya::programs::lirc_mode2::LircLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::lirc_mode2::LircLink +impl core::marker::Sync for aya::programs::lirc_mode2::LircLink +impl core::marker::Unpin for aya::programs::lirc_mode2::LircLink +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lirc_mode2::LircLink +impl core::panic::unwind_safe::UnwindSafe for aya::programs::lirc_mode2::LircLink +impl core::convert::Into for aya::programs::lirc_mode2::LircLink where U: core::convert::From +pub fn aya::programs::lirc_mode2::LircLink::into(self) -> U +impl core::convert::TryFrom for aya::programs::lirc_mode2::LircLink where U: core::convert::Into +pub type aya::programs::lirc_mode2::LircLink::Error = core::convert::Infallible +pub fn aya::programs::lirc_mode2::LircLink::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::lirc_mode2::LircLink where U: core::convert::TryFrom +pub type aya::programs::lirc_mode2::LircLink::Error = >::Error +pub fn aya::programs::lirc_mode2::LircLink::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::lirc_mode2::LircLink where T: 'static + core::marker::Sized +pub fn aya::programs::lirc_mode2::LircLink::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::lirc_mode2::LircLink where T: core::marker::Sized +pub fn aya::programs::lirc_mode2::LircLink::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::lirc_mode2::LircLink where T: core::marker::Sized +pub fn aya::programs::lirc_mode2::LircLink::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::lirc_mode2::LircLink +pub fn aya::programs::lirc_mode2::LircLink::from(t: T) -> T +pub struct aya::programs::lirc_mode2::LircLinkId(_, _) +impl core::cmp::Eq for aya::programs::lirc_mode2::LircLinkId +impl core::cmp::PartialEq for aya::programs::lirc_mode2::LircLinkId +pub fn aya::programs::lirc_mode2::LircLinkId::eq(&self, other: &aya::programs::lirc_mode2::LircLinkId) -> bool +impl core::fmt::Debug for aya::programs::lirc_mode2::LircLinkId +pub fn aya::programs::lirc_mode2::LircLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::hash::Hash for aya::programs::lirc_mode2::LircLinkId +pub fn aya::programs::lirc_mode2::LircLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H) +impl core::marker::StructuralEq for aya::programs::lirc_mode2::LircLinkId +impl core::marker::StructuralPartialEq for aya::programs::lirc_mode2::LircLinkId +impl core::marker::Send for aya::programs::lirc_mode2::LircLinkId +impl core::marker::Sync for aya::programs::lirc_mode2::LircLinkId +impl core::marker::Unpin for aya::programs::lirc_mode2::LircLinkId +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lirc_mode2::LircLinkId +impl core::panic::unwind_safe::UnwindSafe for aya::programs::lirc_mode2::LircLinkId +impl core::convert::Into for aya::programs::lirc_mode2::LircLinkId where U: core::convert::From +pub fn aya::programs::lirc_mode2::LircLinkId::into(self) -> U +impl core::convert::TryFrom for aya::programs::lirc_mode2::LircLinkId where U: core::convert::Into +pub type aya::programs::lirc_mode2::LircLinkId::Error = core::convert::Infallible +pub fn aya::programs::lirc_mode2::LircLinkId::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::lirc_mode2::LircLinkId where U: core::convert::TryFrom +pub type aya::programs::lirc_mode2::LircLinkId::Error = >::Error +pub fn aya::programs::lirc_mode2::LircLinkId::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::lirc_mode2::LircLinkId where T: 'static + core::marker::Sized +pub fn aya::programs::lirc_mode2::LircLinkId::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::lirc_mode2::LircLinkId where T: core::marker::Sized +pub fn aya::programs::lirc_mode2::LircLinkId::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::lirc_mode2::LircLinkId where T: core::marker::Sized +pub fn aya::programs::lirc_mode2::LircLinkId::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::lirc_mode2::LircLinkId +pub fn aya::programs::lirc_mode2::LircLinkId::from(t: T) -> T +pub struct aya::programs::lirc_mode2::LircMode2 +impl aya::programs::lirc_mode2::LircMode2 +pub fn aya::programs::lirc_mode2::LircMode2::attach(&mut self, lircdev: T) -> core::result::Result +pub fn aya::programs::lirc_mode2::LircMode2::detach(&mut self, link_id: aya::programs::lirc_mode2::LircLinkId) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::lirc_mode2::LircMode2::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::lirc_mode2::LircMode2::query(target_fd: T) -> core::result::Result, aya::programs::ProgramError> +pub fn aya::programs::lirc_mode2::LircMode2::take_link(&mut self, link_id: aya::programs::lirc_mode2::LircLinkId) -> core::result::Result +impl aya::programs::lirc_mode2::LircMode2 +pub fn aya::programs::lirc_mode2::LircMode2::fd(&self) -> core::option::Option +impl aya::programs::lirc_mode2::LircMode2 +pub fn aya::programs::lirc_mode2::LircMode2::from_pin>(path: P) -> core::result::Result +impl aya::programs::lirc_mode2::LircMode2 +pub fn aya::programs::lirc_mode2::LircMode2::pin>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError> +pub fn aya::programs::lirc_mode2::LircMode2::unpin(self) -> core::result::Result<(), std::io::error::Error> +impl aya::programs::lirc_mode2::LircMode2 +pub fn aya::programs::lirc_mode2::LircMode2::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +impl core::ops::drop::Drop for aya::programs::lirc_mode2::LircMode2 +pub fn aya::programs::lirc_mode2::LircMode2::drop(&mut self) +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::lirc_mode2::LircMode2 +pub type &'a aya::programs::lirc_mode2::LircMode2::Error = aya::programs::ProgramError +pub fn &'a aya::programs::lirc_mode2::LircMode2::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::lirc_mode2::LircMode2, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::lirc_mode2::LircMode2 +pub type &'a mut aya::programs::lirc_mode2::LircMode2::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::lirc_mode2::LircMode2::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::lirc_mode2::LircMode2, aya::programs::ProgramError> +impl core::fmt::Debug for aya::programs::lirc_mode2::LircMode2 +pub fn aya::programs::lirc_mode2::LircMode2::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::lirc_mode2::LircMode2 +impl core::marker::Sync for aya::programs::lirc_mode2::LircMode2 +impl core::marker::Unpin for aya::programs::lirc_mode2::LircMode2 +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lirc_mode2::LircMode2 +impl core::panic::unwind_safe::UnwindSafe for aya::programs::lirc_mode2::LircMode2 +impl core::convert::Into for aya::programs::lirc_mode2::LircMode2 where U: core::convert::From +pub fn aya::programs::lirc_mode2::LircMode2::into(self) -> U +impl core::convert::TryFrom for aya::programs::lirc_mode2::LircMode2 where U: core::convert::Into +pub type aya::programs::lirc_mode2::LircMode2::Error = core::convert::Infallible +pub fn aya::programs::lirc_mode2::LircMode2::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::lirc_mode2::LircMode2 where U: core::convert::TryFrom +pub type aya::programs::lirc_mode2::LircMode2::Error = >::Error +pub fn aya::programs::lirc_mode2::LircMode2::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::lirc_mode2::LircMode2 where T: 'static + core::marker::Sized +pub fn aya::programs::lirc_mode2::LircMode2::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::lirc_mode2::LircMode2 where T: core::marker::Sized +pub fn aya::programs::lirc_mode2::LircMode2::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::lirc_mode2::LircMode2 where T: core::marker::Sized +pub fn aya::programs::lirc_mode2::LircMode2::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::lirc_mode2::LircMode2 +pub fn aya::programs::lirc_mode2::LircMode2::from(t: T) -> T +pub mod aya::programs::lsm +pub struct aya::programs::lsm::Lsm +impl aya::programs::lsm::Lsm +pub fn aya::programs::lsm::Lsm::attach(&mut self) -> core::result::Result +pub fn aya::programs::lsm::Lsm::detach(&mut self, link_id: aya::programs::lsm::LsmLinkId) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::lsm::Lsm::load(&mut self, lsm_hook_name: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::lsm::Lsm::take_link(&mut self, link_id: aya::programs::lsm::LsmLinkId) -> core::result::Result +impl aya::programs::lsm::Lsm +pub fn aya::programs::lsm::Lsm::fd(&self) -> core::option::Option +impl aya::programs::lsm::Lsm +pub fn aya::programs::lsm::Lsm::from_pin>(path: P) -> core::result::Result +impl aya::programs::lsm::Lsm +pub fn aya::programs::lsm::Lsm::pin>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError> +pub fn aya::programs::lsm::Lsm::unpin(self) -> core::result::Result<(), std::io::error::Error> +impl aya::programs::lsm::Lsm +pub fn aya::programs::lsm::Lsm::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +impl core::ops::drop::Drop for aya::programs::lsm::Lsm +pub fn aya::programs::lsm::Lsm::drop(&mut self) +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::lsm::Lsm +pub type &'a aya::programs::lsm::Lsm::Error = aya::programs::ProgramError +pub fn &'a aya::programs::lsm::Lsm::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::lsm::Lsm, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::lsm::Lsm +pub type &'a mut aya::programs::lsm::Lsm::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::lsm::Lsm::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::lsm::Lsm, aya::programs::ProgramError> +impl core::fmt::Debug for aya::programs::lsm::Lsm +pub fn aya::programs::lsm::Lsm::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::lsm::Lsm +impl core::marker::Sync for aya::programs::lsm::Lsm +impl core::marker::Unpin for aya::programs::lsm::Lsm +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lsm::Lsm +impl core::panic::unwind_safe::UnwindSafe for aya::programs::lsm::Lsm +impl core::convert::Into for aya::programs::lsm::Lsm where U: core::convert::From +pub fn aya::programs::lsm::Lsm::into(self) -> U +impl core::convert::TryFrom for aya::programs::lsm::Lsm where U: core::convert::Into +pub type aya::programs::lsm::Lsm::Error = core::convert::Infallible +pub fn aya::programs::lsm::Lsm::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::lsm::Lsm where U: core::convert::TryFrom +pub type aya::programs::lsm::Lsm::Error = >::Error +pub fn aya::programs::lsm::Lsm::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::lsm::Lsm where T: 'static + core::marker::Sized +pub fn aya::programs::lsm::Lsm::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::lsm::Lsm where T: core::marker::Sized +pub fn aya::programs::lsm::Lsm::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::lsm::Lsm where T: core::marker::Sized +pub fn aya::programs::lsm::Lsm::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::lsm::Lsm +pub fn aya::programs::lsm::Lsm::from(t: T) -> T +pub struct aya::programs::lsm::LsmLink(_) +impl aya::programs::links::Link for aya::programs::lsm::LsmLink +pub type aya::programs::lsm::LsmLink::Id = aya::programs::lsm::LsmLinkId +pub fn aya::programs::lsm::LsmLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::lsm::LsmLink::id(&self) -> Self::Id +impl core::convert::From for aya::programs::lsm::LsmLink +pub fn aya::programs::lsm::LsmLink::from(b: aya::programs::links::FdLink) -> aya::programs::lsm::LsmLink +impl core::convert::From for aya::programs::links::FdLink +pub fn aya::programs::links::FdLink::from(w: aya::programs::lsm::LsmLink) -> aya::programs::links::FdLink +impl core::ops::drop::Drop for aya::programs::lsm::LsmLink +pub fn aya::programs::lsm::LsmLink::drop(&mut self) +impl core::fmt::Debug for aya::programs::lsm::LsmLink +pub fn aya::programs::lsm::LsmLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::lsm::LsmLink +impl core::marker::Sync for aya::programs::lsm::LsmLink +impl core::marker::Unpin for aya::programs::lsm::LsmLink +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lsm::LsmLink +impl core::panic::unwind_safe::UnwindSafe for aya::programs::lsm::LsmLink +impl core::convert::Into for aya::programs::lsm::LsmLink where U: core::convert::From +pub fn aya::programs::lsm::LsmLink::into(self) -> U +impl core::convert::TryFrom for aya::programs::lsm::LsmLink where U: core::convert::Into +pub type aya::programs::lsm::LsmLink::Error = core::convert::Infallible +pub fn aya::programs::lsm::LsmLink::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::lsm::LsmLink where U: core::convert::TryFrom +pub type aya::programs::lsm::LsmLink::Error = >::Error +pub fn aya::programs::lsm::LsmLink::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::lsm::LsmLink where T: 'static + core::marker::Sized +pub fn aya::programs::lsm::LsmLink::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::lsm::LsmLink where T: core::marker::Sized +pub fn aya::programs::lsm::LsmLink::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::lsm::LsmLink where T: core::marker::Sized +pub fn aya::programs::lsm::LsmLink::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::lsm::LsmLink +pub fn aya::programs::lsm::LsmLink::from(t: T) -> T +pub struct aya::programs::lsm::LsmLinkId(_) +impl core::cmp::Eq for aya::programs::lsm::LsmLinkId +impl core::cmp::PartialEq for aya::programs::lsm::LsmLinkId +pub fn aya::programs::lsm::LsmLinkId::eq(&self, other: &aya::programs::lsm::LsmLinkId) -> bool +impl core::fmt::Debug for aya::programs::lsm::LsmLinkId +pub fn aya::programs::lsm::LsmLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::hash::Hash for aya::programs::lsm::LsmLinkId +pub fn aya::programs::lsm::LsmLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H) +impl core::marker::StructuralEq for aya::programs::lsm::LsmLinkId +impl core::marker::StructuralPartialEq for aya::programs::lsm::LsmLinkId +impl core::marker::Send for aya::programs::lsm::LsmLinkId +impl core::marker::Sync for aya::programs::lsm::LsmLinkId +impl core::marker::Unpin for aya::programs::lsm::LsmLinkId +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lsm::LsmLinkId +impl core::panic::unwind_safe::UnwindSafe for aya::programs::lsm::LsmLinkId +impl core::convert::Into for aya::programs::lsm::LsmLinkId where U: core::convert::From +pub fn aya::programs::lsm::LsmLinkId::into(self) -> U +impl core::convert::TryFrom for aya::programs::lsm::LsmLinkId where U: core::convert::Into +pub type aya::programs::lsm::LsmLinkId::Error = core::convert::Infallible +pub fn aya::programs::lsm::LsmLinkId::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::lsm::LsmLinkId where U: core::convert::TryFrom +pub type aya::programs::lsm::LsmLinkId::Error = >::Error +pub fn aya::programs::lsm::LsmLinkId::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::lsm::LsmLinkId where T: 'static + core::marker::Sized +pub fn aya::programs::lsm::LsmLinkId::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::lsm::LsmLinkId where T: core::marker::Sized +pub fn aya::programs::lsm::LsmLinkId::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::lsm::LsmLinkId where T: core::marker::Sized +pub fn aya::programs::lsm::LsmLinkId::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::lsm::LsmLinkId +pub fn aya::programs::lsm::LsmLinkId::from(t: T) -> T +pub mod aya::programs::perf_attach +pub struct aya::programs::perf_attach::PerfLink +impl aya::programs::links::Link for aya::programs::perf_attach::PerfLink +pub type aya::programs::perf_attach::PerfLink::Id = aya::programs::perf_attach::PerfLinkId +pub fn aya::programs::perf_attach::PerfLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::perf_attach::PerfLink::id(&self) -> Self::Id +impl core::fmt::Debug for aya::programs::perf_attach::PerfLink +pub fn aya::programs::perf_attach::PerfLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::perf_attach::PerfLink +impl core::marker::Sync for aya::programs::perf_attach::PerfLink +impl core::marker::Unpin for aya::programs::perf_attach::PerfLink +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_attach::PerfLink +impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_attach::PerfLink +impl core::convert::Into for aya::programs::perf_attach::PerfLink where U: core::convert::From +pub fn aya::programs::perf_attach::PerfLink::into(self) -> U +impl core::convert::TryFrom for aya::programs::perf_attach::PerfLink where U: core::convert::Into +pub type aya::programs::perf_attach::PerfLink::Error = core::convert::Infallible +pub fn aya::programs::perf_attach::PerfLink::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::perf_attach::PerfLink where U: core::convert::TryFrom +pub type aya::programs::perf_attach::PerfLink::Error = >::Error +pub fn aya::programs::perf_attach::PerfLink::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::perf_attach::PerfLink where T: 'static + core::marker::Sized +pub fn aya::programs::perf_attach::PerfLink::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::perf_attach::PerfLink where T: core::marker::Sized +pub fn aya::programs::perf_attach::PerfLink::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::perf_attach::PerfLink where T: core::marker::Sized +pub fn aya::programs::perf_attach::PerfLink::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::perf_attach::PerfLink +pub fn aya::programs::perf_attach::PerfLink::from(t: T) -> T +pub struct aya::programs::perf_attach::PerfLinkId(_) +impl core::cmp::Eq for aya::programs::perf_attach::PerfLinkId +impl core::cmp::PartialEq for aya::programs::perf_attach::PerfLinkId +pub fn aya::programs::perf_attach::PerfLinkId::eq(&self, other: &aya::programs::perf_attach::PerfLinkId) -> bool +impl core::fmt::Debug for aya::programs::perf_attach::PerfLinkId +pub fn aya::programs::perf_attach::PerfLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::hash::Hash for aya::programs::perf_attach::PerfLinkId +pub fn aya::programs::perf_attach::PerfLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H) +impl core::marker::StructuralEq for aya::programs::perf_attach::PerfLinkId +impl core::marker::StructuralPartialEq for aya::programs::perf_attach::PerfLinkId +impl core::marker::Send for aya::programs::perf_attach::PerfLinkId +impl core::marker::Sync for aya::programs::perf_attach::PerfLinkId +impl core::marker::Unpin for aya::programs::perf_attach::PerfLinkId +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_attach::PerfLinkId +impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_attach::PerfLinkId +impl core::convert::Into for aya::programs::perf_attach::PerfLinkId where U: core::convert::From +pub fn aya::programs::perf_attach::PerfLinkId::into(self) -> U +impl core::convert::TryFrom for aya::programs::perf_attach::PerfLinkId where U: core::convert::Into +pub type aya::programs::perf_attach::PerfLinkId::Error = core::convert::Infallible +pub fn aya::programs::perf_attach::PerfLinkId::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::perf_attach::PerfLinkId where U: core::convert::TryFrom +pub type aya::programs::perf_attach::PerfLinkId::Error = >::Error +pub fn aya::programs::perf_attach::PerfLinkId::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::perf_attach::PerfLinkId where T: 'static + core::marker::Sized +pub fn aya::programs::perf_attach::PerfLinkId::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::perf_attach::PerfLinkId where T: core::marker::Sized +pub fn aya::programs::perf_attach::PerfLinkId::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::perf_attach::PerfLinkId where T: core::marker::Sized +pub fn aya::programs::perf_attach::PerfLinkId::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::perf_attach::PerfLinkId +pub fn aya::programs::perf_attach::PerfLinkId::from(t: T) -> T +pub mod aya::programs::perf_event +pub use aya::programs::perf_event::perf_hw_cache_id +pub use aya::programs::perf_event::perf_hw_cache_op_id +pub use aya::programs::perf_event::perf_hw_cache_op_result_id +pub use aya::programs::perf_event::perf_hw_id +pub use aya::programs::perf_event::perf_sw_ids +pub enum aya::programs::perf_event::PerfEventScope +pub aya::programs::perf_event::PerfEventScope::AllProcessesOneCpu +pub aya::programs::perf_event::PerfEventScope::AllProcessesOneCpu::cpu: u32 +pub aya::programs::perf_event::PerfEventScope::CallingProcessAnyCpu +pub aya::programs::perf_event::PerfEventScope::CallingProcessOneCpu +pub aya::programs::perf_event::PerfEventScope::CallingProcessOneCpu::cpu: u32 +pub aya::programs::perf_event::PerfEventScope::OneProcessAnyCpu +pub aya::programs::perf_event::PerfEventScope::OneProcessAnyCpu::pid: u32 +pub aya::programs::perf_event::PerfEventScope::OneProcessOneCpu +pub aya::programs::perf_event::PerfEventScope::OneProcessOneCpu::cpu: u32 +pub aya::programs::perf_event::PerfEventScope::OneProcessOneCpu::pid: u32 +impl core::clone::Clone for aya::programs::perf_event::PerfEventScope +pub fn aya::programs::perf_event::PerfEventScope::clone(&self) -> aya::programs::perf_event::PerfEventScope +impl core::fmt::Debug for aya::programs::perf_event::PerfEventScope +pub fn aya::programs::perf_event::PerfEventScope::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::perf_event::PerfEventScope +impl core::marker::Sync for aya::programs::perf_event::PerfEventScope +impl core::marker::Unpin for aya::programs::perf_event::PerfEventScope +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfEventScope +impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfEventScope +impl core::convert::Into for aya::programs::perf_event::PerfEventScope where U: core::convert::From +pub fn aya::programs::perf_event::PerfEventScope::into(self) -> U +impl core::convert::TryFrom for aya::programs::perf_event::PerfEventScope where U: core::convert::Into +pub type aya::programs::perf_event::PerfEventScope::Error = core::convert::Infallible +pub fn aya::programs::perf_event::PerfEventScope::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::perf_event::PerfEventScope where U: core::convert::TryFrom +pub type aya::programs::perf_event::PerfEventScope::Error = >::Error +pub fn aya::programs::perf_event::PerfEventScope::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya::programs::perf_event::PerfEventScope where T: core::clone::Clone +pub type aya::programs::perf_event::PerfEventScope::Owned = T +pub fn aya::programs::perf_event::PerfEventScope::clone_into(&self, target: &mut T) +pub fn aya::programs::perf_event::PerfEventScope::to_owned(&self) -> T +impl core::any::Any for aya::programs::perf_event::PerfEventScope where T: 'static + core::marker::Sized +pub fn aya::programs::perf_event::PerfEventScope::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::perf_event::PerfEventScope where T: core::marker::Sized +pub fn aya::programs::perf_event::PerfEventScope::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::perf_event::PerfEventScope where T: core::marker::Sized +pub fn aya::programs::perf_event::PerfEventScope::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::perf_event::PerfEventScope +pub fn aya::programs::perf_event::PerfEventScope::from(t: T) -> T +#[repr(u32)] pub enum aya::programs::perf_event::PerfTypeId +pub aya::programs::perf_event::PerfTypeId::Breakpoint = 5 +pub aya::programs::perf_event::PerfTypeId::Hardware = 0 +pub aya::programs::perf_event::PerfTypeId::HwCache = 3 +pub aya::programs::perf_event::PerfTypeId::Raw = 4 +pub aya::programs::perf_event::PerfTypeId::Software = 1 +pub aya::programs::perf_event::PerfTypeId::TracePoint = 2 +impl core::clone::Clone for aya::programs::perf_event::PerfTypeId +pub fn aya::programs::perf_event::PerfTypeId::clone(&self) -> aya::programs::perf_event::PerfTypeId +impl core::fmt::Debug for aya::programs::perf_event::PerfTypeId +pub fn aya::programs::perf_event::PerfTypeId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::perf_event::PerfTypeId +impl core::marker::Sync for aya::programs::perf_event::PerfTypeId +impl core::marker::Unpin for aya::programs::perf_event::PerfTypeId +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfTypeId +impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfTypeId +impl core::convert::Into for aya::programs::perf_event::PerfTypeId where U: core::convert::From +pub fn aya::programs::perf_event::PerfTypeId::into(self) -> U +impl core::convert::TryFrom for aya::programs::perf_event::PerfTypeId where U: core::convert::Into +pub type aya::programs::perf_event::PerfTypeId::Error = core::convert::Infallible +pub fn aya::programs::perf_event::PerfTypeId::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::perf_event::PerfTypeId where U: core::convert::TryFrom +pub type aya::programs::perf_event::PerfTypeId::Error = >::Error +pub fn aya::programs::perf_event::PerfTypeId::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya::programs::perf_event::PerfTypeId where T: core::clone::Clone +pub type aya::programs::perf_event::PerfTypeId::Owned = T +pub fn aya::programs::perf_event::PerfTypeId::clone_into(&self, target: &mut T) +pub fn aya::programs::perf_event::PerfTypeId::to_owned(&self) -> T +impl core::any::Any for aya::programs::perf_event::PerfTypeId where T: 'static + core::marker::Sized +pub fn aya::programs::perf_event::PerfTypeId::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::perf_event::PerfTypeId where T: core::marker::Sized +pub fn aya::programs::perf_event::PerfTypeId::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::perf_event::PerfTypeId where T: core::marker::Sized +pub fn aya::programs::perf_event::PerfTypeId::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::perf_event::PerfTypeId +pub fn aya::programs::perf_event::PerfTypeId::from(t: T) -> T +pub enum aya::programs::perf_event::SamplePolicy +pub aya::programs::perf_event::SamplePolicy::Frequency(u64) +pub aya::programs::perf_event::SamplePolicy::Period(u64) +impl core::clone::Clone for aya::programs::perf_event::SamplePolicy +pub fn aya::programs::perf_event::SamplePolicy::clone(&self) -> aya::programs::perf_event::SamplePolicy +impl core::fmt::Debug for aya::programs::perf_event::SamplePolicy +pub fn aya::programs::perf_event::SamplePolicy::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::perf_event::SamplePolicy +impl core::marker::Sync for aya::programs::perf_event::SamplePolicy +impl core::marker::Unpin for aya::programs::perf_event::SamplePolicy +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::SamplePolicy +impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::SamplePolicy +impl core::convert::Into for aya::programs::perf_event::SamplePolicy where U: core::convert::From +pub fn aya::programs::perf_event::SamplePolicy::into(self) -> U +impl core::convert::TryFrom for aya::programs::perf_event::SamplePolicy where U: core::convert::Into +pub type aya::programs::perf_event::SamplePolicy::Error = core::convert::Infallible +pub fn aya::programs::perf_event::SamplePolicy::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::perf_event::SamplePolicy where U: core::convert::TryFrom +pub type aya::programs::perf_event::SamplePolicy::Error = >::Error +pub fn aya::programs::perf_event::SamplePolicy::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya::programs::perf_event::SamplePolicy where T: core::clone::Clone +pub type aya::programs::perf_event::SamplePolicy::Owned = T +pub fn aya::programs::perf_event::SamplePolicy::clone_into(&self, target: &mut T) +pub fn aya::programs::perf_event::SamplePolicy::to_owned(&self) -> T +impl core::any::Any for aya::programs::perf_event::SamplePolicy where T: 'static + core::marker::Sized +pub fn aya::programs::perf_event::SamplePolicy::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::perf_event::SamplePolicy where T: core::marker::Sized +pub fn aya::programs::perf_event::SamplePolicy::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::perf_event::SamplePolicy where T: core::marker::Sized +pub fn aya::programs::perf_event::SamplePolicy::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::perf_event::SamplePolicy +pub fn aya::programs::perf_event::SamplePolicy::from(t: T) -> T +pub struct aya::programs::perf_event::PerfEvent +impl aya::programs::perf_event::PerfEvent +pub fn aya::programs::perf_event::PerfEvent::attach(&mut self, perf_type: aya::programs::perf_event::PerfTypeId, config: u64, scope: aya::programs::perf_event::PerfEventScope, sample_policy: aya::programs::perf_event::SamplePolicy) -> core::result::Result +pub fn aya::programs::perf_event::PerfEvent::detach(&mut self, link_id: aya::programs::perf_event::PerfEventLinkId) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::perf_event::PerfEvent::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::perf_event::PerfEvent::take_link(&mut self, link_id: aya::programs::perf_event::PerfEventLinkId) -> core::result::Result +impl aya::programs::perf_event::PerfEvent +pub fn aya::programs::perf_event::PerfEvent::fd(&self) -> core::option::Option +impl aya::programs::perf_event::PerfEvent +pub fn aya::programs::perf_event::PerfEvent::from_pin>(path: P) -> core::result::Result +impl aya::programs::perf_event::PerfEvent +pub fn aya::programs::perf_event::PerfEvent::pin>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError> +pub fn aya::programs::perf_event::PerfEvent::unpin(self) -> core::result::Result<(), std::io::error::Error> +impl aya::programs::perf_event::PerfEvent +pub fn aya::programs::perf_event::PerfEvent::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +impl core::ops::drop::Drop for aya::programs::perf_event::PerfEvent +pub fn aya::programs::perf_event::PerfEvent::drop(&mut self) +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::perf_event::PerfEvent +pub type &'a aya::programs::perf_event::PerfEvent::Error = aya::programs::ProgramError +pub fn &'a aya::programs::perf_event::PerfEvent::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::perf_event::PerfEvent, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::perf_event::PerfEvent +pub type &'a mut aya::programs::perf_event::PerfEvent::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::perf_event::PerfEvent::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::perf_event::PerfEvent, aya::programs::ProgramError> +impl core::fmt::Debug for aya::programs::perf_event::PerfEvent +pub fn aya::programs::perf_event::PerfEvent::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::perf_event::PerfEvent +impl core::marker::Sync for aya::programs::perf_event::PerfEvent +impl core::marker::Unpin for aya::programs::perf_event::PerfEvent +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfEvent +impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfEvent +impl core::convert::Into for aya::programs::perf_event::PerfEvent where U: core::convert::From +pub fn aya::programs::perf_event::PerfEvent::into(self) -> U +impl core::convert::TryFrom for aya::programs::perf_event::PerfEvent where U: core::convert::Into +pub type aya::programs::perf_event::PerfEvent::Error = core::convert::Infallible +pub fn aya::programs::perf_event::PerfEvent::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::perf_event::PerfEvent where U: core::convert::TryFrom +pub type aya::programs::perf_event::PerfEvent::Error = >::Error +pub fn aya::programs::perf_event::PerfEvent::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::perf_event::PerfEvent where T: 'static + core::marker::Sized +pub fn aya::programs::perf_event::PerfEvent::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::perf_event::PerfEvent where T: core::marker::Sized +pub fn aya::programs::perf_event::PerfEvent::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::perf_event::PerfEvent where T: core::marker::Sized +pub fn aya::programs::perf_event::PerfEvent::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::perf_event::PerfEvent +pub fn aya::programs::perf_event::PerfEvent::from(t: T) -> T +pub struct aya::programs::perf_event::PerfEventLink(_) +impl aya::programs::links::Link for aya::programs::perf_event::PerfEventLink +pub type aya::programs::perf_event::PerfEventLink::Id = aya::programs::perf_event::PerfEventLinkId +pub fn aya::programs::perf_event::PerfEventLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::perf_event::PerfEventLink::id(&self) -> Self::Id +impl core::convert::TryFrom for aya::programs::perf_event::PerfEventLink +pub type aya::programs::perf_event::PerfEventLink::Error = aya::programs::links::LinkError +pub fn aya::programs::perf_event::PerfEventLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result +impl core::convert::TryFrom for aya::programs::links::FdLink +pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError +pub fn aya::programs::links::FdLink::try_from(value: aya::programs::perf_event::PerfEventLink) -> core::result::Result +impl core::ops::drop::Drop for aya::programs::perf_event::PerfEventLink +pub fn aya::programs::perf_event::PerfEventLink::drop(&mut self) +impl core::fmt::Debug for aya::programs::perf_event::PerfEventLink +pub fn aya::programs::perf_event::PerfEventLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::perf_event::PerfEventLink +impl core::marker::Sync for aya::programs::perf_event::PerfEventLink +impl core::marker::Unpin for aya::programs::perf_event::PerfEventLink +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfEventLink +impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfEventLink +impl core::convert::Into for aya::programs::perf_event::PerfEventLink where U: core::convert::From +pub fn aya::programs::perf_event::PerfEventLink::into(self) -> U +impl core::convert::TryFrom for aya::programs::perf_event::PerfEventLink where U: core::convert::Into +pub type aya::programs::perf_event::PerfEventLink::Error = core::convert::Infallible +pub fn aya::programs::perf_event::PerfEventLink::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::perf_event::PerfEventLink where U: core::convert::TryFrom +pub type aya::programs::perf_event::PerfEventLink::Error = >::Error +pub fn aya::programs::perf_event::PerfEventLink::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::perf_event::PerfEventLink where T: 'static + core::marker::Sized +pub fn aya::programs::perf_event::PerfEventLink::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::perf_event::PerfEventLink where T: core::marker::Sized +pub fn aya::programs::perf_event::PerfEventLink::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::perf_event::PerfEventLink where T: core::marker::Sized +pub fn aya::programs::perf_event::PerfEventLink::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::perf_event::PerfEventLink +pub fn aya::programs::perf_event::PerfEventLink::from(t: T) -> T +pub struct aya::programs::perf_event::PerfEventLinkId(_) +impl core::cmp::Eq for aya::programs::perf_event::PerfEventLinkId +impl core::cmp::PartialEq for aya::programs::perf_event::PerfEventLinkId +pub fn aya::programs::perf_event::PerfEventLinkId::eq(&self, other: &aya::programs::perf_event::PerfEventLinkId) -> bool +impl core::fmt::Debug for aya::programs::perf_event::PerfEventLinkId +pub fn aya::programs::perf_event::PerfEventLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::hash::Hash for aya::programs::perf_event::PerfEventLinkId +pub fn aya::programs::perf_event::PerfEventLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H) +impl core::marker::StructuralEq for aya::programs::perf_event::PerfEventLinkId +impl core::marker::StructuralPartialEq for aya::programs::perf_event::PerfEventLinkId +impl core::marker::Send for aya::programs::perf_event::PerfEventLinkId +impl core::marker::Sync for aya::programs::perf_event::PerfEventLinkId +impl core::marker::Unpin for aya::programs::perf_event::PerfEventLinkId +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfEventLinkId +impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfEventLinkId +impl core::convert::Into for aya::programs::perf_event::PerfEventLinkId where U: core::convert::From +pub fn aya::programs::perf_event::PerfEventLinkId::into(self) -> U +impl core::convert::TryFrom for aya::programs::perf_event::PerfEventLinkId where U: core::convert::Into +pub type aya::programs::perf_event::PerfEventLinkId::Error = core::convert::Infallible +pub fn aya::programs::perf_event::PerfEventLinkId::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::perf_event::PerfEventLinkId where U: core::convert::TryFrom +pub type aya::programs::perf_event::PerfEventLinkId::Error = >::Error +pub fn aya::programs::perf_event::PerfEventLinkId::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::perf_event::PerfEventLinkId where T: 'static + core::marker::Sized +pub fn aya::programs::perf_event::PerfEventLinkId::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::perf_event::PerfEventLinkId where T: core::marker::Sized +pub fn aya::programs::perf_event::PerfEventLinkId::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::perf_event::PerfEventLinkId where T: core::marker::Sized +pub fn aya::programs::perf_event::PerfEventLinkId::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::perf_event::PerfEventLinkId +pub fn aya::programs::perf_event::PerfEventLinkId::from(t: T) -> T +pub mod aya::programs::tc +pub enum aya::programs::tc::TcAttachType +pub aya::programs::tc::TcAttachType::Custom(u32) +pub aya::programs::tc::TcAttachType::Egress +pub aya::programs::tc::TcAttachType::Ingress +impl core::clone::Clone for aya::programs::tc::TcAttachType +pub fn aya::programs::tc::TcAttachType::clone(&self) -> aya::programs::tc::TcAttachType +impl core::cmp::Eq for aya::programs::tc::TcAttachType +impl core::cmp::PartialEq for aya::programs::tc::TcAttachType +pub fn aya::programs::tc::TcAttachType::eq(&self, other: &aya::programs::tc::TcAttachType) -> bool +impl core::fmt::Debug for aya::programs::tc::TcAttachType +pub fn aya::programs::tc::TcAttachType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::hash::Hash for aya::programs::tc::TcAttachType +pub fn aya::programs::tc::TcAttachType::hash<__H: core::hash::Hasher>(&self, state: &mut __H) +impl core::marker::Copy for aya::programs::tc::TcAttachType +impl core::marker::StructuralEq for aya::programs::tc::TcAttachType +impl core::marker::StructuralPartialEq for aya::programs::tc::TcAttachType +impl core::marker::Send for aya::programs::tc::TcAttachType +impl core::marker::Sync for aya::programs::tc::TcAttachType +impl core::marker::Unpin for aya::programs::tc::TcAttachType +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::TcAttachType +impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::TcAttachType +impl core::convert::Into for aya::programs::tc::TcAttachType where U: core::convert::From +pub fn aya::programs::tc::TcAttachType::into(self) -> U +impl core::convert::TryFrom for aya::programs::tc::TcAttachType where U: core::convert::Into +pub type aya::programs::tc::TcAttachType::Error = core::convert::Infallible +pub fn aya::programs::tc::TcAttachType::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::tc::TcAttachType where U: core::convert::TryFrom +pub type aya::programs::tc::TcAttachType::Error = >::Error +pub fn aya::programs::tc::TcAttachType::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya::programs::tc::TcAttachType where T: core::clone::Clone +pub type aya::programs::tc::TcAttachType::Owned = T +pub fn aya::programs::tc::TcAttachType::clone_into(&self, target: &mut T) +pub fn aya::programs::tc::TcAttachType::to_owned(&self) -> T +impl core::any::Any for aya::programs::tc::TcAttachType where T: 'static + core::marker::Sized +pub fn aya::programs::tc::TcAttachType::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::tc::TcAttachType where T: core::marker::Sized +pub fn aya::programs::tc::TcAttachType::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::tc::TcAttachType where T: core::marker::Sized +pub fn aya::programs::tc::TcAttachType::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::tc::TcAttachType +pub fn aya::programs::tc::TcAttachType::from(t: T) -> T +pub enum aya::programs::tc::TcError +pub aya::programs::tc::TcError::AlreadyAttached +pub aya::programs::tc::TcError::NetlinkError +pub aya::programs::tc::TcError::NetlinkError::io_error: std::io::error::Error +impl core::convert::From for aya::programs::ProgramError +pub fn aya::programs::ProgramError::from(source: aya::programs::tc::TcError) -> Self +impl core::error::Error for aya::programs::tc::TcError +pub fn aya::programs::tc::TcError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)> +impl core::fmt::Display for aya::programs::tc::TcError +pub fn aya::programs::tc::TcError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::fmt::Debug for aya::programs::tc::TcError +pub fn aya::programs::tc::TcError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::tc::TcError +impl core::marker::Sync for aya::programs::tc::TcError +impl core::marker::Unpin for aya::programs::tc::TcError +impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::TcError +impl !core::panic::unwind_safe::UnwindSafe for aya::programs::tc::TcError +impl core::any::Provider for aya::programs::tc::TcError where E: core::error::Error + core::marker::Sized +pub fn aya::programs::tc::TcError::provide<'a>(&'a self, demand: &mut core::any::Demand<'a>) +impl core::convert::Into for aya::programs::tc::TcError where U: core::convert::From +pub fn aya::programs::tc::TcError::into(self) -> U +impl core::convert::TryFrom for aya::programs::tc::TcError where U: core::convert::Into +pub type aya::programs::tc::TcError::Error = core::convert::Infallible +pub fn aya::programs::tc::TcError::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::tc::TcError where U: core::convert::TryFrom +pub type aya::programs::tc::TcError::Error = >::Error +pub fn aya::programs::tc::TcError::try_into(self) -> core::result::Result>::Error> +impl alloc::string::ToString for aya::programs::tc::TcError where T: core::fmt::Display + core::marker::Sized +pub fn aya::programs::tc::TcError::to_string(&self) -> alloc::string::String +impl core::any::Any for aya::programs::tc::TcError where T: 'static + core::marker::Sized +pub fn aya::programs::tc::TcError::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::tc::TcError where T: core::marker::Sized +pub fn aya::programs::tc::TcError::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::tc::TcError where T: core::marker::Sized +pub fn aya::programs::tc::TcError::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::tc::TcError +pub fn aya::programs::tc::TcError::from(t: T) -> T +pub struct aya::programs::tc::SchedClassifier +impl aya::programs::tc::SchedClassifier +pub fn aya::programs::tc::SchedClassifier::attach(&mut self, interface: &str, attach_type: aya::programs::tc::TcAttachType) -> core::result::Result +pub fn aya::programs::tc::SchedClassifier::attach_with_options(&mut self, interface: &str, attach_type: aya::programs::tc::TcAttachType, options: aya::programs::tc::TcOptions) -> core::result::Result +pub fn aya::programs::tc::SchedClassifier::detach(&mut self, link_id: aya::programs::tc::SchedClassifierLinkId) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::tc::SchedClassifier::from_pin>(path: P) -> core::result::Result +pub fn aya::programs::tc::SchedClassifier::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::tc::SchedClassifier::take_link(&mut self, link_id: aya::programs::tc::SchedClassifierLinkId) -> core::result::Result +impl aya::programs::tc::SchedClassifier +pub fn aya::programs::tc::SchedClassifier::fd(&self) -> core::option::Option +impl aya::programs::tc::SchedClassifier +pub fn aya::programs::tc::SchedClassifier::pin>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError> +pub fn aya::programs::tc::SchedClassifier::unpin(self) -> core::result::Result<(), std::io::error::Error> +impl aya::programs::tc::SchedClassifier +pub fn aya::programs::tc::SchedClassifier::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +impl core::ops::drop::Drop for aya::programs::tc::SchedClassifier +pub fn aya::programs::tc::SchedClassifier::drop(&mut self) +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::tc::SchedClassifier +pub type &'a aya::programs::tc::SchedClassifier::Error = aya::programs::ProgramError +pub fn &'a aya::programs::tc::SchedClassifier::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::tc::SchedClassifier, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::tc::SchedClassifier +pub type &'a mut aya::programs::tc::SchedClassifier::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::tc::SchedClassifier::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::tc::SchedClassifier, aya::programs::ProgramError> +impl core::fmt::Debug for aya::programs::tc::SchedClassifier +pub fn aya::programs::tc::SchedClassifier::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::tc::SchedClassifier +impl core::marker::Sync for aya::programs::tc::SchedClassifier +impl core::marker::Unpin for aya::programs::tc::SchedClassifier +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::SchedClassifier +impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::SchedClassifier +impl core::convert::Into for aya::programs::tc::SchedClassifier where U: core::convert::From +pub fn aya::programs::tc::SchedClassifier::into(self) -> U +impl core::convert::TryFrom for aya::programs::tc::SchedClassifier where U: core::convert::Into +pub type aya::programs::tc::SchedClassifier::Error = core::convert::Infallible +pub fn aya::programs::tc::SchedClassifier::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::tc::SchedClassifier where U: core::convert::TryFrom +pub type aya::programs::tc::SchedClassifier::Error = >::Error +pub fn aya::programs::tc::SchedClassifier::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::tc::SchedClassifier where T: 'static + core::marker::Sized +pub fn aya::programs::tc::SchedClassifier::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::tc::SchedClassifier where T: core::marker::Sized +pub fn aya::programs::tc::SchedClassifier::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::tc::SchedClassifier where T: core::marker::Sized +pub fn aya::programs::tc::SchedClassifier::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::tc::SchedClassifier +pub fn aya::programs::tc::SchedClassifier::from(t: T) -> T +pub struct aya::programs::tc::SchedClassifierLink(_) +impl aya::programs::tc::SchedClassifierLink +pub fn aya::programs::tc::SchedClassifierLink::attached(if_name: &str, attach_type: aya::programs::tc::TcAttachType, priority: u16, handle: u32) -> core::result::Result +pub fn aya::programs::tc::SchedClassifierLink::handle(&self) -> u32 +pub fn aya::programs::tc::SchedClassifierLink::priority(&self) -> u16 +impl aya::programs::links::Link for aya::programs::tc::SchedClassifierLink +pub type aya::programs::tc::SchedClassifierLink::Id = aya::programs::tc::SchedClassifierLinkId +pub fn aya::programs::tc::SchedClassifierLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::tc::SchedClassifierLink::id(&self) -> Self::Id +impl core::ops::drop::Drop for aya::programs::tc::SchedClassifierLink +pub fn aya::programs::tc::SchedClassifierLink::drop(&mut self) +impl core::fmt::Debug for aya::programs::tc::SchedClassifierLink +pub fn aya::programs::tc::SchedClassifierLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::tc::SchedClassifierLink +impl core::marker::Sync for aya::programs::tc::SchedClassifierLink +impl core::marker::Unpin for aya::programs::tc::SchedClassifierLink +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::SchedClassifierLink +impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::SchedClassifierLink +impl core::convert::Into for aya::programs::tc::SchedClassifierLink where U: core::convert::From +pub fn aya::programs::tc::SchedClassifierLink::into(self) -> U +impl core::convert::TryFrom for aya::programs::tc::SchedClassifierLink where U: core::convert::Into +pub type aya::programs::tc::SchedClassifierLink::Error = core::convert::Infallible +pub fn aya::programs::tc::SchedClassifierLink::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::tc::SchedClassifierLink where U: core::convert::TryFrom +pub type aya::programs::tc::SchedClassifierLink::Error = >::Error +pub fn aya::programs::tc::SchedClassifierLink::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::tc::SchedClassifierLink where T: 'static + core::marker::Sized +pub fn aya::programs::tc::SchedClassifierLink::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::tc::SchedClassifierLink where T: core::marker::Sized +pub fn aya::programs::tc::SchedClassifierLink::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::tc::SchedClassifierLink where T: core::marker::Sized +pub fn aya::programs::tc::SchedClassifierLink::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::tc::SchedClassifierLink +pub fn aya::programs::tc::SchedClassifierLink::from(t: T) -> T +pub struct aya::programs::tc::SchedClassifierLinkId(_) +impl core::cmp::Eq for aya::programs::tc::SchedClassifierLinkId +impl core::cmp::PartialEq for aya::programs::tc::SchedClassifierLinkId +pub fn aya::programs::tc::SchedClassifierLinkId::eq(&self, other: &aya::programs::tc::SchedClassifierLinkId) -> bool +impl core::fmt::Debug for aya::programs::tc::SchedClassifierLinkId +pub fn aya::programs::tc::SchedClassifierLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::hash::Hash for aya::programs::tc::SchedClassifierLinkId +pub fn aya::programs::tc::SchedClassifierLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H) +impl core::marker::StructuralEq for aya::programs::tc::SchedClassifierLinkId +impl core::marker::StructuralPartialEq for aya::programs::tc::SchedClassifierLinkId +impl core::marker::Send for aya::programs::tc::SchedClassifierLinkId +impl core::marker::Sync for aya::programs::tc::SchedClassifierLinkId +impl core::marker::Unpin for aya::programs::tc::SchedClassifierLinkId +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::SchedClassifierLinkId +impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::SchedClassifierLinkId +impl core::convert::Into for aya::programs::tc::SchedClassifierLinkId where U: core::convert::From +pub fn aya::programs::tc::SchedClassifierLinkId::into(self) -> U +impl core::convert::TryFrom for aya::programs::tc::SchedClassifierLinkId where U: core::convert::Into +pub type aya::programs::tc::SchedClassifierLinkId::Error = core::convert::Infallible +pub fn aya::programs::tc::SchedClassifierLinkId::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::tc::SchedClassifierLinkId where U: core::convert::TryFrom +pub type aya::programs::tc::SchedClassifierLinkId::Error = >::Error +pub fn aya::programs::tc::SchedClassifierLinkId::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::tc::SchedClassifierLinkId where T: 'static + core::marker::Sized +pub fn aya::programs::tc::SchedClassifierLinkId::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::tc::SchedClassifierLinkId where T: core::marker::Sized +pub fn aya::programs::tc::SchedClassifierLinkId::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::tc::SchedClassifierLinkId where T: core::marker::Sized +pub fn aya::programs::tc::SchedClassifierLinkId::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::tc::SchedClassifierLinkId +pub fn aya::programs::tc::SchedClassifierLinkId::from(t: T) -> T +pub struct aya::programs::tc::TcOptions +pub aya::programs::tc::TcOptions::handle: u32 +pub aya::programs::tc::TcOptions::priority: u16 +impl core::default::Default for aya::programs::tc::TcOptions +pub fn aya::programs::tc::TcOptions::default() -> aya::programs::tc::TcOptions +impl core::marker::Send for aya::programs::tc::TcOptions +impl core::marker::Sync for aya::programs::tc::TcOptions +impl core::marker::Unpin for aya::programs::tc::TcOptions +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::TcOptions +impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::TcOptions +impl core::convert::Into for aya::programs::tc::TcOptions where U: core::convert::From +pub fn aya::programs::tc::TcOptions::into(self) -> U +impl core::convert::TryFrom for aya::programs::tc::TcOptions where U: core::convert::Into +pub type aya::programs::tc::TcOptions::Error = core::convert::Infallible +pub fn aya::programs::tc::TcOptions::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::tc::TcOptions where U: core::convert::TryFrom +pub type aya::programs::tc::TcOptions::Error = >::Error +pub fn aya::programs::tc::TcOptions::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::tc::TcOptions where T: 'static + core::marker::Sized +pub fn aya::programs::tc::TcOptions::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::tc::TcOptions where T: core::marker::Sized +pub fn aya::programs::tc::TcOptions::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::tc::TcOptions where T: core::marker::Sized +pub fn aya::programs::tc::TcOptions::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::tc::TcOptions +pub fn aya::programs::tc::TcOptions::from(t: T) -> T +pub fn aya::programs::tc::qdisc_add_clsact(if_name: &str) -> core::result::Result<(), std::io::error::Error> +pub fn aya::programs::tc::qdisc_detach_program(if_name: &str, attach_type: aya::programs::tc::TcAttachType, name: &str) -> core::result::Result<(), std::io::error::Error> +pub mod aya::programs::tp_btf +pub struct aya::programs::tp_btf::BtfTracePoint +impl aya::programs::tp_btf::BtfTracePoint +pub fn aya::programs::tp_btf::BtfTracePoint::attach(&mut self) -> core::result::Result +pub fn aya::programs::tp_btf::BtfTracePoint::detach(&mut self, link_id: aya::programs::tp_btf::BtfTracePointLinkId) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::tp_btf::BtfTracePoint::load(&mut self, tracepoint: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::tp_btf::BtfTracePoint::take_link(&mut self, link_id: aya::programs::tp_btf::BtfTracePointLinkId) -> core::result::Result +impl aya::programs::tp_btf::BtfTracePoint +pub fn aya::programs::tp_btf::BtfTracePoint::fd(&self) -> core::option::Option +impl aya::programs::tp_btf::BtfTracePoint +pub fn aya::programs::tp_btf::BtfTracePoint::from_pin>(path: P) -> core::result::Result +impl aya::programs::tp_btf::BtfTracePoint +pub fn aya::programs::tp_btf::BtfTracePoint::pin>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError> +pub fn aya::programs::tp_btf::BtfTracePoint::unpin(self) -> core::result::Result<(), std::io::error::Error> +impl aya::programs::tp_btf::BtfTracePoint +pub fn aya::programs::tp_btf::BtfTracePoint::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +impl core::ops::drop::Drop for aya::programs::tp_btf::BtfTracePoint +pub fn aya::programs::tp_btf::BtfTracePoint::drop(&mut self) +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::tp_btf::BtfTracePoint +pub type &'a aya::programs::tp_btf::BtfTracePoint::Error = aya::programs::ProgramError +pub fn &'a aya::programs::tp_btf::BtfTracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::tp_btf::BtfTracePoint, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::tp_btf::BtfTracePoint +pub type &'a mut aya::programs::tp_btf::BtfTracePoint::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::tp_btf::BtfTracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::tp_btf::BtfTracePoint, aya::programs::ProgramError> +impl core::fmt::Debug for aya::programs::tp_btf::BtfTracePoint +pub fn aya::programs::tp_btf::BtfTracePoint::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::tp_btf::BtfTracePoint +impl core::marker::Sync for aya::programs::tp_btf::BtfTracePoint +impl core::marker::Unpin for aya::programs::tp_btf::BtfTracePoint +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tp_btf::BtfTracePoint +impl core::panic::unwind_safe::UnwindSafe for aya::programs::tp_btf::BtfTracePoint +impl core::convert::Into for aya::programs::tp_btf::BtfTracePoint where U: core::convert::From +pub fn aya::programs::tp_btf::BtfTracePoint::into(self) -> U +impl core::convert::TryFrom for aya::programs::tp_btf::BtfTracePoint where U: core::convert::Into +pub type aya::programs::tp_btf::BtfTracePoint::Error = core::convert::Infallible +pub fn aya::programs::tp_btf::BtfTracePoint::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::tp_btf::BtfTracePoint where U: core::convert::TryFrom +pub type aya::programs::tp_btf::BtfTracePoint::Error = >::Error +pub fn aya::programs::tp_btf::BtfTracePoint::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::tp_btf::BtfTracePoint where T: 'static + core::marker::Sized +pub fn aya::programs::tp_btf::BtfTracePoint::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::tp_btf::BtfTracePoint where T: core::marker::Sized +pub fn aya::programs::tp_btf::BtfTracePoint::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::tp_btf::BtfTracePoint where T: core::marker::Sized +pub fn aya::programs::tp_btf::BtfTracePoint::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::tp_btf::BtfTracePoint +pub fn aya::programs::tp_btf::BtfTracePoint::from(t: T) -> T +pub struct aya::programs::tp_btf::BtfTracePointLink(_) +impl aya::programs::links::Link for aya::programs::tp_btf::BtfTracePointLink +pub type aya::programs::tp_btf::BtfTracePointLink::Id = aya::programs::tp_btf::BtfTracePointLinkId +pub fn aya::programs::tp_btf::BtfTracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::tp_btf::BtfTracePointLink::id(&self) -> Self::Id +impl core::convert::From for aya::programs::tp_btf::BtfTracePointLink +pub fn aya::programs::tp_btf::BtfTracePointLink::from(b: aya::programs::links::FdLink) -> aya::programs::tp_btf::BtfTracePointLink +impl core::convert::From for aya::programs::links::FdLink +pub fn aya::programs::links::FdLink::from(w: aya::programs::tp_btf::BtfTracePointLink) -> aya::programs::links::FdLink +impl core::ops::drop::Drop for aya::programs::tp_btf::BtfTracePointLink +pub fn aya::programs::tp_btf::BtfTracePointLink::drop(&mut self) +impl core::fmt::Debug for aya::programs::tp_btf::BtfTracePointLink +pub fn aya::programs::tp_btf::BtfTracePointLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::tp_btf::BtfTracePointLink +impl core::marker::Sync for aya::programs::tp_btf::BtfTracePointLink +impl core::marker::Unpin for aya::programs::tp_btf::BtfTracePointLink +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tp_btf::BtfTracePointLink +impl core::panic::unwind_safe::UnwindSafe for aya::programs::tp_btf::BtfTracePointLink +impl core::convert::Into for aya::programs::tp_btf::BtfTracePointLink where U: core::convert::From +pub fn aya::programs::tp_btf::BtfTracePointLink::into(self) -> U +impl core::convert::TryFrom for aya::programs::tp_btf::BtfTracePointLink where U: core::convert::Into +pub type aya::programs::tp_btf::BtfTracePointLink::Error = core::convert::Infallible +pub fn aya::programs::tp_btf::BtfTracePointLink::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::tp_btf::BtfTracePointLink where U: core::convert::TryFrom +pub type aya::programs::tp_btf::BtfTracePointLink::Error = >::Error +pub fn aya::programs::tp_btf::BtfTracePointLink::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::tp_btf::BtfTracePointLink where T: 'static + core::marker::Sized +pub fn aya::programs::tp_btf::BtfTracePointLink::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::tp_btf::BtfTracePointLink where T: core::marker::Sized +pub fn aya::programs::tp_btf::BtfTracePointLink::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::tp_btf::BtfTracePointLink where T: core::marker::Sized +pub fn aya::programs::tp_btf::BtfTracePointLink::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::tp_btf::BtfTracePointLink +pub fn aya::programs::tp_btf::BtfTracePointLink::from(t: T) -> T +pub struct aya::programs::tp_btf::BtfTracePointLinkId(_) +impl core::cmp::Eq for aya::programs::tp_btf::BtfTracePointLinkId +impl core::cmp::PartialEq for aya::programs::tp_btf::BtfTracePointLinkId +pub fn aya::programs::tp_btf::BtfTracePointLinkId::eq(&self, other: &aya::programs::tp_btf::BtfTracePointLinkId) -> bool +impl core::fmt::Debug for aya::programs::tp_btf::BtfTracePointLinkId +pub fn aya::programs::tp_btf::BtfTracePointLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::hash::Hash for aya::programs::tp_btf::BtfTracePointLinkId +pub fn aya::programs::tp_btf::BtfTracePointLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H) +impl core::marker::StructuralEq for aya::programs::tp_btf::BtfTracePointLinkId +impl core::marker::StructuralPartialEq for aya::programs::tp_btf::BtfTracePointLinkId +impl core::marker::Send for aya::programs::tp_btf::BtfTracePointLinkId +impl core::marker::Sync for aya::programs::tp_btf::BtfTracePointLinkId +impl core::marker::Unpin for aya::programs::tp_btf::BtfTracePointLinkId +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tp_btf::BtfTracePointLinkId +impl core::panic::unwind_safe::UnwindSafe for aya::programs::tp_btf::BtfTracePointLinkId +impl core::convert::Into for aya::programs::tp_btf::BtfTracePointLinkId where U: core::convert::From +pub fn aya::programs::tp_btf::BtfTracePointLinkId::into(self) -> U +impl core::convert::TryFrom for aya::programs::tp_btf::BtfTracePointLinkId where U: core::convert::Into +pub type aya::programs::tp_btf::BtfTracePointLinkId::Error = core::convert::Infallible +pub fn aya::programs::tp_btf::BtfTracePointLinkId::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::tp_btf::BtfTracePointLinkId where U: core::convert::TryFrom +pub type aya::programs::tp_btf::BtfTracePointLinkId::Error = >::Error +pub fn aya::programs::tp_btf::BtfTracePointLinkId::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::tp_btf::BtfTracePointLinkId where T: 'static + core::marker::Sized +pub fn aya::programs::tp_btf::BtfTracePointLinkId::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::tp_btf::BtfTracePointLinkId where T: core::marker::Sized +pub fn aya::programs::tp_btf::BtfTracePointLinkId::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::tp_btf::BtfTracePointLinkId where T: core::marker::Sized +pub fn aya::programs::tp_btf::BtfTracePointLinkId::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::tp_btf::BtfTracePointLinkId +pub fn aya::programs::tp_btf::BtfTracePointLinkId::from(t: T) -> T +pub mod aya::programs::trace_point +pub enum aya::programs::trace_point::TracePointError +pub aya::programs::trace_point::TracePointError::FileError +pub aya::programs::trace_point::TracePointError::FileError::filename: alloc::string::String +pub aya::programs::trace_point::TracePointError::FileError::io_error: std::io::error::Error +impl core::convert::From for aya::programs::ProgramError +pub fn aya::programs::ProgramError::from(source: aya::programs::trace_point::TracePointError) -> Self +impl core::error::Error for aya::programs::trace_point::TracePointError +pub fn aya::programs::trace_point::TracePointError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)> +impl core::fmt::Display for aya::programs::trace_point::TracePointError +pub fn aya::programs::trace_point::TracePointError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::fmt::Debug for aya::programs::trace_point::TracePointError +pub fn aya::programs::trace_point::TracePointError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::trace_point::TracePointError +impl core::marker::Sync for aya::programs::trace_point::TracePointError +impl core::marker::Unpin for aya::programs::trace_point::TracePointError +impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::trace_point::TracePointError +impl !core::panic::unwind_safe::UnwindSafe for aya::programs::trace_point::TracePointError +impl core::any::Provider for aya::programs::trace_point::TracePointError where E: core::error::Error + core::marker::Sized +pub fn aya::programs::trace_point::TracePointError::provide<'a>(&'a self, demand: &mut core::any::Demand<'a>) +impl core::convert::Into for aya::programs::trace_point::TracePointError where U: core::convert::From +pub fn aya::programs::trace_point::TracePointError::into(self) -> U +impl core::convert::TryFrom for aya::programs::trace_point::TracePointError where U: core::convert::Into +pub type aya::programs::trace_point::TracePointError::Error = core::convert::Infallible +pub fn aya::programs::trace_point::TracePointError::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::trace_point::TracePointError where U: core::convert::TryFrom +pub type aya::programs::trace_point::TracePointError::Error = >::Error +pub fn aya::programs::trace_point::TracePointError::try_into(self) -> core::result::Result>::Error> +impl alloc::string::ToString for aya::programs::trace_point::TracePointError where T: core::fmt::Display + core::marker::Sized +pub fn aya::programs::trace_point::TracePointError::to_string(&self) -> alloc::string::String +impl core::any::Any for aya::programs::trace_point::TracePointError where T: 'static + core::marker::Sized +pub fn aya::programs::trace_point::TracePointError::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::trace_point::TracePointError where T: core::marker::Sized +pub fn aya::programs::trace_point::TracePointError::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::trace_point::TracePointError where T: core::marker::Sized +pub fn aya::programs::trace_point::TracePointError::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::trace_point::TracePointError +pub fn aya::programs::trace_point::TracePointError::from(t: T) -> T +pub struct aya::programs::trace_point::TracePoint +impl aya::programs::trace_point::TracePoint +pub fn aya::programs::trace_point::TracePoint::attach(&mut self, category: &str, name: &str) -> core::result::Result +pub fn aya::programs::trace_point::TracePoint::detach(&mut self, link_id: aya::programs::trace_point::TracePointLinkId) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::trace_point::TracePoint::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::trace_point::TracePoint::take_link(&mut self, link_id: aya::programs::trace_point::TracePointLinkId) -> core::result::Result +impl aya::programs::trace_point::TracePoint +pub fn aya::programs::trace_point::TracePoint::fd(&self) -> core::option::Option +impl aya::programs::trace_point::TracePoint +pub fn aya::programs::trace_point::TracePoint::from_pin>(path: P) -> core::result::Result +impl aya::programs::trace_point::TracePoint +pub fn aya::programs::trace_point::TracePoint::pin>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError> +pub fn aya::programs::trace_point::TracePoint::unpin(self) -> core::result::Result<(), std::io::error::Error> +impl aya::programs::trace_point::TracePoint +pub fn aya::programs::trace_point::TracePoint::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +impl core::ops::drop::Drop for aya::programs::trace_point::TracePoint +pub fn aya::programs::trace_point::TracePoint::drop(&mut self) +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::trace_point::TracePoint +pub type &'a aya::programs::trace_point::TracePoint::Error = aya::programs::ProgramError +pub fn &'a aya::programs::trace_point::TracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::trace_point::TracePoint, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::trace_point::TracePoint +pub type &'a mut aya::programs::trace_point::TracePoint::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::trace_point::TracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::trace_point::TracePoint, aya::programs::ProgramError> +impl core::fmt::Debug for aya::programs::trace_point::TracePoint +pub fn aya::programs::trace_point::TracePoint::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::trace_point::TracePoint +impl core::marker::Sync for aya::programs::trace_point::TracePoint +impl core::marker::Unpin for aya::programs::trace_point::TracePoint +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::trace_point::TracePoint +impl core::panic::unwind_safe::UnwindSafe for aya::programs::trace_point::TracePoint +impl core::convert::Into for aya::programs::trace_point::TracePoint where U: core::convert::From +pub fn aya::programs::trace_point::TracePoint::into(self) -> U +impl core::convert::TryFrom for aya::programs::trace_point::TracePoint where U: core::convert::Into +pub type aya::programs::trace_point::TracePoint::Error = core::convert::Infallible +pub fn aya::programs::trace_point::TracePoint::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::trace_point::TracePoint where U: core::convert::TryFrom +pub type aya::programs::trace_point::TracePoint::Error = >::Error +pub fn aya::programs::trace_point::TracePoint::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::trace_point::TracePoint where T: 'static + core::marker::Sized +pub fn aya::programs::trace_point::TracePoint::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::trace_point::TracePoint where T: core::marker::Sized +pub fn aya::programs::trace_point::TracePoint::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::trace_point::TracePoint where T: core::marker::Sized +pub fn aya::programs::trace_point::TracePoint::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::trace_point::TracePoint +pub fn aya::programs::trace_point::TracePoint::from(t: T) -> T +pub struct aya::programs::trace_point::TracePointLink(_) +impl aya::programs::links::Link for aya::programs::trace_point::TracePointLink +pub type aya::programs::trace_point::TracePointLink::Id = aya::programs::trace_point::TracePointLinkId +pub fn aya::programs::trace_point::TracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::trace_point::TracePointLink::id(&self) -> Self::Id +impl core::convert::TryFrom for aya::programs::trace_point::TracePointLink +pub type aya::programs::trace_point::TracePointLink::Error = aya::programs::links::LinkError +pub fn aya::programs::trace_point::TracePointLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result +impl core::convert::TryFrom for aya::programs::links::FdLink +pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError +pub fn aya::programs::links::FdLink::try_from(value: aya::programs::trace_point::TracePointLink) -> core::result::Result +impl core::ops::drop::Drop for aya::programs::trace_point::TracePointLink +pub fn aya::programs::trace_point::TracePointLink::drop(&mut self) +impl core::fmt::Debug for aya::programs::trace_point::TracePointLink +pub fn aya::programs::trace_point::TracePointLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::trace_point::TracePointLink +impl core::marker::Sync for aya::programs::trace_point::TracePointLink +impl core::marker::Unpin for aya::programs::trace_point::TracePointLink +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::trace_point::TracePointLink +impl core::panic::unwind_safe::UnwindSafe for aya::programs::trace_point::TracePointLink +impl core::convert::Into for aya::programs::trace_point::TracePointLink where U: core::convert::From +pub fn aya::programs::trace_point::TracePointLink::into(self) -> U +impl core::convert::TryFrom for aya::programs::trace_point::TracePointLink where U: core::convert::Into +pub type aya::programs::trace_point::TracePointLink::Error = core::convert::Infallible +pub fn aya::programs::trace_point::TracePointLink::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::trace_point::TracePointLink where U: core::convert::TryFrom +pub type aya::programs::trace_point::TracePointLink::Error = >::Error +pub fn aya::programs::trace_point::TracePointLink::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::trace_point::TracePointLink where T: 'static + core::marker::Sized +pub fn aya::programs::trace_point::TracePointLink::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::trace_point::TracePointLink where T: core::marker::Sized +pub fn aya::programs::trace_point::TracePointLink::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::trace_point::TracePointLink where T: core::marker::Sized +pub fn aya::programs::trace_point::TracePointLink::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::trace_point::TracePointLink +pub fn aya::programs::trace_point::TracePointLink::from(t: T) -> T +pub struct aya::programs::trace_point::TracePointLinkId(_) +impl core::cmp::Eq for aya::programs::trace_point::TracePointLinkId +impl core::cmp::PartialEq for aya::programs::trace_point::TracePointLinkId +pub fn aya::programs::trace_point::TracePointLinkId::eq(&self, other: &aya::programs::trace_point::TracePointLinkId) -> bool +impl core::fmt::Debug for aya::programs::trace_point::TracePointLinkId +pub fn aya::programs::trace_point::TracePointLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::hash::Hash for aya::programs::trace_point::TracePointLinkId +pub fn aya::programs::trace_point::TracePointLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H) +impl core::marker::StructuralEq for aya::programs::trace_point::TracePointLinkId +impl core::marker::StructuralPartialEq for aya::programs::trace_point::TracePointLinkId +impl core::marker::Send for aya::programs::trace_point::TracePointLinkId +impl core::marker::Sync for aya::programs::trace_point::TracePointLinkId +impl core::marker::Unpin for aya::programs::trace_point::TracePointLinkId +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::trace_point::TracePointLinkId +impl core::panic::unwind_safe::UnwindSafe for aya::programs::trace_point::TracePointLinkId +impl core::convert::Into for aya::programs::trace_point::TracePointLinkId where U: core::convert::From +pub fn aya::programs::trace_point::TracePointLinkId::into(self) -> U +impl core::convert::TryFrom for aya::programs::trace_point::TracePointLinkId where U: core::convert::Into +pub type aya::programs::trace_point::TracePointLinkId::Error = core::convert::Infallible +pub fn aya::programs::trace_point::TracePointLinkId::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::trace_point::TracePointLinkId where U: core::convert::TryFrom +pub type aya::programs::trace_point::TracePointLinkId::Error = >::Error +pub fn aya::programs::trace_point::TracePointLinkId::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::trace_point::TracePointLinkId where T: 'static + core::marker::Sized +pub fn aya::programs::trace_point::TracePointLinkId::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::trace_point::TracePointLinkId where T: core::marker::Sized +pub fn aya::programs::trace_point::TracePointLinkId::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::trace_point::TracePointLinkId where T: core::marker::Sized +pub fn aya::programs::trace_point::TracePointLinkId::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::trace_point::TracePointLinkId +pub fn aya::programs::trace_point::TracePointLinkId::from(t: T) -> T +pub mod aya::programs::uprobe +pub enum aya::programs::uprobe::UProbeError +pub aya::programs::uprobe::UProbeError::FileError +pub aya::programs::uprobe::UProbeError::FileError::filename: alloc::string::String +pub aya::programs::uprobe::UProbeError::FileError::io_error: std::io::error::Error +pub aya::programs::uprobe::UProbeError::InvalidLdSoCache +pub aya::programs::uprobe::UProbeError::InvalidLdSoCache::io_error: alloc::sync::Arc +pub aya::programs::uprobe::UProbeError::InvalidTarget +pub aya::programs::uprobe::UProbeError::InvalidTarget::path: std::path::PathBuf +pub aya::programs::uprobe::UProbeError::SymbolError +pub aya::programs::uprobe::UProbeError::SymbolError::error: alloc::boxed::Box<(dyn core::error::Error + core::marker::Send + core::marker::Sync)> +pub aya::programs::uprobe::UProbeError::SymbolError::symbol: alloc::string::String +impl core::convert::From for aya::programs::ProgramError +pub fn aya::programs::ProgramError::from(source: aya::programs::uprobe::UProbeError) -> Self +impl core::error::Error for aya::programs::uprobe::UProbeError +pub fn aya::programs::uprobe::UProbeError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)> +impl core::fmt::Display for aya::programs::uprobe::UProbeError +pub fn aya::programs::uprobe::UProbeError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::fmt::Debug for aya::programs::uprobe::UProbeError +pub fn aya::programs::uprobe::UProbeError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::uprobe::UProbeError +impl core::marker::Sync for aya::programs::uprobe::UProbeError +impl core::marker::Unpin for aya::programs::uprobe::UProbeError +impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbeError +impl !core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbeError +impl core::any::Provider for aya::programs::uprobe::UProbeError where E: core::error::Error + core::marker::Sized +pub fn aya::programs::uprobe::UProbeError::provide<'a>(&'a self, demand: &mut core::any::Demand<'a>) +impl core::convert::Into for aya::programs::uprobe::UProbeError where U: core::convert::From +pub fn aya::programs::uprobe::UProbeError::into(self) -> U +impl core::convert::TryFrom for aya::programs::uprobe::UProbeError where U: core::convert::Into +pub type aya::programs::uprobe::UProbeError::Error = core::convert::Infallible +pub fn aya::programs::uprobe::UProbeError::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::uprobe::UProbeError where U: core::convert::TryFrom +pub type aya::programs::uprobe::UProbeError::Error = >::Error +pub fn aya::programs::uprobe::UProbeError::try_into(self) -> core::result::Result>::Error> +impl alloc::string::ToString for aya::programs::uprobe::UProbeError where T: core::fmt::Display + core::marker::Sized +pub fn aya::programs::uprobe::UProbeError::to_string(&self) -> alloc::string::String +impl core::any::Any for aya::programs::uprobe::UProbeError where T: 'static + core::marker::Sized +pub fn aya::programs::uprobe::UProbeError::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::uprobe::UProbeError where T: core::marker::Sized +pub fn aya::programs::uprobe::UProbeError::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::uprobe::UProbeError where T: core::marker::Sized +pub fn aya::programs::uprobe::UProbeError::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::uprobe::UProbeError +pub fn aya::programs::uprobe::UProbeError::from(t: T) -> T +pub struct aya::programs::uprobe::UProbe +impl aya::programs::uprobe::UProbe +pub fn aya::programs::uprobe::UProbe::attach>(&mut self, fn_name: core::option::Option<&str>, offset: u64, target: T, pid: core::option::Option) -> core::result::Result +pub fn aya::programs::uprobe::UProbe::detach(&mut self, link_id: aya::programs::uprobe::UProbeLinkId) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::uprobe::UProbe::from_pin>(path: P, kind: aya::programs::ProbeKind) -> core::result::Result +pub fn aya::programs::uprobe::UProbe::kind(&self) -> aya::programs::ProbeKind +pub fn aya::programs::uprobe::UProbe::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::uprobe::UProbe::take_link(&mut self, link_id: aya::programs::uprobe::UProbeLinkId) -> core::result::Result +impl aya::programs::uprobe::UProbe +pub fn aya::programs::uprobe::UProbe::fd(&self) -> core::option::Option +impl aya::programs::uprobe::UProbe +pub fn aya::programs::uprobe::UProbe::pin>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError> +pub fn aya::programs::uprobe::UProbe::unpin(self) -> core::result::Result<(), std::io::error::Error> +impl aya::programs::uprobe::UProbe +pub fn aya::programs::uprobe::UProbe::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +impl core::ops::drop::Drop for aya::programs::uprobe::UProbe +pub fn aya::programs::uprobe::UProbe::drop(&mut self) +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::uprobe::UProbe +pub type &'a aya::programs::uprobe::UProbe::Error = aya::programs::ProgramError +pub fn &'a aya::programs::uprobe::UProbe::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::uprobe::UProbe, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::uprobe::UProbe +pub type &'a mut aya::programs::uprobe::UProbe::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::uprobe::UProbe::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::uprobe::UProbe, aya::programs::ProgramError> +impl core::fmt::Debug for aya::programs::uprobe::UProbe +pub fn aya::programs::uprobe::UProbe::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::uprobe::UProbe +impl core::marker::Sync for aya::programs::uprobe::UProbe +impl core::marker::Unpin for aya::programs::uprobe::UProbe +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbe +impl core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbe +impl core::convert::Into for aya::programs::uprobe::UProbe where U: core::convert::From +pub fn aya::programs::uprobe::UProbe::into(self) -> U +impl core::convert::TryFrom for aya::programs::uprobe::UProbe where U: core::convert::Into +pub type aya::programs::uprobe::UProbe::Error = core::convert::Infallible +pub fn aya::programs::uprobe::UProbe::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::uprobe::UProbe where U: core::convert::TryFrom +pub type aya::programs::uprobe::UProbe::Error = >::Error +pub fn aya::programs::uprobe::UProbe::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::uprobe::UProbe where T: 'static + core::marker::Sized +pub fn aya::programs::uprobe::UProbe::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::uprobe::UProbe where T: core::marker::Sized +pub fn aya::programs::uprobe::UProbe::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::uprobe::UProbe where T: core::marker::Sized +pub fn aya::programs::uprobe::UProbe::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::uprobe::UProbe +pub fn aya::programs::uprobe::UProbe::from(t: T) -> T +pub struct aya::programs::uprobe::UProbeLink(_) +impl aya::programs::links::Link for aya::programs::uprobe::UProbeLink +pub type aya::programs::uprobe::UProbeLink::Id = aya::programs::uprobe::UProbeLinkId +pub fn aya::programs::uprobe::UProbeLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::uprobe::UProbeLink::id(&self) -> Self::Id +impl core::convert::TryFrom for aya::programs::uprobe::UProbeLink +pub type aya::programs::uprobe::UProbeLink::Error = aya::programs::links::LinkError +pub fn aya::programs::uprobe::UProbeLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result +impl core::convert::TryFrom for aya::programs::links::FdLink +pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError +pub fn aya::programs::links::FdLink::try_from(value: aya::programs::uprobe::UProbeLink) -> core::result::Result +impl core::ops::drop::Drop for aya::programs::uprobe::UProbeLink +pub fn aya::programs::uprobe::UProbeLink::drop(&mut self) +impl core::fmt::Debug for aya::programs::uprobe::UProbeLink +pub fn aya::programs::uprobe::UProbeLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::uprobe::UProbeLink +impl core::marker::Sync for aya::programs::uprobe::UProbeLink +impl core::marker::Unpin for aya::programs::uprobe::UProbeLink +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbeLink +impl core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbeLink +impl core::convert::Into for aya::programs::uprobe::UProbeLink where U: core::convert::From +pub fn aya::programs::uprobe::UProbeLink::into(self) -> U +impl core::convert::TryFrom for aya::programs::uprobe::UProbeLink where U: core::convert::Into +pub type aya::programs::uprobe::UProbeLink::Error = core::convert::Infallible +pub fn aya::programs::uprobe::UProbeLink::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::uprobe::UProbeLink where U: core::convert::TryFrom +pub type aya::programs::uprobe::UProbeLink::Error = >::Error +pub fn aya::programs::uprobe::UProbeLink::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::uprobe::UProbeLink where T: 'static + core::marker::Sized +pub fn aya::programs::uprobe::UProbeLink::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::uprobe::UProbeLink where T: core::marker::Sized +pub fn aya::programs::uprobe::UProbeLink::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::uprobe::UProbeLink where T: core::marker::Sized +pub fn aya::programs::uprobe::UProbeLink::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::uprobe::UProbeLink +pub fn aya::programs::uprobe::UProbeLink::from(t: T) -> T +pub struct aya::programs::uprobe::UProbeLinkId(_) +impl core::cmp::Eq for aya::programs::uprobe::UProbeLinkId +impl core::cmp::PartialEq for aya::programs::uprobe::UProbeLinkId +pub fn aya::programs::uprobe::UProbeLinkId::eq(&self, other: &aya::programs::uprobe::UProbeLinkId) -> bool +impl core::fmt::Debug for aya::programs::uprobe::UProbeLinkId +pub fn aya::programs::uprobe::UProbeLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::hash::Hash for aya::programs::uprobe::UProbeLinkId +pub fn aya::programs::uprobe::UProbeLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H) +impl core::marker::StructuralEq for aya::programs::uprobe::UProbeLinkId +impl core::marker::StructuralPartialEq for aya::programs::uprobe::UProbeLinkId +impl core::marker::Send for aya::programs::uprobe::UProbeLinkId +impl core::marker::Sync for aya::programs::uprobe::UProbeLinkId +impl core::marker::Unpin for aya::programs::uprobe::UProbeLinkId +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbeLinkId +impl core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbeLinkId +impl core::convert::Into for aya::programs::uprobe::UProbeLinkId where U: core::convert::From +pub fn aya::programs::uprobe::UProbeLinkId::into(self) -> U +impl core::convert::TryFrom for aya::programs::uprobe::UProbeLinkId where U: core::convert::Into +pub type aya::programs::uprobe::UProbeLinkId::Error = core::convert::Infallible +pub fn aya::programs::uprobe::UProbeLinkId::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::uprobe::UProbeLinkId where U: core::convert::TryFrom +pub type aya::programs::uprobe::UProbeLinkId::Error = >::Error +pub fn aya::programs::uprobe::UProbeLinkId::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::uprobe::UProbeLinkId where T: 'static + core::marker::Sized +pub fn aya::programs::uprobe::UProbeLinkId::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::uprobe::UProbeLinkId where T: core::marker::Sized +pub fn aya::programs::uprobe::UProbeLinkId::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::uprobe::UProbeLinkId where T: core::marker::Sized +pub fn aya::programs::uprobe::UProbeLinkId::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::uprobe::UProbeLinkId +pub fn aya::programs::uprobe::UProbeLinkId::from(t: T) -> T +pub mod aya::programs::xdp +pub enum aya::programs::xdp::XdpError +pub aya::programs::xdp::XdpError::NetlinkError +pub aya::programs::xdp::XdpError::NetlinkError::io_error: std::io::error::Error +impl core::convert::From for aya::programs::ProgramError +pub fn aya::programs::ProgramError::from(source: aya::programs::xdp::XdpError) -> Self +impl core::error::Error for aya::programs::xdp::XdpError +pub fn aya::programs::xdp::XdpError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)> +impl core::fmt::Display for aya::programs::xdp::XdpError +pub fn aya::programs::xdp::XdpError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::fmt::Debug for aya::programs::xdp::XdpError +pub fn aya::programs::xdp::XdpError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::xdp::XdpError +impl core::marker::Sync for aya::programs::xdp::XdpError +impl core::marker::Unpin for aya::programs::xdp::XdpError +impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::XdpError +impl !core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::XdpError +impl core::any::Provider for aya::programs::xdp::XdpError where E: core::error::Error + core::marker::Sized +pub fn aya::programs::xdp::XdpError::provide<'a>(&'a self, demand: &mut core::any::Demand<'a>) +impl core::convert::Into for aya::programs::xdp::XdpError where U: core::convert::From +pub fn aya::programs::xdp::XdpError::into(self) -> U +impl core::convert::TryFrom for aya::programs::xdp::XdpError where U: core::convert::Into +pub type aya::programs::xdp::XdpError::Error = core::convert::Infallible +pub fn aya::programs::xdp::XdpError::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::xdp::XdpError where U: core::convert::TryFrom +pub type aya::programs::xdp::XdpError::Error = >::Error +pub fn aya::programs::xdp::XdpError::try_into(self) -> core::result::Result>::Error> +impl alloc::string::ToString for aya::programs::xdp::XdpError where T: core::fmt::Display + core::marker::Sized +pub fn aya::programs::xdp::XdpError::to_string(&self) -> alloc::string::String +impl core::any::Any for aya::programs::xdp::XdpError where T: 'static + core::marker::Sized +pub fn aya::programs::xdp::XdpError::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::xdp::XdpError where T: core::marker::Sized +pub fn aya::programs::xdp::XdpError::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::xdp::XdpError where T: core::marker::Sized +pub fn aya::programs::xdp::XdpError::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::xdp::XdpError +pub fn aya::programs::xdp::XdpError::from(t: T) -> T +pub struct aya::programs::xdp::Xdp +impl aya::programs::xdp::Xdp +pub fn aya::programs::xdp::Xdp::attach(&mut self, interface: &str, flags: aya::programs::xdp::XdpFlags) -> core::result::Result +pub fn aya::programs::xdp::Xdp::attach_to_if_index(&mut self, if_index: u32, flags: aya::programs::xdp::XdpFlags) -> core::result::Result +pub fn aya::programs::xdp::Xdp::attach_to_link(&mut self, link: aya::programs::xdp::XdpLink) -> core::result::Result +pub fn aya::programs::xdp::Xdp::detach(&mut self, link_id: aya::programs::xdp::XdpLinkId) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::xdp::Xdp::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::xdp::Xdp::take_link(&mut self, link_id: aya::programs::xdp::XdpLinkId) -> core::result::Result +impl aya::programs::xdp::Xdp +pub fn aya::programs::xdp::Xdp::fd(&self) -> core::option::Option +impl aya::programs::xdp::Xdp +pub fn aya::programs::xdp::Xdp::from_pin>(path: P) -> core::result::Result +impl aya::programs::xdp::Xdp +pub fn aya::programs::xdp::Xdp::pin>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError> +pub fn aya::programs::xdp::Xdp::unpin(self) -> core::result::Result<(), std::io::error::Error> +impl aya::programs::xdp::Xdp +pub fn aya::programs::xdp::Xdp::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +impl core::ops::drop::Drop for aya::programs::xdp::Xdp +pub fn aya::programs::xdp::Xdp::drop(&mut self) +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::xdp::Xdp +pub type &'a aya::programs::xdp::Xdp::Error = aya::programs::ProgramError +pub fn &'a aya::programs::xdp::Xdp::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::xdp::Xdp, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::xdp::Xdp +pub type &'a mut aya::programs::xdp::Xdp::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::xdp::Xdp::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::xdp::Xdp, aya::programs::ProgramError> +impl core::fmt::Debug for aya::programs::xdp::Xdp +pub fn aya::programs::xdp::Xdp::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::xdp::Xdp +impl core::marker::Sync for aya::programs::xdp::Xdp +impl core::marker::Unpin for aya::programs::xdp::Xdp +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::Xdp +impl core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::Xdp +impl core::convert::Into for aya::programs::xdp::Xdp where U: core::convert::From +pub fn aya::programs::xdp::Xdp::into(self) -> U +impl core::convert::TryFrom for aya::programs::xdp::Xdp where U: core::convert::Into +pub type aya::programs::xdp::Xdp::Error = core::convert::Infallible +pub fn aya::programs::xdp::Xdp::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::xdp::Xdp where U: core::convert::TryFrom +pub type aya::programs::xdp::Xdp::Error = >::Error +pub fn aya::programs::xdp::Xdp::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::xdp::Xdp where T: 'static + core::marker::Sized +pub fn aya::programs::xdp::Xdp::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::xdp::Xdp where T: core::marker::Sized +pub fn aya::programs::xdp::Xdp::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::xdp::Xdp where T: core::marker::Sized +pub fn aya::programs::xdp::Xdp::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::xdp::Xdp +pub fn aya::programs::xdp::Xdp::from(t: T) -> T +pub struct aya::programs::xdp::XdpFlags(_) +impl aya::programs::xdp::XdpFlags +pub const aya::programs::xdp::XdpFlags::DRV_MODE: Self +pub const aya::programs::xdp::XdpFlags::HW_MODE: Self +pub const aya::programs::xdp::XdpFlags::REPLACE: Self +pub const aya::programs::xdp::XdpFlags::SKB_MODE: Self +pub const aya::programs::xdp::XdpFlags::UPDATE_IF_NOEXIST: Self +impl aya::programs::xdp::XdpFlags +pub const fn aya::programs::xdp::XdpFlags::all() -> Self +pub const fn aya::programs::xdp::XdpFlags::bits(&self) -> u32 +pub const fn aya::programs::xdp::XdpFlags::complement(self) -> Self +pub const fn aya::programs::xdp::XdpFlags::contains(&self, other: Self) -> bool +pub const fn aya::programs::xdp::XdpFlags::difference(self, other: Self) -> Self +pub const fn aya::programs::xdp::XdpFlags::empty() -> Self +pub const fn aya::programs::xdp::XdpFlags::from_bits(bits: u32) -> core::option::Option +pub const fn aya::programs::xdp::XdpFlags::from_bits_retain(bits: u32) -> Self +pub const fn aya::programs::xdp::XdpFlags::from_bits_truncate(bits: u32) -> Self +pub fn aya::programs::xdp::XdpFlags::from_name(name: &str) -> core::option::Option +pub fn aya::programs::xdp::XdpFlags::insert(&mut self, other: Self) +pub const fn aya::programs::xdp::XdpFlags::intersection(self, other: Self) -> Self +pub const fn aya::programs::xdp::XdpFlags::intersects(&self, other: Self) -> bool +pub const fn aya::programs::xdp::XdpFlags::is_all(&self) -> bool +pub const fn aya::programs::xdp::XdpFlags::is_empty(&self) -> bool +pub fn aya::programs::xdp::XdpFlags::remove(&mut self, other: Self) +pub fn aya::programs::xdp::XdpFlags::set(&mut self, other: Self, value: bool) +pub const fn aya::programs::xdp::XdpFlags::symmetric_difference(self, other: Self) -> Self +pub fn aya::programs::xdp::XdpFlags::toggle(&mut self, other: Self) +pub const fn aya::programs::xdp::XdpFlags::union(self, other: Self) -> Self +impl aya::programs::xdp::XdpFlags +pub const fn aya::programs::xdp::XdpFlags::iter(&self) -> bitflags::iter::Iter +pub const fn aya::programs::xdp::XdpFlags::iter_names(&self) -> bitflags::iter::IterNames +impl bitflags::traits::Flags for aya::programs::xdp::XdpFlags +pub type aya::programs::xdp::XdpFlags::Bits = u32 +pub const aya::programs::xdp::XdpFlags::FLAGS: &'static [bitflags::traits::Flag] +pub fn aya::programs::xdp::XdpFlags::bits(&self) -> u32 +pub fn aya::programs::xdp::XdpFlags::from_bits_retain(bits: u32) -> aya::programs::xdp::XdpFlags +impl bitflags::traits::PublicFlags for aya::programs::xdp::XdpFlags +pub type aya::programs::xdp::XdpFlags::Internal = InternalBitFlags +pub type aya::programs::xdp::XdpFlags::Primitive = u32 +impl core::fmt::Binary for aya::programs::xdp::XdpFlags +pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::fmt::LowerHex for aya::programs::xdp::XdpFlags +pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::fmt::Octal for aya::programs::xdp::XdpFlags +pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::fmt::UpperHex for aya::programs::xdp::XdpFlags +pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::iter::traits::collect::Extend for aya::programs::xdp::XdpFlags +pub fn aya::programs::xdp::XdpFlags::extend>(&mut self, iterator: T) +impl core::iter::traits::collect::FromIterator for aya::programs::xdp::XdpFlags +pub fn aya::programs::xdp::XdpFlags::from_iter>(iterator: T) -> Self +impl core::iter::traits::collect::IntoIterator for aya::programs::xdp::XdpFlags +pub type aya::programs::xdp::XdpFlags::IntoIter = bitflags::iter::Iter +pub type aya::programs::xdp::XdpFlags::Item = aya::programs::xdp::XdpFlags +pub fn aya::programs::xdp::XdpFlags::into_iter(self) -> Self::IntoIter +impl core::ops::arith::Sub for aya::programs::xdp::XdpFlags +pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags +pub fn aya::programs::xdp::XdpFlags::sub(self, other: Self) -> Self +impl core::ops::arith::SubAssign for aya::programs::xdp::XdpFlags +pub fn aya::programs::xdp::XdpFlags::sub_assign(&mut self, other: Self) +impl core::ops::bit::BitAnd for aya::programs::xdp::XdpFlags +pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags +pub fn aya::programs::xdp::XdpFlags::bitand(self, other: Self) -> Self +impl core::ops::bit::BitAndAssign for aya::programs::xdp::XdpFlags +pub fn aya::programs::xdp::XdpFlags::bitand_assign(&mut self, other: Self) +impl core::ops::bit::BitOr for aya::programs::xdp::XdpFlags +pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags +pub fn aya::programs::xdp::XdpFlags::bitor(self, other: aya::programs::xdp::XdpFlags) -> Self +impl core::ops::bit::BitOrAssign for aya::programs::xdp::XdpFlags +pub fn aya::programs::xdp::XdpFlags::bitor_assign(&mut self, other: Self) +impl core::ops::bit::BitXor for aya::programs::xdp::XdpFlags +pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags +pub fn aya::programs::xdp::XdpFlags::bitxor(self, other: Self) -> Self +impl core::ops::bit::BitXorAssign for aya::programs::xdp::XdpFlags +pub fn aya::programs::xdp::XdpFlags::bitxor_assign(&mut self, other: Self) +impl core::ops::bit::Not for aya::programs::xdp::XdpFlags +pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags +pub fn aya::programs::xdp::XdpFlags::not(self) -> Self +impl core::clone::Clone for aya::programs::xdp::XdpFlags +pub fn aya::programs::xdp::XdpFlags::clone(&self) -> aya::programs::xdp::XdpFlags +impl core::default::Default for aya::programs::xdp::XdpFlags +pub fn aya::programs::xdp::XdpFlags::default() -> aya::programs::xdp::XdpFlags +impl core::fmt::Debug for aya::programs::xdp::XdpFlags +pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya::programs::xdp::XdpFlags +impl core::marker::Send for aya::programs::xdp::XdpFlags +impl core::marker::Sync for aya::programs::xdp::XdpFlags +impl core::marker::Unpin for aya::programs::xdp::XdpFlags +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::XdpFlags +impl core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::XdpFlags +impl bitflags::traits::BitFlags for aya::programs::xdp::XdpFlags where B: bitflags::traits::Flags +pub type aya::programs::xdp::XdpFlags::Iter = bitflags::iter::Iter +pub type aya::programs::xdp::XdpFlags::IterNames = bitflags::iter::IterNames +impl core::convert::Into for aya::programs::xdp::XdpFlags where U: core::convert::From +pub fn aya::programs::xdp::XdpFlags::into(self) -> U +impl core::convert::TryFrom for aya::programs::xdp::XdpFlags where U: core::convert::Into +pub type aya::programs::xdp::XdpFlags::Error = core::convert::Infallible +pub fn aya::programs::xdp::XdpFlags::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::xdp::XdpFlags where U: core::convert::TryFrom +pub type aya::programs::xdp::XdpFlags::Error = >::Error +pub fn aya::programs::xdp::XdpFlags::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya::programs::xdp::XdpFlags where T: core::clone::Clone +pub type aya::programs::xdp::XdpFlags::Owned = T +pub fn aya::programs::xdp::XdpFlags::clone_into(&self, target: &mut T) +pub fn aya::programs::xdp::XdpFlags::to_owned(&self) -> T +impl core::any::Any for aya::programs::xdp::XdpFlags where T: 'static + core::marker::Sized +pub fn aya::programs::xdp::XdpFlags::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::xdp::XdpFlags where T: core::marker::Sized +pub fn aya::programs::xdp::XdpFlags::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::xdp::XdpFlags where T: core::marker::Sized +pub fn aya::programs::xdp::XdpFlags::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::xdp::XdpFlags +pub fn aya::programs::xdp::XdpFlags::from(t: T) -> T +pub struct aya::programs::xdp::XdpLink(_) +impl aya::programs::links::Link for aya::programs::xdp::XdpLink +pub type aya::programs::xdp::XdpLink::Id = aya::programs::xdp::XdpLinkId +pub fn aya::programs::xdp::XdpLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::xdp::XdpLink::id(&self) -> Self::Id +impl core::convert::TryFrom for aya::programs::xdp::XdpLink +pub type aya::programs::xdp::XdpLink::Error = aya::programs::links::LinkError +pub fn aya::programs::xdp::XdpLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result +impl core::convert::TryFrom for aya::programs::links::FdLink +pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError +pub fn aya::programs::links::FdLink::try_from(value: aya::programs::xdp::XdpLink) -> core::result::Result +impl core::ops::drop::Drop for aya::programs::xdp::XdpLink +pub fn aya::programs::xdp::XdpLink::drop(&mut self) +impl core::fmt::Debug for aya::programs::xdp::XdpLink +pub fn aya::programs::xdp::XdpLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::xdp::XdpLink +impl core::marker::Sync for aya::programs::xdp::XdpLink +impl core::marker::Unpin for aya::programs::xdp::XdpLink +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::XdpLink +impl core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::XdpLink +impl core::convert::Into for aya::programs::xdp::XdpLink where U: core::convert::From +pub fn aya::programs::xdp::XdpLink::into(self) -> U +impl core::convert::TryFrom for aya::programs::xdp::XdpLink where U: core::convert::Into +pub type aya::programs::xdp::XdpLink::Error = core::convert::Infallible +pub fn aya::programs::xdp::XdpLink::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::xdp::XdpLink where U: core::convert::TryFrom +pub type aya::programs::xdp::XdpLink::Error = >::Error +pub fn aya::programs::xdp::XdpLink::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::xdp::XdpLink where T: 'static + core::marker::Sized +pub fn aya::programs::xdp::XdpLink::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::xdp::XdpLink where T: core::marker::Sized +pub fn aya::programs::xdp::XdpLink::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::xdp::XdpLink where T: core::marker::Sized +pub fn aya::programs::xdp::XdpLink::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::xdp::XdpLink +pub fn aya::programs::xdp::XdpLink::from(t: T) -> T +pub struct aya::programs::xdp::XdpLinkId(_) +impl core::cmp::Eq for aya::programs::xdp::XdpLinkId +impl core::cmp::PartialEq for aya::programs::xdp::XdpLinkId +pub fn aya::programs::xdp::XdpLinkId::eq(&self, other: &aya::programs::xdp::XdpLinkId) -> bool +impl core::fmt::Debug for aya::programs::xdp::XdpLinkId +pub fn aya::programs::xdp::XdpLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::hash::Hash for aya::programs::xdp::XdpLinkId +pub fn aya::programs::xdp::XdpLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H) +impl core::marker::StructuralEq for aya::programs::xdp::XdpLinkId +impl core::marker::StructuralPartialEq for aya::programs::xdp::XdpLinkId +impl core::marker::Send for aya::programs::xdp::XdpLinkId +impl core::marker::Sync for aya::programs::xdp::XdpLinkId +impl core::marker::Unpin for aya::programs::xdp::XdpLinkId +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::XdpLinkId +impl core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::XdpLinkId +impl core::convert::Into for aya::programs::xdp::XdpLinkId where U: core::convert::From +pub fn aya::programs::xdp::XdpLinkId::into(self) -> U +impl core::convert::TryFrom for aya::programs::xdp::XdpLinkId where U: core::convert::Into +pub type aya::programs::xdp::XdpLinkId::Error = core::convert::Infallible +pub fn aya::programs::xdp::XdpLinkId::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::xdp::XdpLinkId where U: core::convert::TryFrom +pub type aya::programs::xdp::XdpLinkId::Error = >::Error +pub fn aya::programs::xdp::XdpLinkId::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::xdp::XdpLinkId where T: 'static + core::marker::Sized +pub fn aya::programs::xdp::XdpLinkId::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::xdp::XdpLinkId where T: core::marker::Sized +pub fn aya::programs::xdp::XdpLinkId::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::xdp::XdpLinkId where T: core::marker::Sized +pub fn aya::programs::xdp::XdpLinkId::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::xdp::XdpLinkId +pub fn aya::programs::xdp::XdpLinkId::from(t: T) -> T +pub enum aya::programs::CgroupSkbAttachType +pub aya::programs::CgroupSkbAttachType::Egress +pub aya::programs::CgroupSkbAttachType::Ingress +impl core::clone::Clone for aya::programs::cgroup_skb::CgroupSkbAttachType +pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::clone(&self) -> aya::programs::cgroup_skb::CgroupSkbAttachType +impl core::fmt::Debug for aya::programs::cgroup_skb::CgroupSkbAttachType +pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya::programs::cgroup_skb::CgroupSkbAttachType +impl core::marker::Send for aya::programs::cgroup_skb::CgroupSkbAttachType +impl core::marker::Sync for aya::programs::cgroup_skb::CgroupSkbAttachType +impl core::marker::Unpin for aya::programs::cgroup_skb::CgroupSkbAttachType +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_skb::CgroupSkbAttachType +impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_skb::CgroupSkbAttachType +impl core::convert::Into for aya::programs::cgroup_skb::CgroupSkbAttachType where U: core::convert::From +pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::into(self) -> U +impl core::convert::TryFrom for aya::programs::cgroup_skb::CgroupSkbAttachType where U: core::convert::Into +pub type aya::programs::cgroup_skb::CgroupSkbAttachType::Error = core::convert::Infallible +pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::cgroup_skb::CgroupSkbAttachType where U: core::convert::TryFrom +pub type aya::programs::cgroup_skb::CgroupSkbAttachType::Error = >::Error +pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya::programs::cgroup_skb::CgroupSkbAttachType where T: core::clone::Clone +pub type aya::programs::cgroup_skb::CgroupSkbAttachType::Owned = T +pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::clone_into(&self, target: &mut T) +pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::to_owned(&self) -> T +impl core::any::Any for aya::programs::cgroup_skb::CgroupSkbAttachType where T: 'static + core::marker::Sized +pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::cgroup_skb::CgroupSkbAttachType where T: core::marker::Sized +pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::cgroup_skb::CgroupSkbAttachType where T: core::marker::Sized +pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::cgroup_skb::CgroupSkbAttachType +pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::from(t: T) -> T +pub enum aya::programs::ExtensionError +pub aya::programs::ExtensionError::NoBTF +impl core::convert::From for aya::programs::ProgramError +pub fn aya::programs::ProgramError::from(source: aya::programs::extension::ExtensionError) -> Self +impl core::error::Error for aya::programs::extension::ExtensionError +impl core::fmt::Display for aya::programs::extension::ExtensionError +pub fn aya::programs::extension::ExtensionError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::fmt::Debug for aya::programs::extension::ExtensionError +pub fn aya::programs::extension::ExtensionError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::extension::ExtensionError +impl core::marker::Sync for aya::programs::extension::ExtensionError +impl core::marker::Unpin for aya::programs::extension::ExtensionError +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::extension::ExtensionError +impl core::panic::unwind_safe::UnwindSafe for aya::programs::extension::ExtensionError +impl core::any::Provider for aya::programs::extension::ExtensionError where E: core::error::Error + core::marker::Sized +pub fn aya::programs::extension::ExtensionError::provide<'a>(&'a self, demand: &mut core::any::Demand<'a>) +impl core::convert::Into for aya::programs::extension::ExtensionError where U: core::convert::From +pub fn aya::programs::extension::ExtensionError::into(self) -> U +impl core::convert::TryFrom for aya::programs::extension::ExtensionError where U: core::convert::Into +pub type aya::programs::extension::ExtensionError::Error = core::convert::Infallible +pub fn aya::programs::extension::ExtensionError::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::extension::ExtensionError where U: core::convert::TryFrom +pub type aya::programs::extension::ExtensionError::Error = >::Error +pub fn aya::programs::extension::ExtensionError::try_into(self) -> core::result::Result>::Error> +impl alloc::string::ToString for aya::programs::extension::ExtensionError where T: core::fmt::Display + core::marker::Sized +pub fn aya::programs::extension::ExtensionError::to_string(&self) -> alloc::string::String +impl core::any::Any for aya::programs::extension::ExtensionError where T: 'static + core::marker::Sized +pub fn aya::programs::extension::ExtensionError::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::extension::ExtensionError where T: core::marker::Sized +pub fn aya::programs::extension::ExtensionError::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::extension::ExtensionError where T: core::marker::Sized +pub fn aya::programs::extension::ExtensionError::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::extension::ExtensionError +pub fn aya::programs::extension::ExtensionError::from(t: T) -> T +pub enum aya::programs::KProbeError +pub aya::programs::KProbeError::FileError +pub aya::programs::KProbeError::FileError::filename: alloc::string::String +pub aya::programs::KProbeError::FileError::io_error: std::io::error::Error +impl core::convert::From for aya::programs::ProgramError +pub fn aya::programs::ProgramError::from(source: aya::programs::kprobe::KProbeError) -> Self +impl core::error::Error for aya::programs::kprobe::KProbeError +pub fn aya::programs::kprobe::KProbeError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)> +impl core::fmt::Display for aya::programs::kprobe::KProbeError +pub fn aya::programs::kprobe::KProbeError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::fmt::Debug for aya::programs::kprobe::KProbeError +pub fn aya::programs::kprobe::KProbeError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::kprobe::KProbeError +impl core::marker::Sync for aya::programs::kprobe::KProbeError +impl core::marker::Unpin for aya::programs::kprobe::KProbeError +impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::kprobe::KProbeError +impl !core::panic::unwind_safe::UnwindSafe for aya::programs::kprobe::KProbeError +impl core::any::Provider for aya::programs::kprobe::KProbeError where E: core::error::Error + core::marker::Sized +pub fn aya::programs::kprobe::KProbeError::provide<'a>(&'a self, demand: &mut core::any::Demand<'a>) +impl core::convert::Into for aya::programs::kprobe::KProbeError where U: core::convert::From +pub fn aya::programs::kprobe::KProbeError::into(self) -> U +impl core::convert::TryFrom for aya::programs::kprobe::KProbeError where U: core::convert::Into +pub type aya::programs::kprobe::KProbeError::Error = core::convert::Infallible +pub fn aya::programs::kprobe::KProbeError::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::kprobe::KProbeError where U: core::convert::TryFrom +pub type aya::programs::kprobe::KProbeError::Error = >::Error +pub fn aya::programs::kprobe::KProbeError::try_into(self) -> core::result::Result>::Error> +impl alloc::string::ToString for aya::programs::kprobe::KProbeError where T: core::fmt::Display + core::marker::Sized +pub fn aya::programs::kprobe::KProbeError::to_string(&self) -> alloc::string::String +impl core::any::Any for aya::programs::kprobe::KProbeError where T: 'static + core::marker::Sized +pub fn aya::programs::kprobe::KProbeError::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::kprobe::KProbeError where T: core::marker::Sized +pub fn aya::programs::kprobe::KProbeError::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::kprobe::KProbeError where T: core::marker::Sized +pub fn aya::programs::kprobe::KProbeError::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::kprobe::KProbeError +pub fn aya::programs::kprobe::KProbeError::from(t: T) -> T +pub enum aya::programs::PerfEventScope +pub aya::programs::PerfEventScope::AllProcessesOneCpu +pub aya::programs::PerfEventScope::AllProcessesOneCpu::cpu: u32 +pub aya::programs::PerfEventScope::CallingProcessAnyCpu +pub aya::programs::PerfEventScope::CallingProcessOneCpu +pub aya::programs::PerfEventScope::CallingProcessOneCpu::cpu: u32 +pub aya::programs::PerfEventScope::OneProcessAnyCpu +pub aya::programs::PerfEventScope::OneProcessAnyCpu::pid: u32 +pub aya::programs::PerfEventScope::OneProcessOneCpu +pub aya::programs::PerfEventScope::OneProcessOneCpu::cpu: u32 +pub aya::programs::PerfEventScope::OneProcessOneCpu::pid: u32 +impl core::clone::Clone for aya::programs::perf_event::PerfEventScope +pub fn aya::programs::perf_event::PerfEventScope::clone(&self) -> aya::programs::perf_event::PerfEventScope +impl core::fmt::Debug for aya::programs::perf_event::PerfEventScope +pub fn aya::programs::perf_event::PerfEventScope::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::perf_event::PerfEventScope +impl core::marker::Sync for aya::programs::perf_event::PerfEventScope +impl core::marker::Unpin for aya::programs::perf_event::PerfEventScope +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfEventScope +impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfEventScope +impl core::convert::Into for aya::programs::perf_event::PerfEventScope where U: core::convert::From +pub fn aya::programs::perf_event::PerfEventScope::into(self) -> U +impl core::convert::TryFrom for aya::programs::perf_event::PerfEventScope where U: core::convert::Into +pub type aya::programs::perf_event::PerfEventScope::Error = core::convert::Infallible +pub fn aya::programs::perf_event::PerfEventScope::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::perf_event::PerfEventScope where U: core::convert::TryFrom +pub type aya::programs::perf_event::PerfEventScope::Error = >::Error +pub fn aya::programs::perf_event::PerfEventScope::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya::programs::perf_event::PerfEventScope where T: core::clone::Clone +pub type aya::programs::perf_event::PerfEventScope::Owned = T +pub fn aya::programs::perf_event::PerfEventScope::clone_into(&self, target: &mut T) +pub fn aya::programs::perf_event::PerfEventScope::to_owned(&self) -> T +impl core::any::Any for aya::programs::perf_event::PerfEventScope where T: 'static + core::marker::Sized +pub fn aya::programs::perf_event::PerfEventScope::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::perf_event::PerfEventScope where T: core::marker::Sized +pub fn aya::programs::perf_event::PerfEventScope::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::perf_event::PerfEventScope where T: core::marker::Sized +pub fn aya::programs::perf_event::PerfEventScope::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::perf_event::PerfEventScope +pub fn aya::programs::perf_event::PerfEventScope::from(t: T) -> T +#[repr(u32)] pub enum aya::programs::PerfTypeId +pub aya::programs::PerfTypeId::Breakpoint = 5 +pub aya::programs::PerfTypeId::Hardware = 0 +pub aya::programs::PerfTypeId::HwCache = 3 +pub aya::programs::PerfTypeId::Raw = 4 +pub aya::programs::PerfTypeId::Software = 1 +pub aya::programs::PerfTypeId::TracePoint = 2 +impl core::clone::Clone for aya::programs::perf_event::PerfTypeId +pub fn aya::programs::perf_event::PerfTypeId::clone(&self) -> aya::programs::perf_event::PerfTypeId +impl core::fmt::Debug for aya::programs::perf_event::PerfTypeId +pub fn aya::programs::perf_event::PerfTypeId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::perf_event::PerfTypeId +impl core::marker::Sync for aya::programs::perf_event::PerfTypeId +impl core::marker::Unpin for aya::programs::perf_event::PerfTypeId +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfTypeId +impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfTypeId +impl core::convert::Into for aya::programs::perf_event::PerfTypeId where U: core::convert::From +pub fn aya::programs::perf_event::PerfTypeId::into(self) -> U +impl core::convert::TryFrom for aya::programs::perf_event::PerfTypeId where U: core::convert::Into +pub type aya::programs::perf_event::PerfTypeId::Error = core::convert::Infallible +pub fn aya::programs::perf_event::PerfTypeId::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::perf_event::PerfTypeId where U: core::convert::TryFrom +pub type aya::programs::perf_event::PerfTypeId::Error = >::Error +pub fn aya::programs::perf_event::PerfTypeId::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya::programs::perf_event::PerfTypeId where T: core::clone::Clone +pub type aya::programs::perf_event::PerfTypeId::Owned = T +pub fn aya::programs::perf_event::PerfTypeId::clone_into(&self, target: &mut T) +pub fn aya::programs::perf_event::PerfTypeId::to_owned(&self) -> T +impl core::any::Any for aya::programs::perf_event::PerfTypeId where T: 'static + core::marker::Sized +pub fn aya::programs::perf_event::PerfTypeId::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::perf_event::PerfTypeId where T: core::marker::Sized +pub fn aya::programs::perf_event::PerfTypeId::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::perf_event::PerfTypeId where T: core::marker::Sized +pub fn aya::programs::perf_event::PerfTypeId::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::perf_event::PerfTypeId +pub fn aya::programs::perf_event::PerfTypeId::from(t: T) -> T +pub enum aya::programs::ProbeKind +pub aya::programs::ProbeKind::KProbe +pub aya::programs::ProbeKind::KRetProbe +pub aya::programs::ProbeKind::UProbe +pub aya::programs::ProbeKind::URetProbe +impl core::clone::Clone for aya::programs::ProbeKind +pub fn aya::programs::ProbeKind::clone(&self) -> aya::programs::ProbeKind +impl core::fmt::Debug for aya::programs::ProbeKind +pub fn aya::programs::ProbeKind::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya::programs::ProbeKind +impl core::marker::Send for aya::programs::ProbeKind +impl core::marker::Sync for aya::programs::ProbeKind +impl core::marker::Unpin for aya::programs::ProbeKind +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::ProbeKind +impl core::panic::unwind_safe::UnwindSafe for aya::programs::ProbeKind +impl core::convert::Into for aya::programs::ProbeKind where U: core::convert::From +pub fn aya::programs::ProbeKind::into(self) -> U +impl core::convert::TryFrom for aya::programs::ProbeKind where U: core::convert::Into +pub type aya::programs::ProbeKind::Error = core::convert::Infallible +pub fn aya::programs::ProbeKind::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::ProbeKind where U: core::convert::TryFrom +pub type aya::programs::ProbeKind::Error = >::Error +pub fn aya::programs::ProbeKind::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya::programs::ProbeKind where T: core::clone::Clone +pub type aya::programs::ProbeKind::Owned = T +pub fn aya::programs::ProbeKind::clone_into(&self, target: &mut T) +pub fn aya::programs::ProbeKind::to_owned(&self) -> T +impl core::any::Any for aya::programs::ProbeKind where T: 'static + core::marker::Sized +pub fn aya::programs::ProbeKind::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::ProbeKind where T: core::marker::Sized +pub fn aya::programs::ProbeKind::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::ProbeKind where T: core::marker::Sized +pub fn aya::programs::ProbeKind::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::ProbeKind +pub fn aya::programs::ProbeKind::from(t: T) -> T +pub enum aya::programs::Program +pub aya::programs::Program::BtfTracePoint(aya::programs::tp_btf::BtfTracePoint) +pub aya::programs::Program::CgroupDevice(aya::programs::cgroup_device::CgroupDevice) +pub aya::programs::Program::CgroupSkb(aya::programs::cgroup_skb::CgroupSkb) +pub aya::programs::Program::CgroupSock(aya::programs::cgroup_sock::CgroupSock) +pub aya::programs::Program::CgroupSockAddr(aya::programs::cgroup_sock_addr::CgroupSockAddr) +pub aya::programs::Program::CgroupSockopt(aya::programs::cgroup_sockopt::CgroupSockopt) +pub aya::programs::Program::CgroupSysctl(aya::programs::cgroup_sysctl::CgroupSysctl) +pub aya::programs::Program::Extension(aya::programs::extension::Extension) +pub aya::programs::Program::FEntry(aya::programs::fentry::FEntry) +pub aya::programs::Program::FExit(aya::programs::fexit::FExit) +pub aya::programs::Program::KProbe(aya::programs::kprobe::KProbe) +pub aya::programs::Program::LircMode2(aya::programs::lirc_mode2::LircMode2) +pub aya::programs::Program::Lsm(aya::programs::lsm::Lsm) +pub aya::programs::Program::PerfEvent(aya::programs::perf_event::PerfEvent) +pub aya::programs::Program::RawTracePoint(aya::programs::RawTracePoint) +pub aya::programs::Program::SchedClassifier(aya::programs::tc::SchedClassifier) +pub aya::programs::Program::SkLookup(aya::programs::SkLookup) +pub aya::programs::Program::SkMsg(aya::programs::SkMsg) +pub aya::programs::Program::SkSkb(aya::programs::SkSkb) +pub aya::programs::Program::SockOps(aya::programs::SockOps) +pub aya::programs::Program::SocketFilter(aya::programs::SocketFilter) +pub aya::programs::Program::TracePoint(aya::programs::trace_point::TracePoint) +pub aya::programs::Program::UProbe(aya::programs::uprobe::UProbe) +pub aya::programs::Program::Xdp(aya::programs::xdp::Xdp) +impl aya::programs::Program +pub fn aya::programs::Program::fd(&self) -> core::option::Option +pub fn aya::programs::Program::pin>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError> +pub fn aya::programs::Program::prog_type(&self) -> aya_obj::generated::linux_bindings_x86_64::bpf_prog_type +pub fn aya::programs::Program::unload(self) -> core::result::Result<(), aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::RawTracePoint +pub type &'a aya::programs::RawTracePoint::Error = aya::programs::ProgramError +pub fn &'a aya::programs::RawTracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::RawTracePoint, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::SkLookup +pub type &'a aya::programs::SkLookup::Error = aya::programs::ProgramError +pub fn &'a aya::programs::SkLookup::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::SkLookup, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::SkMsg +pub type &'a aya::programs::SkMsg::Error = aya::programs::ProgramError +pub fn &'a aya::programs::SkMsg::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::SkMsg, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::SkSkb +pub type &'a aya::programs::SkSkb::Error = aya::programs::ProgramError +pub fn &'a aya::programs::SkSkb::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::SkSkb, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::SockOps +pub type &'a aya::programs::SockOps::Error = aya::programs::ProgramError +pub fn &'a aya::programs::SockOps::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::SockOps, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::SocketFilter +pub type &'a aya::programs::SocketFilter::Error = aya::programs::ProgramError +pub fn &'a aya::programs::SocketFilter::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::SocketFilter, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_device::CgroupDevice +pub type &'a aya::programs::cgroup_device::CgroupDevice::Error = aya::programs::ProgramError +pub fn &'a aya::programs::cgroup_device::CgroupDevice::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_device::CgroupDevice, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_skb::CgroupSkb +pub type &'a aya::programs::cgroup_skb::CgroupSkb::Error = aya::programs::ProgramError +pub fn &'a aya::programs::cgroup_skb::CgroupSkb::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_skb::CgroupSkb, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sock::CgroupSock +pub type &'a aya::programs::cgroup_sock::CgroupSock::Error = aya::programs::ProgramError +pub fn &'a aya::programs::cgroup_sock::CgroupSock::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sock::CgroupSock, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sock_addr::CgroupSockAddr +pub type &'a aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = aya::programs::ProgramError +pub fn &'a aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sock_addr::CgroupSockAddr, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sockopt::CgroupSockopt +pub type &'a aya::programs::cgroup_sockopt::CgroupSockopt::Error = aya::programs::ProgramError +pub fn &'a aya::programs::cgroup_sockopt::CgroupSockopt::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sockopt::CgroupSockopt, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sysctl::CgroupSysctl +pub type &'a aya::programs::cgroup_sysctl::CgroupSysctl::Error = aya::programs::ProgramError +pub fn &'a aya::programs::cgroup_sysctl::CgroupSysctl::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sysctl::CgroupSysctl, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::extension::Extension +pub type &'a aya::programs::extension::Extension::Error = aya::programs::ProgramError +pub fn &'a aya::programs::extension::Extension::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::extension::Extension, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::fentry::FEntry +pub type &'a aya::programs::fentry::FEntry::Error = aya::programs::ProgramError +pub fn &'a aya::programs::fentry::FEntry::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::fentry::FEntry, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::fexit::FExit +pub type &'a aya::programs::fexit::FExit::Error = aya::programs::ProgramError +pub fn &'a aya::programs::fexit::FExit::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::fexit::FExit, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::kprobe::KProbe +pub type &'a aya::programs::kprobe::KProbe::Error = aya::programs::ProgramError +pub fn &'a aya::programs::kprobe::KProbe::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::kprobe::KProbe, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::lirc_mode2::LircMode2 +pub type &'a aya::programs::lirc_mode2::LircMode2::Error = aya::programs::ProgramError +pub fn &'a aya::programs::lirc_mode2::LircMode2::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::lirc_mode2::LircMode2, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::lsm::Lsm +pub type &'a aya::programs::lsm::Lsm::Error = aya::programs::ProgramError +pub fn &'a aya::programs::lsm::Lsm::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::lsm::Lsm, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::perf_event::PerfEvent +pub type &'a aya::programs::perf_event::PerfEvent::Error = aya::programs::ProgramError +pub fn &'a aya::programs::perf_event::PerfEvent::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::perf_event::PerfEvent, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::tc::SchedClassifier +pub type &'a aya::programs::tc::SchedClassifier::Error = aya::programs::ProgramError +pub fn &'a aya::programs::tc::SchedClassifier::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::tc::SchedClassifier, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::tp_btf::BtfTracePoint +pub type &'a aya::programs::tp_btf::BtfTracePoint::Error = aya::programs::ProgramError +pub fn &'a aya::programs::tp_btf::BtfTracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::tp_btf::BtfTracePoint, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::trace_point::TracePoint +pub type &'a aya::programs::trace_point::TracePoint::Error = aya::programs::ProgramError +pub fn &'a aya::programs::trace_point::TracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::trace_point::TracePoint, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::uprobe::UProbe +pub type &'a aya::programs::uprobe::UProbe::Error = aya::programs::ProgramError +pub fn &'a aya::programs::uprobe::UProbe::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::uprobe::UProbe, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::xdp::Xdp +pub type &'a aya::programs::xdp::Xdp::Error = aya::programs::ProgramError +pub fn &'a aya::programs::xdp::Xdp::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::xdp::Xdp, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::RawTracePoint +pub type &'a mut aya::programs::RawTracePoint::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::RawTracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::RawTracePoint, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::SkLookup +pub type &'a mut aya::programs::SkLookup::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::SkLookup::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::SkLookup, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::SkMsg +pub type &'a mut aya::programs::SkMsg::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::SkMsg::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::SkMsg, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::SkSkb +pub type &'a mut aya::programs::SkSkb::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::SkSkb::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::SkSkb, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::SockOps +pub type &'a mut aya::programs::SockOps::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::SockOps::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::SockOps, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::SocketFilter +pub type &'a mut aya::programs::SocketFilter::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::SocketFilter::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::SocketFilter, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_device::CgroupDevice +pub type &'a mut aya::programs::cgroup_device::CgroupDevice::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::cgroup_device::CgroupDevice::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_device::CgroupDevice, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_skb::CgroupSkb +pub type &'a mut aya::programs::cgroup_skb::CgroupSkb::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::cgroup_skb::CgroupSkb::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_skb::CgroupSkb, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sock::CgroupSock +pub type &'a mut aya::programs::cgroup_sock::CgroupSock::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::cgroup_sock::CgroupSock::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sock::CgroupSock, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr +pub type &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sockopt::CgroupSockopt +pub type &'a mut aya::programs::cgroup_sockopt::CgroupSockopt::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::cgroup_sockopt::CgroupSockopt::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sockopt::CgroupSockopt, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sysctl::CgroupSysctl +pub type &'a mut aya::programs::cgroup_sysctl::CgroupSysctl::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::cgroup_sysctl::CgroupSysctl::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sysctl::CgroupSysctl, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::extension::Extension +pub type &'a mut aya::programs::extension::Extension::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::extension::Extension::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::extension::Extension, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::fentry::FEntry +pub type &'a mut aya::programs::fentry::FEntry::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::fentry::FEntry::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::fentry::FEntry, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::fexit::FExit +pub type &'a mut aya::programs::fexit::FExit::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::fexit::FExit::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::fexit::FExit, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::kprobe::KProbe +pub type &'a mut aya::programs::kprobe::KProbe::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::kprobe::KProbe::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::kprobe::KProbe, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::lirc_mode2::LircMode2 +pub type &'a mut aya::programs::lirc_mode2::LircMode2::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::lirc_mode2::LircMode2::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::lirc_mode2::LircMode2, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::lsm::Lsm +pub type &'a mut aya::programs::lsm::Lsm::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::lsm::Lsm::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::lsm::Lsm, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::perf_event::PerfEvent +pub type &'a mut aya::programs::perf_event::PerfEvent::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::perf_event::PerfEvent::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::perf_event::PerfEvent, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::tc::SchedClassifier +pub type &'a mut aya::programs::tc::SchedClassifier::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::tc::SchedClassifier::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::tc::SchedClassifier, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::tp_btf::BtfTracePoint +pub type &'a mut aya::programs::tp_btf::BtfTracePoint::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::tp_btf::BtfTracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::tp_btf::BtfTracePoint, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::trace_point::TracePoint +pub type &'a mut aya::programs::trace_point::TracePoint::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::trace_point::TracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::trace_point::TracePoint, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::uprobe::UProbe +pub type &'a mut aya::programs::uprobe::UProbe::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::uprobe::UProbe::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::uprobe::UProbe, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::xdp::Xdp +pub type &'a mut aya::programs::xdp::Xdp::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::xdp::Xdp::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::xdp::Xdp, aya::programs::ProgramError> +impl core::fmt::Debug for aya::programs::Program +pub fn aya::programs::Program::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::Program +impl core::marker::Sync for aya::programs::Program +impl core::marker::Unpin for aya::programs::Program +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::Program +impl core::panic::unwind_safe::UnwindSafe for aya::programs::Program +impl core::convert::Into for aya::programs::Program where U: core::convert::From +pub fn aya::programs::Program::into(self) -> U +impl core::convert::TryFrom for aya::programs::Program where U: core::convert::Into +pub type aya::programs::Program::Error = core::convert::Infallible +pub fn aya::programs::Program::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::Program where U: core::convert::TryFrom +pub type aya::programs::Program::Error = >::Error +pub fn aya::programs::Program::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::Program where T: 'static + core::marker::Sized +pub fn aya::programs::Program::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::Program where T: core::marker::Sized +pub fn aya::programs::Program::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::Program where T: core::marker::Sized +pub fn aya::programs::Program::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::Program +pub fn aya::programs::Program::from(t: T) -> T +pub enum aya::programs::ProgramError +pub aya::programs::ProgramError::AlreadyAttached +pub aya::programs::ProgramError::AlreadyLoaded +pub aya::programs::ProgramError::Btf(aya_obj::btf::btf::BtfError) +pub aya::programs::ProgramError::ExtensionError(aya::programs::extension::ExtensionError) +pub aya::programs::ProgramError::IOError(std::io::error::Error) +pub aya::programs::ProgramError::InvalidName +pub aya::programs::ProgramError::InvalidName::name: alloc::string::String +pub aya::programs::ProgramError::KProbeError(aya::programs::kprobe::KProbeError) +pub aya::programs::ProgramError::LoadError +pub aya::programs::ProgramError::LoadError::io_error: std::io::error::Error +pub aya::programs::ProgramError::LoadError::verifier_log: alloc::string::String +pub aya::programs::ProgramError::MapError(aya::maps::MapError) +pub aya::programs::ProgramError::NotAttached +pub aya::programs::ProgramError::NotLoaded +pub aya::programs::ProgramError::SocketFilterError(aya::programs::SocketFilterError) +pub aya::programs::ProgramError::SyscallError +pub aya::programs::ProgramError::SyscallError::call: &'static str +pub aya::programs::ProgramError::SyscallError::io_error: std::io::error::Error +pub aya::programs::ProgramError::TcError(aya::programs::tc::TcError) +pub aya::programs::ProgramError::TracePointError(aya::programs::trace_point::TracePointError) +pub aya::programs::ProgramError::UProbeError(aya::programs::uprobe::UProbeError) +pub aya::programs::ProgramError::UnexpectedProgramType +pub aya::programs::ProgramError::UnknownInterface +pub aya::programs::ProgramError::UnknownInterface::name: alloc::string::String +pub aya::programs::ProgramError::XdpError(aya::programs::xdp::XdpError) +impl core::convert::From for aya::programs::ProgramError +pub fn aya::programs::ProgramError::from(source: aya::maps::MapError) -> Self +impl core::convert::From for aya::BpfError +pub fn aya::BpfError::from(source: aya::programs::ProgramError) -> Self +impl core::convert::From for aya::programs::ProgramError +pub fn aya::programs::ProgramError::from(source: aya::programs::SocketFilterError) -> Self +impl core::convert::From for aya::programs::ProgramError +pub fn aya::programs::ProgramError::from(source: aya::programs::extension::ExtensionError) -> Self +impl core::convert::From for aya::programs::ProgramError +pub fn aya::programs::ProgramError::from(source: aya::programs::kprobe::KProbeError) -> Self +impl core::convert::From for aya::programs::ProgramError +pub fn aya::programs::ProgramError::from(source: aya::programs::tc::TcError) -> Self +impl core::convert::From for aya::programs::ProgramError +pub fn aya::programs::ProgramError::from(source: aya::programs::trace_point::TracePointError) -> Self +impl core::convert::From for aya::programs::ProgramError +pub fn aya::programs::ProgramError::from(source: aya::programs::uprobe::UProbeError) -> Self +impl core::convert::From for aya::programs::ProgramError +pub fn aya::programs::ProgramError::from(source: aya::programs::xdp::XdpError) -> Self +impl core::convert::From for aya::programs::ProgramError +pub fn aya::programs::ProgramError::from(source: aya_obj::btf::btf::BtfError) -> Self +impl core::convert::From for aya::programs::ProgramError +pub fn aya::programs::ProgramError::from(source: std::io::error::Error) -> Self +impl core::error::Error for aya::programs::ProgramError +pub fn aya::programs::ProgramError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)> +impl core::fmt::Display for aya::programs::ProgramError +pub fn aya::programs::ProgramError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::fmt::Debug for aya::programs::ProgramError +pub fn aya::programs::ProgramError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::ProgramError +impl core::marker::Sync for aya::programs::ProgramError +impl core::marker::Unpin for aya::programs::ProgramError +impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::ProgramError +impl !core::panic::unwind_safe::UnwindSafe for aya::programs::ProgramError +impl core::any::Provider for aya::programs::ProgramError where E: core::error::Error + core::marker::Sized +pub fn aya::programs::ProgramError::provide<'a>(&'a self, demand: &mut core::any::Demand<'a>) +impl core::convert::Into for aya::programs::ProgramError where U: core::convert::From +pub fn aya::programs::ProgramError::into(self) -> U +impl core::convert::TryFrom for aya::programs::ProgramError where U: core::convert::Into +pub type aya::programs::ProgramError::Error = core::convert::Infallible +pub fn aya::programs::ProgramError::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::ProgramError where U: core::convert::TryFrom +pub type aya::programs::ProgramError::Error = >::Error +pub fn aya::programs::ProgramError::try_into(self) -> core::result::Result>::Error> +impl alloc::string::ToString for aya::programs::ProgramError where T: core::fmt::Display + core::marker::Sized +pub fn aya::programs::ProgramError::to_string(&self) -> alloc::string::String +impl core::any::Any for aya::programs::ProgramError where T: 'static + core::marker::Sized +pub fn aya::programs::ProgramError::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::ProgramError where T: core::marker::Sized +pub fn aya::programs::ProgramError::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::ProgramError where T: core::marker::Sized +pub fn aya::programs::ProgramError::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::ProgramError +pub fn aya::programs::ProgramError::from(t: T) -> T +pub enum aya::programs::SamplePolicy +pub aya::programs::SamplePolicy::Frequency(u64) +pub aya::programs::SamplePolicy::Period(u64) +impl core::clone::Clone for aya::programs::perf_event::SamplePolicy +pub fn aya::programs::perf_event::SamplePolicy::clone(&self) -> aya::programs::perf_event::SamplePolicy +impl core::fmt::Debug for aya::programs::perf_event::SamplePolicy +pub fn aya::programs::perf_event::SamplePolicy::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::perf_event::SamplePolicy +impl core::marker::Sync for aya::programs::perf_event::SamplePolicy +impl core::marker::Unpin for aya::programs::perf_event::SamplePolicy +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::SamplePolicy +impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::SamplePolicy +impl core::convert::Into for aya::programs::perf_event::SamplePolicy where U: core::convert::From +pub fn aya::programs::perf_event::SamplePolicy::into(self) -> U +impl core::convert::TryFrom for aya::programs::perf_event::SamplePolicy where U: core::convert::Into +pub type aya::programs::perf_event::SamplePolicy::Error = core::convert::Infallible +pub fn aya::programs::perf_event::SamplePolicy::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::perf_event::SamplePolicy where U: core::convert::TryFrom +pub type aya::programs::perf_event::SamplePolicy::Error = >::Error +pub fn aya::programs::perf_event::SamplePolicy::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya::programs::perf_event::SamplePolicy where T: core::clone::Clone +pub type aya::programs::perf_event::SamplePolicy::Owned = T +pub fn aya::programs::perf_event::SamplePolicy::clone_into(&self, target: &mut T) +pub fn aya::programs::perf_event::SamplePolicy::to_owned(&self) -> T +impl core::any::Any for aya::programs::perf_event::SamplePolicy where T: 'static + core::marker::Sized +pub fn aya::programs::perf_event::SamplePolicy::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::perf_event::SamplePolicy where T: core::marker::Sized +pub fn aya::programs::perf_event::SamplePolicy::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::perf_event::SamplePolicy where T: core::marker::Sized +pub fn aya::programs::perf_event::SamplePolicy::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::perf_event::SamplePolicy +pub fn aya::programs::perf_event::SamplePolicy::from(t: T) -> T +pub enum aya::programs::SkSkbKind +pub aya::programs::SkSkbKind::StreamParser +pub aya::programs::SkSkbKind::StreamVerdict +impl core::clone::Clone for aya::programs::SkSkbKind +pub fn aya::programs::SkSkbKind::clone(&self) -> aya::programs::SkSkbKind +impl core::fmt::Debug for aya::programs::SkSkbKind +pub fn aya::programs::SkSkbKind::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya::programs::SkSkbKind +impl core::marker::Send for aya::programs::SkSkbKind +impl core::marker::Sync for aya::programs::SkSkbKind +impl core::marker::Unpin for aya::programs::SkSkbKind +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::SkSkbKind +impl core::panic::unwind_safe::UnwindSafe for aya::programs::SkSkbKind +impl core::convert::Into for aya::programs::SkSkbKind where U: core::convert::From +pub fn aya::programs::SkSkbKind::into(self) -> U +impl core::convert::TryFrom for aya::programs::SkSkbKind where U: core::convert::Into +pub type aya::programs::SkSkbKind::Error = core::convert::Infallible +pub fn aya::programs::SkSkbKind::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::SkSkbKind where U: core::convert::TryFrom +pub type aya::programs::SkSkbKind::Error = >::Error +pub fn aya::programs::SkSkbKind::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya::programs::SkSkbKind where T: core::clone::Clone +pub type aya::programs::SkSkbKind::Owned = T +pub fn aya::programs::SkSkbKind::clone_into(&self, target: &mut T) +pub fn aya::programs::SkSkbKind::to_owned(&self) -> T +impl core::any::Any for aya::programs::SkSkbKind where T: 'static + core::marker::Sized +pub fn aya::programs::SkSkbKind::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::SkSkbKind where T: core::marker::Sized +pub fn aya::programs::SkSkbKind::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::SkSkbKind where T: core::marker::Sized +pub fn aya::programs::SkSkbKind::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::SkSkbKind +pub fn aya::programs::SkSkbKind::from(t: T) -> T +pub enum aya::programs::SocketFilterError +pub aya::programs::SocketFilterError::SoAttachBpfError +pub aya::programs::SocketFilterError::SoAttachBpfError::io_error: std::io::error::Error +impl core::convert::From for aya::programs::ProgramError +pub fn aya::programs::ProgramError::from(source: aya::programs::SocketFilterError) -> Self +impl core::error::Error for aya::programs::SocketFilterError +pub fn aya::programs::SocketFilterError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)> +impl core::fmt::Display for aya::programs::SocketFilterError +pub fn aya::programs::SocketFilterError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::fmt::Debug for aya::programs::SocketFilterError +pub fn aya::programs::SocketFilterError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::SocketFilterError +impl core::marker::Sync for aya::programs::SocketFilterError +impl core::marker::Unpin for aya::programs::SocketFilterError +impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::SocketFilterError +impl !core::panic::unwind_safe::UnwindSafe for aya::programs::SocketFilterError +impl core::any::Provider for aya::programs::SocketFilterError where E: core::error::Error + core::marker::Sized +pub fn aya::programs::SocketFilterError::provide<'a>(&'a self, demand: &mut core::any::Demand<'a>) +impl core::convert::Into for aya::programs::SocketFilterError where U: core::convert::From +pub fn aya::programs::SocketFilterError::into(self) -> U +impl core::convert::TryFrom for aya::programs::SocketFilterError where U: core::convert::Into +pub type aya::programs::SocketFilterError::Error = core::convert::Infallible +pub fn aya::programs::SocketFilterError::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::SocketFilterError where U: core::convert::TryFrom +pub type aya::programs::SocketFilterError::Error = >::Error +pub fn aya::programs::SocketFilterError::try_into(self) -> core::result::Result>::Error> +impl alloc::string::ToString for aya::programs::SocketFilterError where T: core::fmt::Display + core::marker::Sized +pub fn aya::programs::SocketFilterError::to_string(&self) -> alloc::string::String +impl core::any::Any for aya::programs::SocketFilterError where T: 'static + core::marker::Sized +pub fn aya::programs::SocketFilterError::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::SocketFilterError where T: core::marker::Sized +pub fn aya::programs::SocketFilterError::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::SocketFilterError where T: core::marker::Sized +pub fn aya::programs::SocketFilterError::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::SocketFilterError +pub fn aya::programs::SocketFilterError::from(t: T) -> T +pub enum aya::programs::TcAttachType +pub aya::programs::TcAttachType::Custom(u32) +pub aya::programs::TcAttachType::Egress +pub aya::programs::TcAttachType::Ingress +impl core::clone::Clone for aya::programs::tc::TcAttachType +pub fn aya::programs::tc::TcAttachType::clone(&self) -> aya::programs::tc::TcAttachType +impl core::cmp::Eq for aya::programs::tc::TcAttachType +impl core::cmp::PartialEq for aya::programs::tc::TcAttachType +pub fn aya::programs::tc::TcAttachType::eq(&self, other: &aya::programs::tc::TcAttachType) -> bool +impl core::fmt::Debug for aya::programs::tc::TcAttachType +pub fn aya::programs::tc::TcAttachType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::hash::Hash for aya::programs::tc::TcAttachType +pub fn aya::programs::tc::TcAttachType::hash<__H: core::hash::Hasher>(&self, state: &mut __H) +impl core::marker::Copy for aya::programs::tc::TcAttachType +impl core::marker::StructuralEq for aya::programs::tc::TcAttachType +impl core::marker::StructuralPartialEq for aya::programs::tc::TcAttachType +impl core::marker::Send for aya::programs::tc::TcAttachType +impl core::marker::Sync for aya::programs::tc::TcAttachType +impl core::marker::Unpin for aya::programs::tc::TcAttachType +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::TcAttachType +impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::TcAttachType +impl core::convert::Into for aya::programs::tc::TcAttachType where U: core::convert::From +pub fn aya::programs::tc::TcAttachType::into(self) -> U +impl core::convert::TryFrom for aya::programs::tc::TcAttachType where U: core::convert::Into +pub type aya::programs::tc::TcAttachType::Error = core::convert::Infallible +pub fn aya::programs::tc::TcAttachType::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::tc::TcAttachType where U: core::convert::TryFrom +pub type aya::programs::tc::TcAttachType::Error = >::Error +pub fn aya::programs::tc::TcAttachType::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya::programs::tc::TcAttachType where T: core::clone::Clone +pub type aya::programs::tc::TcAttachType::Owned = T +pub fn aya::programs::tc::TcAttachType::clone_into(&self, target: &mut T) +pub fn aya::programs::tc::TcAttachType::to_owned(&self) -> T +impl core::any::Any for aya::programs::tc::TcAttachType where T: 'static + core::marker::Sized +pub fn aya::programs::tc::TcAttachType::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::tc::TcAttachType where T: core::marker::Sized +pub fn aya::programs::tc::TcAttachType::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::tc::TcAttachType where T: core::marker::Sized +pub fn aya::programs::tc::TcAttachType::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::tc::TcAttachType +pub fn aya::programs::tc::TcAttachType::from(t: T) -> T +pub enum aya::programs::TcError +pub aya::programs::TcError::AlreadyAttached +pub aya::programs::TcError::NetlinkError +pub aya::programs::TcError::NetlinkError::io_error: std::io::error::Error +impl core::convert::From for aya::programs::ProgramError +pub fn aya::programs::ProgramError::from(source: aya::programs::tc::TcError) -> Self +impl core::error::Error for aya::programs::tc::TcError +pub fn aya::programs::tc::TcError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)> +impl core::fmt::Display for aya::programs::tc::TcError +pub fn aya::programs::tc::TcError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::fmt::Debug for aya::programs::tc::TcError +pub fn aya::programs::tc::TcError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::tc::TcError +impl core::marker::Sync for aya::programs::tc::TcError +impl core::marker::Unpin for aya::programs::tc::TcError +impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::TcError +impl !core::panic::unwind_safe::UnwindSafe for aya::programs::tc::TcError +impl core::any::Provider for aya::programs::tc::TcError where E: core::error::Error + core::marker::Sized +pub fn aya::programs::tc::TcError::provide<'a>(&'a self, demand: &mut core::any::Demand<'a>) +impl core::convert::Into for aya::programs::tc::TcError where U: core::convert::From +pub fn aya::programs::tc::TcError::into(self) -> U +impl core::convert::TryFrom for aya::programs::tc::TcError where U: core::convert::Into +pub type aya::programs::tc::TcError::Error = core::convert::Infallible +pub fn aya::programs::tc::TcError::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::tc::TcError where U: core::convert::TryFrom +pub type aya::programs::tc::TcError::Error = >::Error +pub fn aya::programs::tc::TcError::try_into(self) -> core::result::Result>::Error> +impl alloc::string::ToString for aya::programs::tc::TcError where T: core::fmt::Display + core::marker::Sized +pub fn aya::programs::tc::TcError::to_string(&self) -> alloc::string::String +impl core::any::Any for aya::programs::tc::TcError where T: 'static + core::marker::Sized +pub fn aya::programs::tc::TcError::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::tc::TcError where T: core::marker::Sized +pub fn aya::programs::tc::TcError::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::tc::TcError where T: core::marker::Sized +pub fn aya::programs::tc::TcError::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::tc::TcError +pub fn aya::programs::tc::TcError::from(t: T) -> T +pub enum aya::programs::TracePointError +pub aya::programs::TracePointError::FileError +pub aya::programs::TracePointError::FileError::filename: alloc::string::String +pub aya::programs::TracePointError::FileError::io_error: std::io::error::Error +impl core::convert::From for aya::programs::ProgramError +pub fn aya::programs::ProgramError::from(source: aya::programs::trace_point::TracePointError) -> Self +impl core::error::Error for aya::programs::trace_point::TracePointError +pub fn aya::programs::trace_point::TracePointError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)> +impl core::fmt::Display for aya::programs::trace_point::TracePointError +pub fn aya::programs::trace_point::TracePointError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::fmt::Debug for aya::programs::trace_point::TracePointError +pub fn aya::programs::trace_point::TracePointError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::trace_point::TracePointError +impl core::marker::Sync for aya::programs::trace_point::TracePointError +impl core::marker::Unpin for aya::programs::trace_point::TracePointError +impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::trace_point::TracePointError +impl !core::panic::unwind_safe::UnwindSafe for aya::programs::trace_point::TracePointError +impl core::any::Provider for aya::programs::trace_point::TracePointError where E: core::error::Error + core::marker::Sized +pub fn aya::programs::trace_point::TracePointError::provide<'a>(&'a self, demand: &mut core::any::Demand<'a>) +impl core::convert::Into for aya::programs::trace_point::TracePointError where U: core::convert::From +pub fn aya::programs::trace_point::TracePointError::into(self) -> U +impl core::convert::TryFrom for aya::programs::trace_point::TracePointError where U: core::convert::Into +pub type aya::programs::trace_point::TracePointError::Error = core::convert::Infallible +pub fn aya::programs::trace_point::TracePointError::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::trace_point::TracePointError where U: core::convert::TryFrom +pub type aya::programs::trace_point::TracePointError::Error = >::Error +pub fn aya::programs::trace_point::TracePointError::try_into(self) -> core::result::Result>::Error> +impl alloc::string::ToString for aya::programs::trace_point::TracePointError where T: core::fmt::Display + core::marker::Sized +pub fn aya::programs::trace_point::TracePointError::to_string(&self) -> alloc::string::String +impl core::any::Any for aya::programs::trace_point::TracePointError where T: 'static + core::marker::Sized +pub fn aya::programs::trace_point::TracePointError::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::trace_point::TracePointError where T: core::marker::Sized +pub fn aya::programs::trace_point::TracePointError::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::trace_point::TracePointError where T: core::marker::Sized +pub fn aya::programs::trace_point::TracePointError::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::trace_point::TracePointError +pub fn aya::programs::trace_point::TracePointError::from(t: T) -> T +pub enum aya::programs::UProbeError +pub aya::programs::UProbeError::FileError +pub aya::programs::UProbeError::FileError::filename: alloc::string::String +pub aya::programs::UProbeError::FileError::io_error: std::io::error::Error +pub aya::programs::UProbeError::InvalidLdSoCache +pub aya::programs::UProbeError::InvalidLdSoCache::io_error: alloc::sync::Arc +pub aya::programs::UProbeError::InvalidTarget +pub aya::programs::UProbeError::InvalidTarget::path: std::path::PathBuf +pub aya::programs::UProbeError::SymbolError +pub aya::programs::UProbeError::SymbolError::error: alloc::boxed::Box<(dyn core::error::Error + core::marker::Send + core::marker::Sync)> +pub aya::programs::UProbeError::SymbolError::symbol: alloc::string::String +impl core::convert::From for aya::programs::ProgramError +pub fn aya::programs::ProgramError::from(source: aya::programs::uprobe::UProbeError) -> Self +impl core::error::Error for aya::programs::uprobe::UProbeError +pub fn aya::programs::uprobe::UProbeError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)> +impl core::fmt::Display for aya::programs::uprobe::UProbeError +pub fn aya::programs::uprobe::UProbeError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::fmt::Debug for aya::programs::uprobe::UProbeError +pub fn aya::programs::uprobe::UProbeError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::uprobe::UProbeError +impl core::marker::Sync for aya::programs::uprobe::UProbeError +impl core::marker::Unpin for aya::programs::uprobe::UProbeError +impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbeError +impl !core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbeError +impl core::any::Provider for aya::programs::uprobe::UProbeError where E: core::error::Error + core::marker::Sized +pub fn aya::programs::uprobe::UProbeError::provide<'a>(&'a self, demand: &mut core::any::Demand<'a>) +impl core::convert::Into for aya::programs::uprobe::UProbeError where U: core::convert::From +pub fn aya::programs::uprobe::UProbeError::into(self) -> U +impl core::convert::TryFrom for aya::programs::uprobe::UProbeError where U: core::convert::Into +pub type aya::programs::uprobe::UProbeError::Error = core::convert::Infallible +pub fn aya::programs::uprobe::UProbeError::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::uprobe::UProbeError where U: core::convert::TryFrom +pub type aya::programs::uprobe::UProbeError::Error = >::Error +pub fn aya::programs::uprobe::UProbeError::try_into(self) -> core::result::Result>::Error> +impl alloc::string::ToString for aya::programs::uprobe::UProbeError where T: core::fmt::Display + core::marker::Sized +pub fn aya::programs::uprobe::UProbeError::to_string(&self) -> alloc::string::String +impl core::any::Any for aya::programs::uprobe::UProbeError where T: 'static + core::marker::Sized +pub fn aya::programs::uprobe::UProbeError::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::uprobe::UProbeError where T: core::marker::Sized +pub fn aya::programs::uprobe::UProbeError::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::uprobe::UProbeError where T: core::marker::Sized +pub fn aya::programs::uprobe::UProbeError::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::uprobe::UProbeError +pub fn aya::programs::uprobe::UProbeError::from(t: T) -> T +pub enum aya::programs::XdpError +pub aya::programs::XdpError::NetlinkError +pub aya::programs::XdpError::NetlinkError::io_error: std::io::error::Error +impl core::convert::From for aya::programs::ProgramError +pub fn aya::programs::ProgramError::from(source: aya::programs::xdp::XdpError) -> Self +impl core::error::Error for aya::programs::xdp::XdpError +pub fn aya::programs::xdp::XdpError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)> +impl core::fmt::Display for aya::programs::xdp::XdpError +pub fn aya::programs::xdp::XdpError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::fmt::Debug for aya::programs::xdp::XdpError +pub fn aya::programs::xdp::XdpError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::xdp::XdpError +impl core::marker::Sync for aya::programs::xdp::XdpError +impl core::marker::Unpin for aya::programs::xdp::XdpError +impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::XdpError +impl !core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::XdpError +impl core::any::Provider for aya::programs::xdp::XdpError where E: core::error::Error + core::marker::Sized +pub fn aya::programs::xdp::XdpError::provide<'a>(&'a self, demand: &mut core::any::Demand<'a>) +impl core::convert::Into for aya::programs::xdp::XdpError where U: core::convert::From +pub fn aya::programs::xdp::XdpError::into(self) -> U +impl core::convert::TryFrom for aya::programs::xdp::XdpError where U: core::convert::Into +pub type aya::programs::xdp::XdpError::Error = core::convert::Infallible +pub fn aya::programs::xdp::XdpError::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::xdp::XdpError where U: core::convert::TryFrom +pub type aya::programs::xdp::XdpError::Error = >::Error +pub fn aya::programs::xdp::XdpError::try_into(self) -> core::result::Result>::Error> +impl alloc::string::ToString for aya::programs::xdp::XdpError where T: core::fmt::Display + core::marker::Sized +pub fn aya::programs::xdp::XdpError::to_string(&self) -> alloc::string::String +impl core::any::Any for aya::programs::xdp::XdpError where T: 'static + core::marker::Sized +pub fn aya::programs::xdp::XdpError::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::xdp::XdpError where T: core::marker::Sized +pub fn aya::programs::xdp::XdpError::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::xdp::XdpError where T: core::marker::Sized +pub fn aya::programs::xdp::XdpError::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::xdp::XdpError +pub fn aya::programs::xdp::XdpError::from(t: T) -> T +pub struct aya::programs::BtfTracePoint +impl aya::programs::tp_btf::BtfTracePoint +pub fn aya::programs::tp_btf::BtfTracePoint::attach(&mut self) -> core::result::Result +pub fn aya::programs::tp_btf::BtfTracePoint::detach(&mut self, link_id: aya::programs::tp_btf::BtfTracePointLinkId) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::tp_btf::BtfTracePoint::load(&mut self, tracepoint: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::tp_btf::BtfTracePoint::take_link(&mut self, link_id: aya::programs::tp_btf::BtfTracePointLinkId) -> core::result::Result +impl aya::programs::tp_btf::BtfTracePoint +pub fn aya::programs::tp_btf::BtfTracePoint::fd(&self) -> core::option::Option +impl aya::programs::tp_btf::BtfTracePoint +pub fn aya::programs::tp_btf::BtfTracePoint::from_pin>(path: P) -> core::result::Result +impl aya::programs::tp_btf::BtfTracePoint +pub fn aya::programs::tp_btf::BtfTracePoint::pin>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError> +pub fn aya::programs::tp_btf::BtfTracePoint::unpin(self) -> core::result::Result<(), std::io::error::Error> +impl aya::programs::tp_btf::BtfTracePoint +pub fn aya::programs::tp_btf::BtfTracePoint::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +impl core::ops::drop::Drop for aya::programs::tp_btf::BtfTracePoint +pub fn aya::programs::tp_btf::BtfTracePoint::drop(&mut self) +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::tp_btf::BtfTracePoint +pub type &'a aya::programs::tp_btf::BtfTracePoint::Error = aya::programs::ProgramError +pub fn &'a aya::programs::tp_btf::BtfTracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::tp_btf::BtfTracePoint, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::tp_btf::BtfTracePoint +pub type &'a mut aya::programs::tp_btf::BtfTracePoint::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::tp_btf::BtfTracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::tp_btf::BtfTracePoint, aya::programs::ProgramError> +impl core::fmt::Debug for aya::programs::tp_btf::BtfTracePoint +pub fn aya::programs::tp_btf::BtfTracePoint::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::tp_btf::BtfTracePoint +impl core::marker::Sync for aya::programs::tp_btf::BtfTracePoint +impl core::marker::Unpin for aya::programs::tp_btf::BtfTracePoint +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tp_btf::BtfTracePoint +impl core::panic::unwind_safe::UnwindSafe for aya::programs::tp_btf::BtfTracePoint +impl core::convert::Into for aya::programs::tp_btf::BtfTracePoint where U: core::convert::From +pub fn aya::programs::tp_btf::BtfTracePoint::into(self) -> U +impl core::convert::TryFrom for aya::programs::tp_btf::BtfTracePoint where U: core::convert::Into +pub type aya::programs::tp_btf::BtfTracePoint::Error = core::convert::Infallible +pub fn aya::programs::tp_btf::BtfTracePoint::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::tp_btf::BtfTracePoint where U: core::convert::TryFrom +pub type aya::programs::tp_btf::BtfTracePoint::Error = >::Error +pub fn aya::programs::tp_btf::BtfTracePoint::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::tp_btf::BtfTracePoint where T: 'static + core::marker::Sized +pub fn aya::programs::tp_btf::BtfTracePoint::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::tp_btf::BtfTracePoint where T: core::marker::Sized +pub fn aya::programs::tp_btf::BtfTracePoint::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::tp_btf::BtfTracePoint where T: core::marker::Sized +pub fn aya::programs::tp_btf::BtfTracePoint::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::tp_btf::BtfTracePoint +pub fn aya::programs::tp_btf::BtfTracePoint::from(t: T) -> T +pub struct aya::programs::CgroupDevice +impl aya::programs::cgroup_device::CgroupDevice +pub fn aya::programs::cgroup_device::CgroupDevice::attach(&mut self, cgroup: T) -> core::result::Result +pub fn aya::programs::cgroup_device::CgroupDevice::detach(&mut self, link_id: aya::programs::cgroup_device::CgroupDeviceLinkId) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::cgroup_device::CgroupDevice::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::cgroup_device::CgroupDevice::take_link(&mut self, link_id: aya::programs::cgroup_device::CgroupDeviceLinkId) -> core::result::Result +impl aya::programs::cgroup_device::CgroupDevice +pub fn aya::programs::cgroup_device::CgroupDevice::fd(&self) -> core::option::Option +impl aya::programs::cgroup_device::CgroupDevice +pub fn aya::programs::cgroup_device::CgroupDevice::from_pin>(path: P) -> core::result::Result +impl aya::programs::cgroup_device::CgroupDevice +pub fn aya::programs::cgroup_device::CgroupDevice::pin>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError> +pub fn aya::programs::cgroup_device::CgroupDevice::unpin(self) -> core::result::Result<(), std::io::error::Error> +impl aya::programs::cgroup_device::CgroupDevice +pub fn aya::programs::cgroup_device::CgroupDevice::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +impl core::ops::drop::Drop for aya::programs::cgroup_device::CgroupDevice +pub fn aya::programs::cgroup_device::CgroupDevice::drop(&mut self) +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_device::CgroupDevice +pub type &'a aya::programs::cgroup_device::CgroupDevice::Error = aya::programs::ProgramError +pub fn &'a aya::programs::cgroup_device::CgroupDevice::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_device::CgroupDevice, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_device::CgroupDevice +pub type &'a mut aya::programs::cgroup_device::CgroupDevice::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::cgroup_device::CgroupDevice::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_device::CgroupDevice, aya::programs::ProgramError> +impl core::fmt::Debug for aya::programs::cgroup_device::CgroupDevice +pub fn aya::programs::cgroup_device::CgroupDevice::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::cgroup_device::CgroupDevice +impl core::marker::Sync for aya::programs::cgroup_device::CgroupDevice +impl core::marker::Unpin for aya::programs::cgroup_device::CgroupDevice +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_device::CgroupDevice +impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_device::CgroupDevice +impl core::convert::Into for aya::programs::cgroup_device::CgroupDevice where U: core::convert::From +pub fn aya::programs::cgroup_device::CgroupDevice::into(self) -> U +impl core::convert::TryFrom for aya::programs::cgroup_device::CgroupDevice where U: core::convert::Into +pub type aya::programs::cgroup_device::CgroupDevice::Error = core::convert::Infallible +pub fn aya::programs::cgroup_device::CgroupDevice::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::cgroup_device::CgroupDevice where U: core::convert::TryFrom +pub type aya::programs::cgroup_device::CgroupDevice::Error = >::Error +pub fn aya::programs::cgroup_device::CgroupDevice::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::cgroup_device::CgroupDevice where T: 'static + core::marker::Sized +pub fn aya::programs::cgroup_device::CgroupDevice::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::cgroup_device::CgroupDevice where T: core::marker::Sized +pub fn aya::programs::cgroup_device::CgroupDevice::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::cgroup_device::CgroupDevice where T: core::marker::Sized +pub fn aya::programs::cgroup_device::CgroupDevice::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::cgroup_device::CgroupDevice +pub fn aya::programs::cgroup_device::CgroupDevice::from(t: T) -> T +pub struct aya::programs::CgroupSkb +impl aya::programs::cgroup_skb::CgroupSkb +pub fn aya::programs::cgroup_skb::CgroupSkb::attach(&mut self, cgroup: T, attach_type: aya::programs::cgroup_skb::CgroupSkbAttachType) -> core::result::Result +pub fn aya::programs::cgroup_skb::CgroupSkb::detach(&mut self, link_id: aya::programs::cgroup_skb::CgroupSkbLinkId) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::cgroup_skb::CgroupSkb::expected_attach_type(&self) -> &core::option::Option +pub fn aya::programs::cgroup_skb::CgroupSkb::from_pin>(path: P, expected_attach_type: aya::programs::cgroup_skb::CgroupSkbAttachType) -> core::result::Result +pub fn aya::programs::cgroup_skb::CgroupSkb::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::cgroup_skb::CgroupSkb::take_link(&mut self, link_id: aya::programs::cgroup_skb::CgroupSkbLinkId) -> core::result::Result +impl aya::programs::cgroup_skb::CgroupSkb +pub fn aya::programs::cgroup_skb::CgroupSkb::fd(&self) -> core::option::Option +impl aya::programs::cgroup_skb::CgroupSkb +pub fn aya::programs::cgroup_skb::CgroupSkb::pin>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError> +pub fn aya::programs::cgroup_skb::CgroupSkb::unpin(self) -> core::result::Result<(), std::io::error::Error> +impl aya::programs::cgroup_skb::CgroupSkb +pub fn aya::programs::cgroup_skb::CgroupSkb::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +impl core::ops::drop::Drop for aya::programs::cgroup_skb::CgroupSkb +pub fn aya::programs::cgroup_skb::CgroupSkb::drop(&mut self) +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_skb::CgroupSkb +pub type &'a aya::programs::cgroup_skb::CgroupSkb::Error = aya::programs::ProgramError +pub fn &'a aya::programs::cgroup_skb::CgroupSkb::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_skb::CgroupSkb, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_skb::CgroupSkb +pub type &'a mut aya::programs::cgroup_skb::CgroupSkb::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::cgroup_skb::CgroupSkb::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_skb::CgroupSkb, aya::programs::ProgramError> +impl core::fmt::Debug for aya::programs::cgroup_skb::CgroupSkb +pub fn aya::programs::cgroup_skb::CgroupSkb::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::cgroup_skb::CgroupSkb +impl core::marker::Sync for aya::programs::cgroup_skb::CgroupSkb +impl core::marker::Unpin for aya::programs::cgroup_skb::CgroupSkb +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_skb::CgroupSkb +impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_skb::CgroupSkb +impl core::convert::Into for aya::programs::cgroup_skb::CgroupSkb where U: core::convert::From +pub fn aya::programs::cgroup_skb::CgroupSkb::into(self) -> U +impl core::convert::TryFrom for aya::programs::cgroup_skb::CgroupSkb where U: core::convert::Into +pub type aya::programs::cgroup_skb::CgroupSkb::Error = core::convert::Infallible +pub fn aya::programs::cgroup_skb::CgroupSkb::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::cgroup_skb::CgroupSkb where U: core::convert::TryFrom +pub type aya::programs::cgroup_skb::CgroupSkb::Error = >::Error +pub fn aya::programs::cgroup_skb::CgroupSkb::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::cgroup_skb::CgroupSkb where T: 'static + core::marker::Sized +pub fn aya::programs::cgroup_skb::CgroupSkb::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::cgroup_skb::CgroupSkb where T: core::marker::Sized +pub fn aya::programs::cgroup_skb::CgroupSkb::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::cgroup_skb::CgroupSkb where T: core::marker::Sized +pub fn aya::programs::cgroup_skb::CgroupSkb::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::cgroup_skb::CgroupSkb +pub fn aya::programs::cgroup_skb::CgroupSkb::from(t: T) -> T +pub struct aya::programs::CgroupSock +impl aya::programs::cgroup_sock::CgroupSock +pub fn aya::programs::cgroup_sock::CgroupSock::attach(&mut self, cgroup: T) -> core::result::Result +pub fn aya::programs::cgroup_sock::CgroupSock::detach(&mut self, link_id: aya::programs::cgroup_sock::CgroupSockLinkId) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::cgroup_sock::CgroupSock::from_pin>(path: P, attach_type: aya_obj::programs::cgroup_sock::CgroupSockAttachType) -> core::result::Result +pub fn aya::programs::cgroup_sock::CgroupSock::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::cgroup_sock::CgroupSock::take_link(&mut self, link_id: aya::programs::cgroup_sock::CgroupSockLinkId) -> core::result::Result +impl aya::programs::cgroup_sock::CgroupSock +pub fn aya::programs::cgroup_sock::CgroupSock::fd(&self) -> core::option::Option +impl aya::programs::cgroup_sock::CgroupSock +pub fn aya::programs::cgroup_sock::CgroupSock::pin>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError> +pub fn aya::programs::cgroup_sock::CgroupSock::unpin(self) -> core::result::Result<(), std::io::error::Error> +impl aya::programs::cgroup_sock::CgroupSock +pub fn aya::programs::cgroup_sock::CgroupSock::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +impl core::ops::drop::Drop for aya::programs::cgroup_sock::CgroupSock +pub fn aya::programs::cgroup_sock::CgroupSock::drop(&mut self) +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sock::CgroupSock +pub type &'a aya::programs::cgroup_sock::CgroupSock::Error = aya::programs::ProgramError +pub fn &'a aya::programs::cgroup_sock::CgroupSock::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sock::CgroupSock, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sock::CgroupSock +pub type &'a mut aya::programs::cgroup_sock::CgroupSock::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::cgroup_sock::CgroupSock::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sock::CgroupSock, aya::programs::ProgramError> +impl core::fmt::Debug for aya::programs::cgroup_sock::CgroupSock +pub fn aya::programs::cgroup_sock::CgroupSock::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::cgroup_sock::CgroupSock +impl core::marker::Sync for aya::programs::cgroup_sock::CgroupSock +impl core::marker::Unpin for aya::programs::cgroup_sock::CgroupSock +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock::CgroupSock +impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock::CgroupSock +impl core::convert::Into for aya::programs::cgroup_sock::CgroupSock where U: core::convert::From +pub fn aya::programs::cgroup_sock::CgroupSock::into(self) -> U +impl core::convert::TryFrom for aya::programs::cgroup_sock::CgroupSock where U: core::convert::Into +pub type aya::programs::cgroup_sock::CgroupSock::Error = core::convert::Infallible +pub fn aya::programs::cgroup_sock::CgroupSock::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::cgroup_sock::CgroupSock where U: core::convert::TryFrom +pub type aya::programs::cgroup_sock::CgroupSock::Error = >::Error +pub fn aya::programs::cgroup_sock::CgroupSock::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::cgroup_sock::CgroupSock where T: 'static + core::marker::Sized +pub fn aya::programs::cgroup_sock::CgroupSock::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::cgroup_sock::CgroupSock where T: core::marker::Sized +pub fn aya::programs::cgroup_sock::CgroupSock::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::cgroup_sock::CgroupSock where T: core::marker::Sized +pub fn aya::programs::cgroup_sock::CgroupSock::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::cgroup_sock::CgroupSock +pub fn aya::programs::cgroup_sock::CgroupSock::from(t: T) -> T +pub struct aya::programs::CgroupSockAddr +impl aya::programs::cgroup_sock_addr::CgroupSockAddr +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::attach(&mut self, cgroup: T) -> core::result::Result +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::detach(&mut self, link_id: aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::from_pin>(path: P, attach_type: aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType) -> core::result::Result +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::take_link(&mut self, link_id: aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId) -> core::result::Result +impl aya::programs::cgroup_sock_addr::CgroupSockAddr +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::fd(&self) -> core::option::Option +impl aya::programs::cgroup_sock_addr::CgroupSockAddr +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::pin>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError> +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::unpin(self) -> core::result::Result<(), std::io::error::Error> +impl aya::programs::cgroup_sock_addr::CgroupSockAddr +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +impl core::ops::drop::Drop for aya::programs::cgroup_sock_addr::CgroupSockAddr +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::drop(&mut self) +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sock_addr::CgroupSockAddr +pub type &'a aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = aya::programs::ProgramError +pub fn &'a aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sock_addr::CgroupSockAddr, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr +pub type &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr, aya::programs::ProgramError> +impl core::fmt::Debug for aya::programs::cgroup_sock_addr::CgroupSockAddr +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::cgroup_sock_addr::CgroupSockAddr +impl core::marker::Sync for aya::programs::cgroup_sock_addr::CgroupSockAddr +impl core::marker::Unpin for aya::programs::cgroup_sock_addr::CgroupSockAddr +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddr +impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddr +impl core::convert::Into for aya::programs::cgroup_sock_addr::CgroupSockAddr where U: core::convert::From +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::into(self) -> U +impl core::convert::TryFrom for aya::programs::cgroup_sock_addr::CgroupSockAddr where U: core::convert::Into +pub type aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = core::convert::Infallible +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::cgroup_sock_addr::CgroupSockAddr where U: core::convert::TryFrom +pub type aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = >::Error +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::cgroup_sock_addr::CgroupSockAddr where T: 'static + core::marker::Sized +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::cgroup_sock_addr::CgroupSockAddr where T: core::marker::Sized +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::cgroup_sock_addr::CgroupSockAddr where T: core::marker::Sized +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::cgroup_sock_addr::CgroupSockAddr +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::from(t: T) -> T +pub struct aya::programs::CgroupSockopt +impl aya::programs::cgroup_sockopt::CgroupSockopt +pub fn aya::programs::cgroup_sockopt::CgroupSockopt::attach(&mut self, cgroup: T) -> core::result::Result +pub fn aya::programs::cgroup_sockopt::CgroupSockopt::detach(&mut self, link_id: aya::programs::cgroup_sockopt::CgroupSockoptLinkId) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::cgroup_sockopt::CgroupSockopt::from_pin>(path: P, attach_type: aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType) -> core::result::Result +pub fn aya::programs::cgroup_sockopt::CgroupSockopt::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::cgroup_sockopt::CgroupSockopt::take_link(&mut self, link_id: aya::programs::cgroup_sockopt::CgroupSockoptLinkId) -> core::result::Result +impl aya::programs::cgroup_sockopt::CgroupSockopt +pub fn aya::programs::cgroup_sockopt::CgroupSockopt::fd(&self) -> core::option::Option +impl aya::programs::cgroup_sockopt::CgroupSockopt +pub fn aya::programs::cgroup_sockopt::CgroupSockopt::pin>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError> +pub fn aya::programs::cgroup_sockopt::CgroupSockopt::unpin(self) -> core::result::Result<(), std::io::error::Error> +impl aya::programs::cgroup_sockopt::CgroupSockopt +pub fn aya::programs::cgroup_sockopt::CgroupSockopt::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +impl core::ops::drop::Drop for aya::programs::cgroup_sockopt::CgroupSockopt +pub fn aya::programs::cgroup_sockopt::CgroupSockopt::drop(&mut self) +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sockopt::CgroupSockopt +pub type &'a aya::programs::cgroup_sockopt::CgroupSockopt::Error = aya::programs::ProgramError +pub fn &'a aya::programs::cgroup_sockopt::CgroupSockopt::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sockopt::CgroupSockopt, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sockopt::CgroupSockopt +pub type &'a mut aya::programs::cgroup_sockopt::CgroupSockopt::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::cgroup_sockopt::CgroupSockopt::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sockopt::CgroupSockopt, aya::programs::ProgramError> +impl core::fmt::Debug for aya::programs::cgroup_sockopt::CgroupSockopt +pub fn aya::programs::cgroup_sockopt::CgroupSockopt::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::cgroup_sockopt::CgroupSockopt +impl core::marker::Sync for aya::programs::cgroup_sockopt::CgroupSockopt +impl core::marker::Unpin for aya::programs::cgroup_sockopt::CgroupSockopt +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sockopt::CgroupSockopt +impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sockopt::CgroupSockopt +impl core::convert::Into for aya::programs::cgroup_sockopt::CgroupSockopt where U: core::convert::From +pub fn aya::programs::cgroup_sockopt::CgroupSockopt::into(self) -> U +impl core::convert::TryFrom for aya::programs::cgroup_sockopt::CgroupSockopt where U: core::convert::Into +pub type aya::programs::cgroup_sockopt::CgroupSockopt::Error = core::convert::Infallible +pub fn aya::programs::cgroup_sockopt::CgroupSockopt::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::cgroup_sockopt::CgroupSockopt where U: core::convert::TryFrom +pub type aya::programs::cgroup_sockopt::CgroupSockopt::Error = >::Error +pub fn aya::programs::cgroup_sockopt::CgroupSockopt::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::cgroup_sockopt::CgroupSockopt where T: 'static + core::marker::Sized +pub fn aya::programs::cgroup_sockopt::CgroupSockopt::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::cgroup_sockopt::CgroupSockopt where T: core::marker::Sized +pub fn aya::programs::cgroup_sockopt::CgroupSockopt::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::cgroup_sockopt::CgroupSockopt where T: core::marker::Sized +pub fn aya::programs::cgroup_sockopt::CgroupSockopt::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::cgroup_sockopt::CgroupSockopt +pub fn aya::programs::cgroup_sockopt::CgroupSockopt::from(t: T) -> T +pub struct aya::programs::CgroupSysctl +impl aya::programs::cgroup_sysctl::CgroupSysctl +pub fn aya::programs::cgroup_sysctl::CgroupSysctl::attach(&mut self, cgroup: T) -> core::result::Result +pub fn aya::programs::cgroup_sysctl::CgroupSysctl::detach(&mut self, link_id: aya::programs::cgroup_sysctl::CgroupSysctlLinkId) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::cgroup_sysctl::CgroupSysctl::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::cgroup_sysctl::CgroupSysctl::take_link(&mut self, link_id: aya::programs::cgroup_sysctl::CgroupSysctlLinkId) -> core::result::Result +impl aya::programs::cgroup_sysctl::CgroupSysctl +pub fn aya::programs::cgroup_sysctl::CgroupSysctl::fd(&self) -> core::option::Option +impl aya::programs::cgroup_sysctl::CgroupSysctl +pub fn aya::programs::cgroup_sysctl::CgroupSysctl::from_pin>(path: P) -> core::result::Result +impl aya::programs::cgroup_sysctl::CgroupSysctl +pub fn aya::programs::cgroup_sysctl::CgroupSysctl::pin>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError> +pub fn aya::programs::cgroup_sysctl::CgroupSysctl::unpin(self) -> core::result::Result<(), std::io::error::Error> +impl aya::programs::cgroup_sysctl::CgroupSysctl +pub fn aya::programs::cgroup_sysctl::CgroupSysctl::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +impl core::ops::drop::Drop for aya::programs::cgroup_sysctl::CgroupSysctl +pub fn aya::programs::cgroup_sysctl::CgroupSysctl::drop(&mut self) +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sysctl::CgroupSysctl +pub type &'a aya::programs::cgroup_sysctl::CgroupSysctl::Error = aya::programs::ProgramError +pub fn &'a aya::programs::cgroup_sysctl::CgroupSysctl::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sysctl::CgroupSysctl, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sysctl::CgroupSysctl +pub type &'a mut aya::programs::cgroup_sysctl::CgroupSysctl::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::cgroup_sysctl::CgroupSysctl::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sysctl::CgroupSysctl, aya::programs::ProgramError> +impl core::fmt::Debug for aya::programs::cgroup_sysctl::CgroupSysctl +pub fn aya::programs::cgroup_sysctl::CgroupSysctl::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::cgroup_sysctl::CgroupSysctl +impl core::marker::Sync for aya::programs::cgroup_sysctl::CgroupSysctl +impl core::marker::Unpin for aya::programs::cgroup_sysctl::CgroupSysctl +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctl +impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctl +impl core::convert::Into for aya::programs::cgroup_sysctl::CgroupSysctl where U: core::convert::From +pub fn aya::programs::cgroup_sysctl::CgroupSysctl::into(self) -> U +impl core::convert::TryFrom for aya::programs::cgroup_sysctl::CgroupSysctl where U: core::convert::Into +pub type aya::programs::cgroup_sysctl::CgroupSysctl::Error = core::convert::Infallible +pub fn aya::programs::cgroup_sysctl::CgroupSysctl::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::cgroup_sysctl::CgroupSysctl where U: core::convert::TryFrom +pub type aya::programs::cgroup_sysctl::CgroupSysctl::Error = >::Error +pub fn aya::programs::cgroup_sysctl::CgroupSysctl::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::cgroup_sysctl::CgroupSysctl where T: 'static + core::marker::Sized +pub fn aya::programs::cgroup_sysctl::CgroupSysctl::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::cgroup_sysctl::CgroupSysctl where T: core::marker::Sized +pub fn aya::programs::cgroup_sysctl::CgroupSysctl::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::cgroup_sysctl::CgroupSysctl where T: core::marker::Sized +pub fn aya::programs::cgroup_sysctl::CgroupSysctl::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::cgroup_sysctl::CgroupSysctl +pub fn aya::programs::cgroup_sysctl::CgroupSysctl::from(t: T) -> T +pub struct aya::programs::Extension +impl aya::programs::extension::Extension +pub fn aya::programs::extension::Extension::attach(&mut self) -> core::result::Result +pub fn aya::programs::extension::Extension::attach_to_program(&mut self, program: aya::programs::ProgramFd, func_name: &str) -> core::result::Result +pub fn aya::programs::extension::Extension::detach(&mut self, link_id: aya::programs::extension::ExtensionLinkId) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::extension::Extension::load(&mut self, program: aya::programs::ProgramFd, func_name: &str) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::extension::Extension::take_link(&mut self, link_id: aya::programs::extension::ExtensionLinkId) -> core::result::Result +impl aya::programs::extension::Extension +pub fn aya::programs::extension::Extension::fd(&self) -> core::option::Option +impl aya::programs::extension::Extension +pub fn aya::programs::extension::Extension::from_pin>(path: P) -> core::result::Result +impl aya::programs::extension::Extension +pub fn aya::programs::extension::Extension::pin>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError> +pub fn aya::programs::extension::Extension::unpin(self) -> core::result::Result<(), std::io::error::Error> +impl aya::programs::extension::Extension +pub fn aya::programs::extension::Extension::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +impl core::ops::drop::Drop for aya::programs::extension::Extension +pub fn aya::programs::extension::Extension::drop(&mut self) +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::extension::Extension +pub type &'a aya::programs::extension::Extension::Error = aya::programs::ProgramError +pub fn &'a aya::programs::extension::Extension::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::extension::Extension, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::extension::Extension +pub type &'a mut aya::programs::extension::Extension::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::extension::Extension::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::extension::Extension, aya::programs::ProgramError> +impl core::fmt::Debug for aya::programs::extension::Extension +pub fn aya::programs::extension::Extension::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::extension::Extension +impl core::marker::Sync for aya::programs::extension::Extension +impl core::marker::Unpin for aya::programs::extension::Extension +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::extension::Extension +impl core::panic::unwind_safe::UnwindSafe for aya::programs::extension::Extension +impl core::convert::Into for aya::programs::extension::Extension where U: core::convert::From +pub fn aya::programs::extension::Extension::into(self) -> U +impl core::convert::TryFrom for aya::programs::extension::Extension where U: core::convert::Into +pub type aya::programs::extension::Extension::Error = core::convert::Infallible +pub fn aya::programs::extension::Extension::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::extension::Extension where U: core::convert::TryFrom +pub type aya::programs::extension::Extension::Error = >::Error +pub fn aya::programs::extension::Extension::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::extension::Extension where T: 'static + core::marker::Sized +pub fn aya::programs::extension::Extension::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::extension::Extension where T: core::marker::Sized +pub fn aya::programs::extension::Extension::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::extension::Extension where T: core::marker::Sized +pub fn aya::programs::extension::Extension::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::extension::Extension +pub fn aya::programs::extension::Extension::from(t: T) -> T +pub struct aya::programs::FEntry +impl aya::programs::fentry::FEntry +pub fn aya::programs::fentry::FEntry::attach(&mut self) -> core::result::Result +pub fn aya::programs::fentry::FEntry::detach(&mut self, link_id: aya::programs::fentry::FEntryLinkId) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::fentry::FEntry::load(&mut self, fn_name: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::fentry::FEntry::take_link(&mut self, link_id: aya::programs::fentry::FEntryLinkId) -> core::result::Result +impl aya::programs::fentry::FEntry +pub fn aya::programs::fentry::FEntry::fd(&self) -> core::option::Option +impl aya::programs::fentry::FEntry +pub fn aya::programs::fentry::FEntry::from_pin>(path: P) -> core::result::Result +impl aya::programs::fentry::FEntry +pub fn aya::programs::fentry::FEntry::pin>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError> +pub fn aya::programs::fentry::FEntry::unpin(self) -> core::result::Result<(), std::io::error::Error> +impl aya::programs::fentry::FEntry +pub fn aya::programs::fentry::FEntry::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +impl core::ops::drop::Drop for aya::programs::fentry::FEntry +pub fn aya::programs::fentry::FEntry::drop(&mut self) +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::fentry::FEntry +pub type &'a aya::programs::fentry::FEntry::Error = aya::programs::ProgramError +pub fn &'a aya::programs::fentry::FEntry::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::fentry::FEntry, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::fentry::FEntry +pub type &'a mut aya::programs::fentry::FEntry::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::fentry::FEntry::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::fentry::FEntry, aya::programs::ProgramError> +impl core::fmt::Debug for aya::programs::fentry::FEntry +pub fn aya::programs::fentry::FEntry::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::fentry::FEntry +impl core::marker::Sync for aya::programs::fentry::FEntry +impl core::marker::Unpin for aya::programs::fentry::FEntry +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fentry::FEntry +impl core::panic::unwind_safe::UnwindSafe for aya::programs::fentry::FEntry +impl core::convert::Into for aya::programs::fentry::FEntry where U: core::convert::From +pub fn aya::programs::fentry::FEntry::into(self) -> U +impl core::convert::TryFrom for aya::programs::fentry::FEntry where U: core::convert::Into +pub type aya::programs::fentry::FEntry::Error = core::convert::Infallible +pub fn aya::programs::fentry::FEntry::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::fentry::FEntry where U: core::convert::TryFrom +pub type aya::programs::fentry::FEntry::Error = >::Error +pub fn aya::programs::fentry::FEntry::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::fentry::FEntry where T: 'static + core::marker::Sized +pub fn aya::programs::fentry::FEntry::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::fentry::FEntry where T: core::marker::Sized +pub fn aya::programs::fentry::FEntry::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::fentry::FEntry where T: core::marker::Sized +pub fn aya::programs::fentry::FEntry::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::fentry::FEntry +pub fn aya::programs::fentry::FEntry::from(t: T) -> T +pub struct aya::programs::FExit +impl aya::programs::fexit::FExit +pub fn aya::programs::fexit::FExit::attach(&mut self) -> core::result::Result +pub fn aya::programs::fexit::FExit::detach(&mut self, link_id: aya::programs::fexit::FExitLinkId) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::fexit::FExit::load(&mut self, fn_name: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::fexit::FExit::take_link(&mut self, link_id: aya::programs::fexit::FExitLinkId) -> core::result::Result +impl aya::programs::fexit::FExit +pub fn aya::programs::fexit::FExit::fd(&self) -> core::option::Option +impl aya::programs::fexit::FExit +pub fn aya::programs::fexit::FExit::from_pin>(path: P) -> core::result::Result +impl aya::programs::fexit::FExit +pub fn aya::programs::fexit::FExit::pin>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError> +pub fn aya::programs::fexit::FExit::unpin(self) -> core::result::Result<(), std::io::error::Error> +impl aya::programs::fexit::FExit +pub fn aya::programs::fexit::FExit::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +impl core::ops::drop::Drop for aya::programs::fexit::FExit +pub fn aya::programs::fexit::FExit::drop(&mut self) +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::fexit::FExit +pub type &'a aya::programs::fexit::FExit::Error = aya::programs::ProgramError +pub fn &'a aya::programs::fexit::FExit::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::fexit::FExit, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::fexit::FExit +pub type &'a mut aya::programs::fexit::FExit::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::fexit::FExit::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::fexit::FExit, aya::programs::ProgramError> +impl core::fmt::Debug for aya::programs::fexit::FExit +pub fn aya::programs::fexit::FExit::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::fexit::FExit +impl core::marker::Sync for aya::programs::fexit::FExit +impl core::marker::Unpin for aya::programs::fexit::FExit +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fexit::FExit +impl core::panic::unwind_safe::UnwindSafe for aya::programs::fexit::FExit +impl core::convert::Into for aya::programs::fexit::FExit where U: core::convert::From +pub fn aya::programs::fexit::FExit::into(self) -> U +impl core::convert::TryFrom for aya::programs::fexit::FExit where U: core::convert::Into +pub type aya::programs::fexit::FExit::Error = core::convert::Infallible +pub fn aya::programs::fexit::FExit::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::fexit::FExit where U: core::convert::TryFrom +pub type aya::programs::fexit::FExit::Error = >::Error +pub fn aya::programs::fexit::FExit::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::fexit::FExit where T: 'static + core::marker::Sized +pub fn aya::programs::fexit::FExit::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::fexit::FExit where T: core::marker::Sized +pub fn aya::programs::fexit::FExit::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::fexit::FExit where T: core::marker::Sized +pub fn aya::programs::fexit::FExit::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::fexit::FExit +pub fn aya::programs::fexit::FExit::from(t: T) -> T +pub struct aya::programs::KProbe +impl aya::programs::kprobe::KProbe +pub fn aya::programs::kprobe::KProbe::attach(&mut self, fn_name: &str, offset: u64) -> core::result::Result +pub fn aya::programs::kprobe::KProbe::detach(&mut self, link_id: aya::programs::kprobe::KProbeLinkId) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::kprobe::KProbe::from_pin>(path: P, kind: aya::programs::ProbeKind) -> core::result::Result +pub fn aya::programs::kprobe::KProbe::kind(&self) -> aya::programs::ProbeKind +pub fn aya::programs::kprobe::KProbe::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::kprobe::KProbe::take_link(&mut self, link_id: aya::programs::kprobe::KProbeLinkId) -> core::result::Result +impl aya::programs::kprobe::KProbe +pub fn aya::programs::kprobe::KProbe::fd(&self) -> core::option::Option +impl aya::programs::kprobe::KProbe +pub fn aya::programs::kprobe::KProbe::pin>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError> +pub fn aya::programs::kprobe::KProbe::unpin(self) -> core::result::Result<(), std::io::error::Error> +impl aya::programs::kprobe::KProbe +pub fn aya::programs::kprobe::KProbe::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +impl core::ops::drop::Drop for aya::programs::kprobe::KProbe +pub fn aya::programs::kprobe::KProbe::drop(&mut self) +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::kprobe::KProbe +pub type &'a aya::programs::kprobe::KProbe::Error = aya::programs::ProgramError +pub fn &'a aya::programs::kprobe::KProbe::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::kprobe::KProbe, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::kprobe::KProbe +pub type &'a mut aya::programs::kprobe::KProbe::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::kprobe::KProbe::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::kprobe::KProbe, aya::programs::ProgramError> +impl core::fmt::Debug for aya::programs::kprobe::KProbe +pub fn aya::programs::kprobe::KProbe::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::kprobe::KProbe +impl core::marker::Sync for aya::programs::kprobe::KProbe +impl core::marker::Unpin for aya::programs::kprobe::KProbe +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::kprobe::KProbe +impl core::panic::unwind_safe::UnwindSafe for aya::programs::kprobe::KProbe +impl core::convert::Into for aya::programs::kprobe::KProbe where U: core::convert::From +pub fn aya::programs::kprobe::KProbe::into(self) -> U +impl core::convert::TryFrom for aya::programs::kprobe::KProbe where U: core::convert::Into +pub type aya::programs::kprobe::KProbe::Error = core::convert::Infallible +pub fn aya::programs::kprobe::KProbe::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::kprobe::KProbe where U: core::convert::TryFrom +pub type aya::programs::kprobe::KProbe::Error = >::Error +pub fn aya::programs::kprobe::KProbe::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::kprobe::KProbe where T: 'static + core::marker::Sized +pub fn aya::programs::kprobe::KProbe::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::kprobe::KProbe where T: core::marker::Sized +pub fn aya::programs::kprobe::KProbe::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::kprobe::KProbe where T: core::marker::Sized +pub fn aya::programs::kprobe::KProbe::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::kprobe::KProbe +pub fn aya::programs::kprobe::KProbe::from(t: T) -> T +pub struct aya::programs::LircMode2 +impl aya::programs::lirc_mode2::LircMode2 +pub fn aya::programs::lirc_mode2::LircMode2::attach(&mut self, lircdev: T) -> core::result::Result +pub fn aya::programs::lirc_mode2::LircMode2::detach(&mut self, link_id: aya::programs::lirc_mode2::LircLinkId) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::lirc_mode2::LircMode2::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::lirc_mode2::LircMode2::query(target_fd: T) -> core::result::Result, aya::programs::ProgramError> +pub fn aya::programs::lirc_mode2::LircMode2::take_link(&mut self, link_id: aya::programs::lirc_mode2::LircLinkId) -> core::result::Result +impl aya::programs::lirc_mode2::LircMode2 +pub fn aya::programs::lirc_mode2::LircMode2::fd(&self) -> core::option::Option +impl aya::programs::lirc_mode2::LircMode2 +pub fn aya::programs::lirc_mode2::LircMode2::from_pin>(path: P) -> core::result::Result +impl aya::programs::lirc_mode2::LircMode2 +pub fn aya::programs::lirc_mode2::LircMode2::pin>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError> +pub fn aya::programs::lirc_mode2::LircMode2::unpin(self) -> core::result::Result<(), std::io::error::Error> +impl aya::programs::lirc_mode2::LircMode2 +pub fn aya::programs::lirc_mode2::LircMode2::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +impl core::ops::drop::Drop for aya::programs::lirc_mode2::LircMode2 +pub fn aya::programs::lirc_mode2::LircMode2::drop(&mut self) +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::lirc_mode2::LircMode2 +pub type &'a aya::programs::lirc_mode2::LircMode2::Error = aya::programs::ProgramError +pub fn &'a aya::programs::lirc_mode2::LircMode2::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::lirc_mode2::LircMode2, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::lirc_mode2::LircMode2 +pub type &'a mut aya::programs::lirc_mode2::LircMode2::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::lirc_mode2::LircMode2::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::lirc_mode2::LircMode2, aya::programs::ProgramError> +impl core::fmt::Debug for aya::programs::lirc_mode2::LircMode2 +pub fn aya::programs::lirc_mode2::LircMode2::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::lirc_mode2::LircMode2 +impl core::marker::Sync for aya::programs::lirc_mode2::LircMode2 +impl core::marker::Unpin for aya::programs::lirc_mode2::LircMode2 +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lirc_mode2::LircMode2 +impl core::panic::unwind_safe::UnwindSafe for aya::programs::lirc_mode2::LircMode2 +impl core::convert::Into for aya::programs::lirc_mode2::LircMode2 where U: core::convert::From +pub fn aya::programs::lirc_mode2::LircMode2::into(self) -> U +impl core::convert::TryFrom for aya::programs::lirc_mode2::LircMode2 where U: core::convert::Into +pub type aya::programs::lirc_mode2::LircMode2::Error = core::convert::Infallible +pub fn aya::programs::lirc_mode2::LircMode2::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::lirc_mode2::LircMode2 where U: core::convert::TryFrom +pub type aya::programs::lirc_mode2::LircMode2::Error = >::Error +pub fn aya::programs::lirc_mode2::LircMode2::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::lirc_mode2::LircMode2 where T: 'static + core::marker::Sized +pub fn aya::programs::lirc_mode2::LircMode2::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::lirc_mode2::LircMode2 where T: core::marker::Sized +pub fn aya::programs::lirc_mode2::LircMode2::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::lirc_mode2::LircMode2 where T: core::marker::Sized +pub fn aya::programs::lirc_mode2::LircMode2::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::lirc_mode2::LircMode2 +pub fn aya::programs::lirc_mode2::LircMode2::from(t: T) -> T +pub struct aya::programs::Lsm +impl aya::programs::lsm::Lsm +pub fn aya::programs::lsm::Lsm::attach(&mut self) -> core::result::Result +pub fn aya::programs::lsm::Lsm::detach(&mut self, link_id: aya::programs::lsm::LsmLinkId) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::lsm::Lsm::load(&mut self, lsm_hook_name: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::lsm::Lsm::take_link(&mut self, link_id: aya::programs::lsm::LsmLinkId) -> core::result::Result +impl aya::programs::lsm::Lsm +pub fn aya::programs::lsm::Lsm::fd(&self) -> core::option::Option +impl aya::programs::lsm::Lsm +pub fn aya::programs::lsm::Lsm::from_pin>(path: P) -> core::result::Result +impl aya::programs::lsm::Lsm +pub fn aya::programs::lsm::Lsm::pin>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError> +pub fn aya::programs::lsm::Lsm::unpin(self) -> core::result::Result<(), std::io::error::Error> +impl aya::programs::lsm::Lsm +pub fn aya::programs::lsm::Lsm::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +impl core::ops::drop::Drop for aya::programs::lsm::Lsm +pub fn aya::programs::lsm::Lsm::drop(&mut self) +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::lsm::Lsm +pub type &'a aya::programs::lsm::Lsm::Error = aya::programs::ProgramError +pub fn &'a aya::programs::lsm::Lsm::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::lsm::Lsm, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::lsm::Lsm +pub type &'a mut aya::programs::lsm::Lsm::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::lsm::Lsm::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::lsm::Lsm, aya::programs::ProgramError> +impl core::fmt::Debug for aya::programs::lsm::Lsm +pub fn aya::programs::lsm::Lsm::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::lsm::Lsm +impl core::marker::Sync for aya::programs::lsm::Lsm +impl core::marker::Unpin for aya::programs::lsm::Lsm +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lsm::Lsm +impl core::panic::unwind_safe::UnwindSafe for aya::programs::lsm::Lsm +impl core::convert::Into for aya::programs::lsm::Lsm where U: core::convert::From +pub fn aya::programs::lsm::Lsm::into(self) -> U +impl core::convert::TryFrom for aya::programs::lsm::Lsm where U: core::convert::Into +pub type aya::programs::lsm::Lsm::Error = core::convert::Infallible +pub fn aya::programs::lsm::Lsm::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::lsm::Lsm where U: core::convert::TryFrom +pub type aya::programs::lsm::Lsm::Error = >::Error +pub fn aya::programs::lsm::Lsm::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::lsm::Lsm where T: 'static + core::marker::Sized +pub fn aya::programs::lsm::Lsm::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::lsm::Lsm where T: core::marker::Sized +pub fn aya::programs::lsm::Lsm::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::lsm::Lsm where T: core::marker::Sized +pub fn aya::programs::lsm::Lsm::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::lsm::Lsm +pub fn aya::programs::lsm::Lsm::from(t: T) -> T +pub struct aya::programs::PerfEvent +impl aya::programs::perf_event::PerfEvent +pub fn aya::programs::perf_event::PerfEvent::attach(&mut self, perf_type: aya::programs::perf_event::PerfTypeId, config: u64, scope: aya::programs::perf_event::PerfEventScope, sample_policy: aya::programs::perf_event::SamplePolicy) -> core::result::Result +pub fn aya::programs::perf_event::PerfEvent::detach(&mut self, link_id: aya::programs::perf_event::PerfEventLinkId) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::perf_event::PerfEvent::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::perf_event::PerfEvent::take_link(&mut self, link_id: aya::programs::perf_event::PerfEventLinkId) -> core::result::Result +impl aya::programs::perf_event::PerfEvent +pub fn aya::programs::perf_event::PerfEvent::fd(&self) -> core::option::Option +impl aya::programs::perf_event::PerfEvent +pub fn aya::programs::perf_event::PerfEvent::from_pin>(path: P) -> core::result::Result +impl aya::programs::perf_event::PerfEvent +pub fn aya::programs::perf_event::PerfEvent::pin>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError> +pub fn aya::programs::perf_event::PerfEvent::unpin(self) -> core::result::Result<(), std::io::error::Error> +impl aya::programs::perf_event::PerfEvent +pub fn aya::programs::perf_event::PerfEvent::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +impl core::ops::drop::Drop for aya::programs::perf_event::PerfEvent +pub fn aya::programs::perf_event::PerfEvent::drop(&mut self) +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::perf_event::PerfEvent +pub type &'a aya::programs::perf_event::PerfEvent::Error = aya::programs::ProgramError +pub fn &'a aya::programs::perf_event::PerfEvent::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::perf_event::PerfEvent, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::perf_event::PerfEvent +pub type &'a mut aya::programs::perf_event::PerfEvent::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::perf_event::PerfEvent::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::perf_event::PerfEvent, aya::programs::ProgramError> +impl core::fmt::Debug for aya::programs::perf_event::PerfEvent +pub fn aya::programs::perf_event::PerfEvent::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::perf_event::PerfEvent +impl core::marker::Sync for aya::programs::perf_event::PerfEvent +impl core::marker::Unpin for aya::programs::perf_event::PerfEvent +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfEvent +impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfEvent +impl core::convert::Into for aya::programs::perf_event::PerfEvent where U: core::convert::From +pub fn aya::programs::perf_event::PerfEvent::into(self) -> U +impl core::convert::TryFrom for aya::programs::perf_event::PerfEvent where U: core::convert::Into +pub type aya::programs::perf_event::PerfEvent::Error = core::convert::Infallible +pub fn aya::programs::perf_event::PerfEvent::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::perf_event::PerfEvent where U: core::convert::TryFrom +pub type aya::programs::perf_event::PerfEvent::Error = >::Error +pub fn aya::programs::perf_event::PerfEvent::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::perf_event::PerfEvent where T: 'static + core::marker::Sized +pub fn aya::programs::perf_event::PerfEvent::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::perf_event::PerfEvent where T: core::marker::Sized +pub fn aya::programs::perf_event::PerfEvent::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::perf_event::PerfEvent where T: core::marker::Sized +pub fn aya::programs::perf_event::PerfEvent::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::perf_event::PerfEvent +pub fn aya::programs::perf_event::PerfEvent::from(t: T) -> T +pub struct aya::programs::ProgramFd(_) +impl std::os::fd::raw::AsRawFd for aya::programs::ProgramFd +pub fn aya::programs::ProgramFd::as_raw_fd(&self) -> std::os::fd::raw::RawFd +impl core::clone::Clone for aya::programs::ProgramFd +pub fn aya::programs::ProgramFd::clone(&self) -> aya::programs::ProgramFd +impl core::marker::Copy for aya::programs::ProgramFd +impl core::marker::Send for aya::programs::ProgramFd +impl core::marker::Sync for aya::programs::ProgramFd +impl core::marker::Unpin for aya::programs::ProgramFd +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::ProgramFd +impl core::panic::unwind_safe::UnwindSafe for aya::programs::ProgramFd +impl core::convert::Into for aya::programs::ProgramFd where U: core::convert::From +pub fn aya::programs::ProgramFd::into(self) -> U +impl core::convert::TryFrom for aya::programs::ProgramFd where U: core::convert::Into +pub type aya::programs::ProgramFd::Error = core::convert::Infallible +pub fn aya::programs::ProgramFd::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::ProgramFd where U: core::convert::TryFrom +pub type aya::programs::ProgramFd::Error = >::Error +pub fn aya::programs::ProgramFd::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya::programs::ProgramFd where T: core::clone::Clone +pub type aya::programs::ProgramFd::Owned = T +pub fn aya::programs::ProgramFd::clone_into(&self, target: &mut T) +pub fn aya::programs::ProgramFd::to_owned(&self) -> T +impl core::any::Any for aya::programs::ProgramFd where T: 'static + core::marker::Sized +pub fn aya::programs::ProgramFd::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::ProgramFd where T: core::marker::Sized +pub fn aya::programs::ProgramFd::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::ProgramFd where T: core::marker::Sized +pub fn aya::programs::ProgramFd::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::ProgramFd +pub fn aya::programs::ProgramFd::from(t: T) -> T +pub struct aya::programs::ProgramInfo(_) +impl aya::programs::ProgramInfo +pub fn aya::programs::ProgramInfo::fd(&self) -> core::result::Result +pub fn aya::programs::ProgramInfo::from_pin>(path: P) -> core::result::Result +pub fn aya::programs::ProgramInfo::id(&self) -> u32 +pub fn aya::programs::ProgramInfo::name(&self) -> &[u8] +pub fn aya::programs::ProgramInfo::name_as_str(&self) -> core::option::Option<&str> +impl core::fmt::Debug for aya::programs::ProgramInfo +pub fn aya::programs::ProgramInfo::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::ProgramInfo +impl core::marker::Sync for aya::programs::ProgramInfo +impl core::marker::Unpin for aya::programs::ProgramInfo +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::ProgramInfo +impl core::panic::unwind_safe::UnwindSafe for aya::programs::ProgramInfo +impl core::convert::Into for aya::programs::ProgramInfo where U: core::convert::From +pub fn aya::programs::ProgramInfo::into(self) -> U +impl core::convert::TryFrom for aya::programs::ProgramInfo where U: core::convert::Into +pub type aya::programs::ProgramInfo::Error = core::convert::Infallible +pub fn aya::programs::ProgramInfo::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::ProgramInfo where U: core::convert::TryFrom +pub type aya::programs::ProgramInfo::Error = >::Error +pub fn aya::programs::ProgramInfo::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::ProgramInfo where T: 'static + core::marker::Sized +pub fn aya::programs::ProgramInfo::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::ProgramInfo where T: core::marker::Sized +pub fn aya::programs::ProgramInfo::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::ProgramInfo where T: core::marker::Sized +pub fn aya::programs::ProgramInfo::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::ProgramInfo +pub fn aya::programs::ProgramInfo::from(t: T) -> T +pub struct aya::programs::ProgramsIter +impl core::iter::traits::iterator::Iterator for aya::programs::ProgramsIter +pub type aya::programs::ProgramsIter::Item = core::result::Result +pub fn aya::programs::ProgramsIter::next(&mut self) -> core::option::Option +impl core::marker::Send for aya::programs::ProgramsIter +impl core::marker::Sync for aya::programs::ProgramsIter +impl core::marker::Unpin for aya::programs::ProgramsIter +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::ProgramsIter +impl core::panic::unwind_safe::UnwindSafe for aya::programs::ProgramsIter +impl core::iter::traits::collect::IntoIterator for aya::programs::ProgramsIter where I: core::iter::traits::iterator::Iterator +pub type aya::programs::ProgramsIter::IntoIter = I +pub type aya::programs::ProgramsIter::Item = ::Item +pub fn aya::programs::ProgramsIter::into_iter(self) -> I +impl core::convert::Into for aya::programs::ProgramsIter where U: core::convert::From +pub fn aya::programs::ProgramsIter::into(self) -> U +impl core::convert::TryFrom for aya::programs::ProgramsIter where U: core::convert::Into +pub type aya::programs::ProgramsIter::Error = core::convert::Infallible +pub fn aya::programs::ProgramsIter::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::ProgramsIter where U: core::convert::TryFrom +pub type aya::programs::ProgramsIter::Error = >::Error +pub fn aya::programs::ProgramsIter::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::ProgramsIter where T: 'static + core::marker::Sized +pub fn aya::programs::ProgramsIter::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::ProgramsIter where T: core::marker::Sized +pub fn aya::programs::ProgramsIter::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::ProgramsIter where T: core::marker::Sized +pub fn aya::programs::ProgramsIter::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::ProgramsIter +pub fn aya::programs::ProgramsIter::from(t: T) -> T +pub struct aya::programs::RawTracePoint +impl aya::programs::RawTracePoint +pub fn aya::programs::RawTracePoint::attach(&mut self, tp_name: &str) -> core::result::Result +pub fn aya::programs::RawTracePoint::detach(&mut self, link_id: RawTracePointLinkId) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::RawTracePoint::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::RawTracePoint::take_link(&mut self, link_id: RawTracePointLinkId) -> core::result::Result +impl aya::programs::RawTracePoint +pub fn aya::programs::RawTracePoint::fd(&self) -> core::option::Option +impl aya::programs::RawTracePoint +pub fn aya::programs::RawTracePoint::from_pin>(path: P) -> core::result::Result +impl aya::programs::RawTracePoint +pub fn aya::programs::RawTracePoint::pin>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError> +pub fn aya::programs::RawTracePoint::unpin(self) -> core::result::Result<(), std::io::error::Error> +impl aya::programs::RawTracePoint +pub fn aya::programs::RawTracePoint::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +impl core::ops::drop::Drop for aya::programs::RawTracePoint +pub fn aya::programs::RawTracePoint::drop(&mut self) +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::RawTracePoint +pub type &'a aya::programs::RawTracePoint::Error = aya::programs::ProgramError +pub fn &'a aya::programs::RawTracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::RawTracePoint, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::RawTracePoint +pub type &'a mut aya::programs::RawTracePoint::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::RawTracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::RawTracePoint, aya::programs::ProgramError> +impl core::fmt::Debug for aya::programs::RawTracePoint +pub fn aya::programs::RawTracePoint::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::RawTracePoint +impl core::marker::Sync for aya::programs::RawTracePoint +impl core::marker::Unpin for aya::programs::RawTracePoint +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::RawTracePoint +impl core::panic::unwind_safe::UnwindSafe for aya::programs::RawTracePoint +impl core::convert::Into for aya::programs::RawTracePoint where U: core::convert::From +pub fn aya::programs::RawTracePoint::into(self) -> U +impl core::convert::TryFrom for aya::programs::RawTracePoint where U: core::convert::Into +pub type aya::programs::RawTracePoint::Error = core::convert::Infallible +pub fn aya::programs::RawTracePoint::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::RawTracePoint where U: core::convert::TryFrom +pub type aya::programs::RawTracePoint::Error = >::Error +pub fn aya::programs::RawTracePoint::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::RawTracePoint where T: 'static + core::marker::Sized +pub fn aya::programs::RawTracePoint::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::RawTracePoint where T: core::marker::Sized +pub fn aya::programs::RawTracePoint::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::RawTracePoint where T: core::marker::Sized +pub fn aya::programs::RawTracePoint::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::RawTracePoint +pub fn aya::programs::RawTracePoint::from(t: T) -> T +pub struct aya::programs::SchedClassifier +impl aya::programs::tc::SchedClassifier +pub fn aya::programs::tc::SchedClassifier::attach(&mut self, interface: &str, attach_type: aya::programs::tc::TcAttachType) -> core::result::Result +pub fn aya::programs::tc::SchedClassifier::attach_with_options(&mut self, interface: &str, attach_type: aya::programs::tc::TcAttachType, options: aya::programs::tc::TcOptions) -> core::result::Result +pub fn aya::programs::tc::SchedClassifier::detach(&mut self, link_id: aya::programs::tc::SchedClassifierLinkId) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::tc::SchedClassifier::from_pin>(path: P) -> core::result::Result +pub fn aya::programs::tc::SchedClassifier::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::tc::SchedClassifier::take_link(&mut self, link_id: aya::programs::tc::SchedClassifierLinkId) -> core::result::Result +impl aya::programs::tc::SchedClassifier +pub fn aya::programs::tc::SchedClassifier::fd(&self) -> core::option::Option +impl aya::programs::tc::SchedClassifier +pub fn aya::programs::tc::SchedClassifier::pin>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError> +pub fn aya::programs::tc::SchedClassifier::unpin(self) -> core::result::Result<(), std::io::error::Error> +impl aya::programs::tc::SchedClassifier +pub fn aya::programs::tc::SchedClassifier::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +impl core::ops::drop::Drop for aya::programs::tc::SchedClassifier +pub fn aya::programs::tc::SchedClassifier::drop(&mut self) +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::tc::SchedClassifier +pub type &'a aya::programs::tc::SchedClassifier::Error = aya::programs::ProgramError +pub fn &'a aya::programs::tc::SchedClassifier::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::tc::SchedClassifier, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::tc::SchedClassifier +pub type &'a mut aya::programs::tc::SchedClassifier::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::tc::SchedClassifier::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::tc::SchedClassifier, aya::programs::ProgramError> +impl core::fmt::Debug for aya::programs::tc::SchedClassifier +pub fn aya::programs::tc::SchedClassifier::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::tc::SchedClassifier +impl core::marker::Sync for aya::programs::tc::SchedClassifier +impl core::marker::Unpin for aya::programs::tc::SchedClassifier +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::SchedClassifier +impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::SchedClassifier +impl core::convert::Into for aya::programs::tc::SchedClassifier where U: core::convert::From +pub fn aya::programs::tc::SchedClassifier::into(self) -> U +impl core::convert::TryFrom for aya::programs::tc::SchedClassifier where U: core::convert::Into +pub type aya::programs::tc::SchedClassifier::Error = core::convert::Infallible +pub fn aya::programs::tc::SchedClassifier::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::tc::SchedClassifier where U: core::convert::TryFrom +pub type aya::programs::tc::SchedClassifier::Error = >::Error +pub fn aya::programs::tc::SchedClassifier::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::tc::SchedClassifier where T: 'static + core::marker::Sized +pub fn aya::programs::tc::SchedClassifier::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::tc::SchedClassifier where T: core::marker::Sized +pub fn aya::programs::tc::SchedClassifier::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::tc::SchedClassifier where T: core::marker::Sized +pub fn aya::programs::tc::SchedClassifier::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::tc::SchedClassifier +pub fn aya::programs::tc::SchedClassifier::from(t: T) -> T +pub struct aya::programs::SkLookup +impl aya::programs::SkLookup +pub fn aya::programs::SkLookup::attach(&mut self, netns: T) -> core::result::Result +pub fn aya::programs::SkLookup::detach(&mut self, link_id: SkLookupLinkId) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::SkLookup::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::SkLookup::take_link(&mut self, link_id: SkLookupLinkId) -> core::result::Result +impl aya::programs::SkLookup +pub fn aya::programs::SkLookup::fd(&self) -> core::option::Option +impl aya::programs::SkLookup +pub fn aya::programs::SkLookup::from_pin>(path: P) -> core::result::Result +impl aya::programs::SkLookup +pub fn aya::programs::SkLookup::pin>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError> +pub fn aya::programs::SkLookup::unpin(self) -> core::result::Result<(), std::io::error::Error> +impl aya::programs::SkLookup +pub fn aya::programs::SkLookup::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +impl core::ops::drop::Drop for aya::programs::SkLookup +pub fn aya::programs::SkLookup::drop(&mut self) +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::SkLookup +pub type &'a aya::programs::SkLookup::Error = aya::programs::ProgramError +pub fn &'a aya::programs::SkLookup::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::SkLookup, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::SkLookup +pub type &'a mut aya::programs::SkLookup::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::SkLookup::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::SkLookup, aya::programs::ProgramError> +impl core::fmt::Debug for aya::programs::SkLookup +pub fn aya::programs::SkLookup::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::SkLookup +impl core::marker::Sync for aya::programs::SkLookup +impl core::marker::Unpin for aya::programs::SkLookup +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::SkLookup +impl core::panic::unwind_safe::UnwindSafe for aya::programs::SkLookup +impl core::convert::Into for aya::programs::SkLookup where U: core::convert::From +pub fn aya::programs::SkLookup::into(self) -> U +impl core::convert::TryFrom for aya::programs::SkLookup where U: core::convert::Into +pub type aya::programs::SkLookup::Error = core::convert::Infallible +pub fn aya::programs::SkLookup::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::SkLookup where U: core::convert::TryFrom +pub type aya::programs::SkLookup::Error = >::Error +pub fn aya::programs::SkLookup::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::SkLookup where T: 'static + core::marker::Sized +pub fn aya::programs::SkLookup::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::SkLookup where T: core::marker::Sized +pub fn aya::programs::SkLookup::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::SkLookup where T: core::marker::Sized +pub fn aya::programs::SkLookup::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::SkLookup +pub fn aya::programs::SkLookup::from(t: T) -> T +pub struct aya::programs::SkMsg +impl aya::programs::SkMsg +pub fn aya::programs::SkMsg::attach(&mut self, map: aya::maps::sock::SockMapFd) -> core::result::Result +pub fn aya::programs::SkMsg::detach(&mut self, link_id: SkMsgLinkId) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::SkMsg::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::SkMsg::take_link(&mut self, link_id: SkMsgLinkId) -> core::result::Result +impl aya::programs::SkMsg +pub fn aya::programs::SkMsg::fd(&self) -> core::option::Option +impl aya::programs::SkMsg +pub fn aya::programs::SkMsg::from_pin>(path: P) -> core::result::Result +impl aya::programs::SkMsg +pub fn aya::programs::SkMsg::pin>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError> +pub fn aya::programs::SkMsg::unpin(self) -> core::result::Result<(), std::io::error::Error> +impl aya::programs::SkMsg +pub fn aya::programs::SkMsg::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +impl core::ops::drop::Drop for aya::programs::SkMsg +pub fn aya::programs::SkMsg::drop(&mut self) +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::SkMsg +pub type &'a aya::programs::SkMsg::Error = aya::programs::ProgramError +pub fn &'a aya::programs::SkMsg::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::SkMsg, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::SkMsg +pub type &'a mut aya::programs::SkMsg::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::SkMsg::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::SkMsg, aya::programs::ProgramError> +impl core::fmt::Debug for aya::programs::SkMsg +pub fn aya::programs::SkMsg::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::SkMsg +impl core::marker::Sync for aya::programs::SkMsg +impl core::marker::Unpin for aya::programs::SkMsg +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::SkMsg +impl core::panic::unwind_safe::UnwindSafe for aya::programs::SkMsg +impl core::convert::Into for aya::programs::SkMsg where U: core::convert::From +pub fn aya::programs::SkMsg::into(self) -> U +impl core::convert::TryFrom for aya::programs::SkMsg where U: core::convert::Into +pub type aya::programs::SkMsg::Error = core::convert::Infallible +pub fn aya::programs::SkMsg::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::SkMsg where U: core::convert::TryFrom +pub type aya::programs::SkMsg::Error = >::Error +pub fn aya::programs::SkMsg::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::SkMsg where T: 'static + core::marker::Sized +pub fn aya::programs::SkMsg::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::SkMsg where T: core::marker::Sized +pub fn aya::programs::SkMsg::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::SkMsg where T: core::marker::Sized +pub fn aya::programs::SkMsg::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::SkMsg +pub fn aya::programs::SkMsg::from(t: T) -> T +pub struct aya::programs::SkSkb +impl aya::programs::SkSkb +pub fn aya::programs::SkSkb::attach(&mut self, map: aya::maps::sock::SockMapFd) -> core::result::Result +pub fn aya::programs::SkSkb::detach(&mut self, link_id: SkSkbLinkId) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::SkSkb::from_pin>(path: P, kind: aya::programs::SkSkbKind) -> core::result::Result +pub fn aya::programs::SkSkb::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::SkSkb::take_link(&mut self, link_id: SkSkbLinkId) -> core::result::Result +impl aya::programs::SkSkb +pub fn aya::programs::SkSkb::fd(&self) -> core::option::Option +impl aya::programs::SkSkb +pub fn aya::programs::SkSkb::pin>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError> +pub fn aya::programs::SkSkb::unpin(self) -> core::result::Result<(), std::io::error::Error> +impl aya::programs::SkSkb +pub fn aya::programs::SkSkb::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +impl core::ops::drop::Drop for aya::programs::SkSkb +pub fn aya::programs::SkSkb::drop(&mut self) +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::SkSkb +pub type &'a aya::programs::SkSkb::Error = aya::programs::ProgramError +pub fn &'a aya::programs::SkSkb::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::SkSkb, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::SkSkb +pub type &'a mut aya::programs::SkSkb::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::SkSkb::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::SkSkb, aya::programs::ProgramError> +impl core::fmt::Debug for aya::programs::SkSkb +pub fn aya::programs::SkSkb::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::SkSkb +impl core::marker::Sync for aya::programs::SkSkb +impl core::marker::Unpin for aya::programs::SkSkb +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::SkSkb +impl core::panic::unwind_safe::UnwindSafe for aya::programs::SkSkb +impl core::convert::Into for aya::programs::SkSkb where U: core::convert::From +pub fn aya::programs::SkSkb::into(self) -> U +impl core::convert::TryFrom for aya::programs::SkSkb where U: core::convert::Into +pub type aya::programs::SkSkb::Error = core::convert::Infallible +pub fn aya::programs::SkSkb::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::SkSkb where U: core::convert::TryFrom +pub type aya::programs::SkSkb::Error = >::Error +pub fn aya::programs::SkSkb::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::SkSkb where T: 'static + core::marker::Sized +pub fn aya::programs::SkSkb::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::SkSkb where T: core::marker::Sized +pub fn aya::programs::SkSkb::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::SkSkb where T: core::marker::Sized +pub fn aya::programs::SkSkb::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::SkSkb +pub fn aya::programs::SkSkb::from(t: T) -> T +pub struct aya::programs::SockOps +impl aya::programs::SockOps +pub fn aya::programs::SockOps::attach(&mut self, cgroup: T) -> core::result::Result +pub fn aya::programs::SockOps::detach(&mut self, link_id: SockOpsLinkId) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::SockOps::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::SockOps::take_link(&mut self, link_id: SockOpsLinkId) -> core::result::Result +impl aya::programs::SockOps +pub fn aya::programs::SockOps::fd(&self) -> core::option::Option +impl aya::programs::SockOps +pub fn aya::programs::SockOps::from_pin>(path: P) -> core::result::Result +impl aya::programs::SockOps +pub fn aya::programs::SockOps::pin>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError> +pub fn aya::programs::SockOps::unpin(self) -> core::result::Result<(), std::io::error::Error> +impl aya::programs::SockOps +pub fn aya::programs::SockOps::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +impl core::ops::drop::Drop for aya::programs::SockOps +pub fn aya::programs::SockOps::drop(&mut self) +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::SockOps +pub type &'a aya::programs::SockOps::Error = aya::programs::ProgramError +pub fn &'a aya::programs::SockOps::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::SockOps, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::SockOps +pub type &'a mut aya::programs::SockOps::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::SockOps::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::SockOps, aya::programs::ProgramError> +impl core::fmt::Debug for aya::programs::SockOps +pub fn aya::programs::SockOps::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::SockOps +impl core::marker::Sync for aya::programs::SockOps +impl core::marker::Unpin for aya::programs::SockOps +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::SockOps +impl core::panic::unwind_safe::UnwindSafe for aya::programs::SockOps +impl core::convert::Into for aya::programs::SockOps where U: core::convert::From +pub fn aya::programs::SockOps::into(self) -> U +impl core::convert::TryFrom for aya::programs::SockOps where U: core::convert::Into +pub type aya::programs::SockOps::Error = core::convert::Infallible +pub fn aya::programs::SockOps::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::SockOps where U: core::convert::TryFrom +pub type aya::programs::SockOps::Error = >::Error +pub fn aya::programs::SockOps::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::SockOps where T: 'static + core::marker::Sized +pub fn aya::programs::SockOps::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::SockOps where T: core::marker::Sized +pub fn aya::programs::SockOps::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::SockOps where T: core::marker::Sized +pub fn aya::programs::SockOps::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::SockOps +pub fn aya::programs::SockOps::from(t: T) -> T +pub struct aya::programs::SocketFilter +impl aya::programs::SocketFilter +pub fn aya::programs::SocketFilter::attach(&mut self, socket: T) -> core::result::Result +pub fn aya::programs::SocketFilter::detach(&mut self, link_id: SocketFilterLinkId) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::SocketFilter::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::SocketFilter::take_link(&mut self, link_id: SocketFilterLinkId) -> core::result::Result +impl aya::programs::SocketFilter +pub fn aya::programs::SocketFilter::fd(&self) -> core::option::Option +impl aya::programs::SocketFilter +pub fn aya::programs::SocketFilter::from_pin>(path: P) -> core::result::Result +impl aya::programs::SocketFilter +pub fn aya::programs::SocketFilter::pin>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError> +pub fn aya::programs::SocketFilter::unpin(self) -> core::result::Result<(), std::io::error::Error> +impl aya::programs::SocketFilter +pub fn aya::programs::SocketFilter::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +impl core::ops::drop::Drop for aya::programs::SocketFilter +pub fn aya::programs::SocketFilter::drop(&mut self) +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::SocketFilter +pub type &'a aya::programs::SocketFilter::Error = aya::programs::ProgramError +pub fn &'a aya::programs::SocketFilter::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::SocketFilter, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::SocketFilter +pub type &'a mut aya::programs::SocketFilter::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::SocketFilter::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::SocketFilter, aya::programs::ProgramError> +impl core::fmt::Debug for aya::programs::SocketFilter +pub fn aya::programs::SocketFilter::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::SocketFilter +impl core::marker::Sync for aya::programs::SocketFilter +impl core::marker::Unpin for aya::programs::SocketFilter +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::SocketFilter +impl core::panic::unwind_safe::UnwindSafe for aya::programs::SocketFilter +impl core::convert::Into for aya::programs::SocketFilter where U: core::convert::From +pub fn aya::programs::SocketFilter::into(self) -> U +impl core::convert::TryFrom for aya::programs::SocketFilter where U: core::convert::Into +pub type aya::programs::SocketFilter::Error = core::convert::Infallible +pub fn aya::programs::SocketFilter::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::SocketFilter where U: core::convert::TryFrom +pub type aya::programs::SocketFilter::Error = >::Error +pub fn aya::programs::SocketFilter::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::SocketFilter where T: 'static + core::marker::Sized +pub fn aya::programs::SocketFilter::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::SocketFilter where T: core::marker::Sized +pub fn aya::programs::SocketFilter::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::SocketFilter where T: core::marker::Sized +pub fn aya::programs::SocketFilter::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::SocketFilter +pub fn aya::programs::SocketFilter::from(t: T) -> T +pub struct aya::programs::TracePoint +impl aya::programs::trace_point::TracePoint +pub fn aya::programs::trace_point::TracePoint::attach(&mut self, category: &str, name: &str) -> core::result::Result +pub fn aya::programs::trace_point::TracePoint::detach(&mut self, link_id: aya::programs::trace_point::TracePointLinkId) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::trace_point::TracePoint::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::trace_point::TracePoint::take_link(&mut self, link_id: aya::programs::trace_point::TracePointLinkId) -> core::result::Result +impl aya::programs::trace_point::TracePoint +pub fn aya::programs::trace_point::TracePoint::fd(&self) -> core::option::Option +impl aya::programs::trace_point::TracePoint +pub fn aya::programs::trace_point::TracePoint::from_pin>(path: P) -> core::result::Result +impl aya::programs::trace_point::TracePoint +pub fn aya::programs::trace_point::TracePoint::pin>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError> +pub fn aya::programs::trace_point::TracePoint::unpin(self) -> core::result::Result<(), std::io::error::Error> +impl aya::programs::trace_point::TracePoint +pub fn aya::programs::trace_point::TracePoint::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +impl core::ops::drop::Drop for aya::programs::trace_point::TracePoint +pub fn aya::programs::trace_point::TracePoint::drop(&mut self) +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::trace_point::TracePoint +pub type &'a aya::programs::trace_point::TracePoint::Error = aya::programs::ProgramError +pub fn &'a aya::programs::trace_point::TracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::trace_point::TracePoint, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::trace_point::TracePoint +pub type &'a mut aya::programs::trace_point::TracePoint::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::trace_point::TracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::trace_point::TracePoint, aya::programs::ProgramError> +impl core::fmt::Debug for aya::programs::trace_point::TracePoint +pub fn aya::programs::trace_point::TracePoint::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::trace_point::TracePoint +impl core::marker::Sync for aya::programs::trace_point::TracePoint +impl core::marker::Unpin for aya::programs::trace_point::TracePoint +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::trace_point::TracePoint +impl core::panic::unwind_safe::UnwindSafe for aya::programs::trace_point::TracePoint +impl core::convert::Into for aya::programs::trace_point::TracePoint where U: core::convert::From +pub fn aya::programs::trace_point::TracePoint::into(self) -> U +impl core::convert::TryFrom for aya::programs::trace_point::TracePoint where U: core::convert::Into +pub type aya::programs::trace_point::TracePoint::Error = core::convert::Infallible +pub fn aya::programs::trace_point::TracePoint::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::trace_point::TracePoint where U: core::convert::TryFrom +pub type aya::programs::trace_point::TracePoint::Error = >::Error +pub fn aya::programs::trace_point::TracePoint::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::trace_point::TracePoint where T: 'static + core::marker::Sized +pub fn aya::programs::trace_point::TracePoint::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::trace_point::TracePoint where T: core::marker::Sized +pub fn aya::programs::trace_point::TracePoint::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::trace_point::TracePoint where T: core::marker::Sized +pub fn aya::programs::trace_point::TracePoint::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::trace_point::TracePoint +pub fn aya::programs::trace_point::TracePoint::from(t: T) -> T +pub struct aya::programs::UProbe +impl aya::programs::uprobe::UProbe +pub fn aya::programs::uprobe::UProbe::attach>(&mut self, fn_name: core::option::Option<&str>, offset: u64, target: T, pid: core::option::Option) -> core::result::Result +pub fn aya::programs::uprobe::UProbe::detach(&mut self, link_id: aya::programs::uprobe::UProbeLinkId) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::uprobe::UProbe::from_pin>(path: P, kind: aya::programs::ProbeKind) -> core::result::Result +pub fn aya::programs::uprobe::UProbe::kind(&self) -> aya::programs::ProbeKind +pub fn aya::programs::uprobe::UProbe::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::uprobe::UProbe::take_link(&mut self, link_id: aya::programs::uprobe::UProbeLinkId) -> core::result::Result +impl aya::programs::uprobe::UProbe +pub fn aya::programs::uprobe::UProbe::fd(&self) -> core::option::Option +impl aya::programs::uprobe::UProbe +pub fn aya::programs::uprobe::UProbe::pin>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError> +pub fn aya::programs::uprobe::UProbe::unpin(self) -> core::result::Result<(), std::io::error::Error> +impl aya::programs::uprobe::UProbe +pub fn aya::programs::uprobe::UProbe::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +impl core::ops::drop::Drop for aya::programs::uprobe::UProbe +pub fn aya::programs::uprobe::UProbe::drop(&mut self) +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::uprobe::UProbe +pub type &'a aya::programs::uprobe::UProbe::Error = aya::programs::ProgramError +pub fn &'a aya::programs::uprobe::UProbe::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::uprobe::UProbe, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::uprobe::UProbe +pub type &'a mut aya::programs::uprobe::UProbe::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::uprobe::UProbe::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::uprobe::UProbe, aya::programs::ProgramError> +impl core::fmt::Debug for aya::programs::uprobe::UProbe +pub fn aya::programs::uprobe::UProbe::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::uprobe::UProbe +impl core::marker::Sync for aya::programs::uprobe::UProbe +impl core::marker::Unpin for aya::programs::uprobe::UProbe +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbe +impl core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbe +impl core::convert::Into for aya::programs::uprobe::UProbe where U: core::convert::From +pub fn aya::programs::uprobe::UProbe::into(self) -> U +impl core::convert::TryFrom for aya::programs::uprobe::UProbe where U: core::convert::Into +pub type aya::programs::uprobe::UProbe::Error = core::convert::Infallible +pub fn aya::programs::uprobe::UProbe::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::uprobe::UProbe where U: core::convert::TryFrom +pub type aya::programs::uprobe::UProbe::Error = >::Error +pub fn aya::programs::uprobe::UProbe::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::uprobe::UProbe where T: 'static + core::marker::Sized +pub fn aya::programs::uprobe::UProbe::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::uprobe::UProbe where T: core::marker::Sized +pub fn aya::programs::uprobe::UProbe::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::uprobe::UProbe where T: core::marker::Sized +pub fn aya::programs::uprobe::UProbe::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::uprobe::UProbe +pub fn aya::programs::uprobe::UProbe::from(t: T) -> T +pub struct aya::programs::Xdp +impl aya::programs::xdp::Xdp +pub fn aya::programs::xdp::Xdp::attach(&mut self, interface: &str, flags: aya::programs::xdp::XdpFlags) -> core::result::Result +pub fn aya::programs::xdp::Xdp::attach_to_if_index(&mut self, if_index: u32, flags: aya::programs::xdp::XdpFlags) -> core::result::Result +pub fn aya::programs::xdp::Xdp::attach_to_link(&mut self, link: aya::programs::xdp::XdpLink) -> core::result::Result +pub fn aya::programs::xdp::Xdp::detach(&mut self, link_id: aya::programs::xdp::XdpLinkId) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::xdp::Xdp::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::xdp::Xdp::take_link(&mut self, link_id: aya::programs::xdp::XdpLinkId) -> core::result::Result +impl aya::programs::xdp::Xdp +pub fn aya::programs::xdp::Xdp::fd(&self) -> core::option::Option +impl aya::programs::xdp::Xdp +pub fn aya::programs::xdp::Xdp::from_pin>(path: P) -> core::result::Result +impl aya::programs::xdp::Xdp +pub fn aya::programs::xdp::Xdp::pin>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError> +pub fn aya::programs::xdp::Xdp::unpin(self) -> core::result::Result<(), std::io::error::Error> +impl aya::programs::xdp::Xdp +pub fn aya::programs::xdp::Xdp::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError> +impl core::ops::drop::Drop for aya::programs::xdp::Xdp +pub fn aya::programs::xdp::Xdp::drop(&mut self) +impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::xdp::Xdp +pub type &'a aya::programs::xdp::Xdp::Error = aya::programs::ProgramError +pub fn &'a aya::programs::xdp::Xdp::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::xdp::Xdp, aya::programs::ProgramError> +impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::xdp::Xdp +pub type &'a mut aya::programs::xdp::Xdp::Error = aya::programs::ProgramError +pub fn &'a mut aya::programs::xdp::Xdp::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::xdp::Xdp, aya::programs::ProgramError> +impl core::fmt::Debug for aya::programs::xdp::Xdp +pub fn aya::programs::xdp::Xdp::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::programs::xdp::Xdp +impl core::marker::Sync for aya::programs::xdp::Xdp +impl core::marker::Unpin for aya::programs::xdp::Xdp +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::Xdp +impl core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::Xdp +impl core::convert::Into for aya::programs::xdp::Xdp where U: core::convert::From +pub fn aya::programs::xdp::Xdp::into(self) -> U +impl core::convert::TryFrom for aya::programs::xdp::Xdp where U: core::convert::Into +pub type aya::programs::xdp::Xdp::Error = core::convert::Infallible +pub fn aya::programs::xdp::Xdp::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::xdp::Xdp where U: core::convert::TryFrom +pub type aya::programs::xdp::Xdp::Error = >::Error +pub fn aya::programs::xdp::Xdp::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::programs::xdp::Xdp where T: 'static + core::marker::Sized +pub fn aya::programs::xdp::Xdp::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::xdp::Xdp where T: core::marker::Sized +pub fn aya::programs::xdp::Xdp::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::xdp::Xdp where T: core::marker::Sized +pub fn aya::programs::xdp::Xdp::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::xdp::Xdp +pub fn aya::programs::xdp::Xdp::from(t: T) -> T +pub struct aya::programs::XdpFlags(_) +impl aya::programs::xdp::XdpFlags +pub const aya::programs::xdp::XdpFlags::DRV_MODE: Self +pub const aya::programs::xdp::XdpFlags::HW_MODE: Self +pub const aya::programs::xdp::XdpFlags::REPLACE: Self +pub const aya::programs::xdp::XdpFlags::SKB_MODE: Self +pub const aya::programs::xdp::XdpFlags::UPDATE_IF_NOEXIST: Self +impl aya::programs::xdp::XdpFlags +pub const fn aya::programs::xdp::XdpFlags::all() -> Self +pub const fn aya::programs::xdp::XdpFlags::bits(&self) -> u32 +pub const fn aya::programs::xdp::XdpFlags::complement(self) -> Self +pub const fn aya::programs::xdp::XdpFlags::contains(&self, other: Self) -> bool +pub const fn aya::programs::xdp::XdpFlags::difference(self, other: Self) -> Self +pub const fn aya::programs::xdp::XdpFlags::empty() -> Self +pub const fn aya::programs::xdp::XdpFlags::from_bits(bits: u32) -> core::option::Option +pub const fn aya::programs::xdp::XdpFlags::from_bits_retain(bits: u32) -> Self +pub const fn aya::programs::xdp::XdpFlags::from_bits_truncate(bits: u32) -> Self +pub fn aya::programs::xdp::XdpFlags::from_name(name: &str) -> core::option::Option +pub fn aya::programs::xdp::XdpFlags::insert(&mut self, other: Self) +pub const fn aya::programs::xdp::XdpFlags::intersection(self, other: Self) -> Self +pub const fn aya::programs::xdp::XdpFlags::intersects(&self, other: Self) -> bool +pub const fn aya::programs::xdp::XdpFlags::is_all(&self) -> bool +pub const fn aya::programs::xdp::XdpFlags::is_empty(&self) -> bool +pub fn aya::programs::xdp::XdpFlags::remove(&mut self, other: Self) +pub fn aya::programs::xdp::XdpFlags::set(&mut self, other: Self, value: bool) +pub const fn aya::programs::xdp::XdpFlags::symmetric_difference(self, other: Self) -> Self +pub fn aya::programs::xdp::XdpFlags::toggle(&mut self, other: Self) +pub const fn aya::programs::xdp::XdpFlags::union(self, other: Self) -> Self +impl aya::programs::xdp::XdpFlags +pub const fn aya::programs::xdp::XdpFlags::iter(&self) -> bitflags::iter::Iter +pub const fn aya::programs::xdp::XdpFlags::iter_names(&self) -> bitflags::iter::IterNames +impl bitflags::traits::Flags for aya::programs::xdp::XdpFlags +pub type aya::programs::xdp::XdpFlags::Bits = u32 +pub const aya::programs::xdp::XdpFlags::FLAGS: &'static [bitflags::traits::Flag] +pub fn aya::programs::xdp::XdpFlags::bits(&self) -> u32 +pub fn aya::programs::xdp::XdpFlags::from_bits_retain(bits: u32) -> aya::programs::xdp::XdpFlags +impl bitflags::traits::PublicFlags for aya::programs::xdp::XdpFlags +pub type aya::programs::xdp::XdpFlags::Internal = InternalBitFlags +pub type aya::programs::xdp::XdpFlags::Primitive = u32 +impl core::fmt::Binary for aya::programs::xdp::XdpFlags +pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::fmt::LowerHex for aya::programs::xdp::XdpFlags +pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::fmt::Octal for aya::programs::xdp::XdpFlags +pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::fmt::UpperHex for aya::programs::xdp::XdpFlags +pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::iter::traits::collect::Extend for aya::programs::xdp::XdpFlags +pub fn aya::programs::xdp::XdpFlags::extend>(&mut self, iterator: T) +impl core::iter::traits::collect::FromIterator for aya::programs::xdp::XdpFlags +pub fn aya::programs::xdp::XdpFlags::from_iter>(iterator: T) -> Self +impl core::iter::traits::collect::IntoIterator for aya::programs::xdp::XdpFlags +pub type aya::programs::xdp::XdpFlags::IntoIter = bitflags::iter::Iter +pub type aya::programs::xdp::XdpFlags::Item = aya::programs::xdp::XdpFlags +pub fn aya::programs::xdp::XdpFlags::into_iter(self) -> Self::IntoIter +impl core::ops::arith::Sub for aya::programs::xdp::XdpFlags +pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags +pub fn aya::programs::xdp::XdpFlags::sub(self, other: Self) -> Self +impl core::ops::arith::SubAssign for aya::programs::xdp::XdpFlags +pub fn aya::programs::xdp::XdpFlags::sub_assign(&mut self, other: Self) +impl core::ops::bit::BitAnd for aya::programs::xdp::XdpFlags +pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags +pub fn aya::programs::xdp::XdpFlags::bitand(self, other: Self) -> Self +impl core::ops::bit::BitAndAssign for aya::programs::xdp::XdpFlags +pub fn aya::programs::xdp::XdpFlags::bitand_assign(&mut self, other: Self) +impl core::ops::bit::BitOr for aya::programs::xdp::XdpFlags +pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags +pub fn aya::programs::xdp::XdpFlags::bitor(self, other: aya::programs::xdp::XdpFlags) -> Self +impl core::ops::bit::BitOrAssign for aya::programs::xdp::XdpFlags +pub fn aya::programs::xdp::XdpFlags::bitor_assign(&mut self, other: Self) +impl core::ops::bit::BitXor for aya::programs::xdp::XdpFlags +pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags +pub fn aya::programs::xdp::XdpFlags::bitxor(self, other: Self) -> Self +impl core::ops::bit::BitXorAssign for aya::programs::xdp::XdpFlags +pub fn aya::programs::xdp::XdpFlags::bitxor_assign(&mut self, other: Self) +impl core::ops::bit::Not for aya::programs::xdp::XdpFlags +pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags +pub fn aya::programs::xdp::XdpFlags::not(self) -> Self +impl core::clone::Clone for aya::programs::xdp::XdpFlags +pub fn aya::programs::xdp::XdpFlags::clone(&self) -> aya::programs::xdp::XdpFlags +impl core::default::Default for aya::programs::xdp::XdpFlags +pub fn aya::programs::xdp::XdpFlags::default() -> aya::programs::xdp::XdpFlags +impl core::fmt::Debug for aya::programs::xdp::XdpFlags +pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya::programs::xdp::XdpFlags +impl core::marker::Send for aya::programs::xdp::XdpFlags +impl core::marker::Sync for aya::programs::xdp::XdpFlags +impl core::marker::Unpin for aya::programs::xdp::XdpFlags +impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::XdpFlags +impl core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::XdpFlags +impl bitflags::traits::BitFlags for aya::programs::xdp::XdpFlags where B: bitflags::traits::Flags +pub type aya::programs::xdp::XdpFlags::Iter = bitflags::iter::Iter +pub type aya::programs::xdp::XdpFlags::IterNames = bitflags::iter::IterNames +impl core::convert::Into for aya::programs::xdp::XdpFlags where U: core::convert::From +pub fn aya::programs::xdp::XdpFlags::into(self) -> U +impl core::convert::TryFrom for aya::programs::xdp::XdpFlags where U: core::convert::Into +pub type aya::programs::xdp::XdpFlags::Error = core::convert::Infallible +pub fn aya::programs::xdp::XdpFlags::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::programs::xdp::XdpFlags where U: core::convert::TryFrom +pub type aya::programs::xdp::XdpFlags::Error = >::Error +pub fn aya::programs::xdp::XdpFlags::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya::programs::xdp::XdpFlags where T: core::clone::Clone +pub type aya::programs::xdp::XdpFlags::Owned = T +pub fn aya::programs::xdp::XdpFlags::clone_into(&self, target: &mut T) +pub fn aya::programs::xdp::XdpFlags::to_owned(&self) -> T +impl core::any::Any for aya::programs::xdp::XdpFlags where T: 'static + core::marker::Sized +pub fn aya::programs::xdp::XdpFlags::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::programs::xdp::XdpFlags where T: core::marker::Sized +pub fn aya::programs::xdp::XdpFlags::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::programs::xdp::XdpFlags where T: core::marker::Sized +pub fn aya::programs::xdp::XdpFlags::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::programs::xdp::XdpFlags +pub fn aya::programs::xdp::XdpFlags::from(t: T) -> T +pub trait aya::programs::Link: core::fmt::Debug + 'static +pub type aya::programs::Link::Id: core::fmt::Debug + core::hash::Hash + core::cmp::Eq + core::cmp::PartialEq +pub fn aya::programs::Link::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::Link::id(&self) -> Self::Id +impl aya::programs::links::Link for aya::programs::cgroup_device::CgroupDeviceLink +pub type aya::programs::cgroup_device::CgroupDeviceLink::Id = aya::programs::cgroup_device::CgroupDeviceLinkId +pub fn aya::programs::cgroup_device::CgroupDeviceLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::cgroup_device::CgroupDeviceLink::id(&self) -> Self::Id +impl aya::programs::links::Link for aya::programs::cgroup_skb::CgroupSkbLink +pub type aya::programs::cgroup_skb::CgroupSkbLink::Id = aya::programs::cgroup_skb::CgroupSkbLinkId +pub fn aya::programs::cgroup_skb::CgroupSkbLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::cgroup_skb::CgroupSkbLink::id(&self) -> Self::Id +impl aya::programs::links::Link for aya::programs::cgroup_sock::CgroupSockLink +pub type aya::programs::cgroup_sock::CgroupSockLink::Id = aya::programs::cgroup_sock::CgroupSockLinkId +pub fn aya::programs::cgroup_sock::CgroupSockLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::cgroup_sock::CgroupSockLink::id(&self) -> Self::Id +impl aya::programs::links::Link for aya::programs::cgroup_sock_addr::CgroupSockAddrLink +pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLink::Id = aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::id(&self) -> Self::Id +impl aya::programs::links::Link for aya::programs::cgroup_sockopt::CgroupSockoptLink +pub type aya::programs::cgroup_sockopt::CgroupSockoptLink::Id = aya::programs::cgroup_sockopt::CgroupSockoptLinkId +pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::id(&self) -> Self::Id +impl aya::programs::links::Link for aya::programs::cgroup_sysctl::CgroupSysctlLink +pub type aya::programs::cgroup_sysctl::CgroupSysctlLink::Id = aya::programs::cgroup_sysctl::CgroupSysctlLinkId +pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::id(&self) -> Self::Id +impl aya::programs::links::Link for aya::programs::extension::ExtensionLink +pub type aya::programs::extension::ExtensionLink::Id = aya::programs::extension::ExtensionLinkId +pub fn aya::programs::extension::ExtensionLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::extension::ExtensionLink::id(&self) -> Self::Id +impl aya::programs::links::Link for aya::programs::fentry::FEntryLink +pub type aya::programs::fentry::FEntryLink::Id = aya::programs::fentry::FEntryLinkId +pub fn aya::programs::fentry::FEntryLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::fentry::FEntryLink::id(&self) -> Self::Id +impl aya::programs::links::Link for aya::programs::fexit::FExitLink +pub type aya::programs::fexit::FExitLink::Id = aya::programs::fexit::FExitLinkId +pub fn aya::programs::fexit::FExitLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::fexit::FExitLink::id(&self) -> Self::Id +impl aya::programs::links::Link for aya::programs::kprobe::KProbeLink +pub type aya::programs::kprobe::KProbeLink::Id = aya::programs::kprobe::KProbeLinkId +pub fn aya::programs::kprobe::KProbeLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::kprobe::KProbeLink::id(&self) -> Self::Id +impl aya::programs::links::Link for aya::programs::links::FdLink +pub type aya::programs::links::FdLink::Id = aya::programs::links::FdLinkId +pub fn aya::programs::links::FdLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::links::FdLink::id(&self) -> Self::Id +impl aya::programs::links::Link for aya::programs::links::ProgAttachLink +pub type aya::programs::links::ProgAttachLink::Id = aya::programs::links::ProgAttachLinkId +pub fn aya::programs::links::ProgAttachLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::links::ProgAttachLink::id(&self) -> Self::Id +impl aya::programs::links::Link for aya::programs::lirc_mode2::LircLink +pub type aya::programs::lirc_mode2::LircLink::Id = aya::programs::lirc_mode2::LircLinkId +pub fn aya::programs::lirc_mode2::LircLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::lirc_mode2::LircLink::id(&self) -> Self::Id +impl aya::programs::links::Link for aya::programs::lsm::LsmLink +pub type aya::programs::lsm::LsmLink::Id = aya::programs::lsm::LsmLinkId +pub fn aya::programs::lsm::LsmLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::lsm::LsmLink::id(&self) -> Self::Id +impl aya::programs::links::Link for aya::programs::perf_attach::PerfLink +pub type aya::programs::perf_attach::PerfLink::Id = aya::programs::perf_attach::PerfLinkId +pub fn aya::programs::perf_attach::PerfLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::perf_attach::PerfLink::id(&self) -> Self::Id +impl aya::programs::links::Link for aya::programs::perf_event::PerfEventLink +pub type aya::programs::perf_event::PerfEventLink::Id = aya::programs::perf_event::PerfEventLinkId +pub fn aya::programs::perf_event::PerfEventLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::perf_event::PerfEventLink::id(&self) -> Self::Id +impl aya::programs::links::Link for aya::programs::tc::SchedClassifierLink +pub type aya::programs::tc::SchedClassifierLink::Id = aya::programs::tc::SchedClassifierLinkId +pub fn aya::programs::tc::SchedClassifierLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::tc::SchedClassifierLink::id(&self) -> Self::Id +impl aya::programs::links::Link for aya::programs::tp_btf::BtfTracePointLink +pub type aya::programs::tp_btf::BtfTracePointLink::Id = aya::programs::tp_btf::BtfTracePointLinkId +pub fn aya::programs::tp_btf::BtfTracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::tp_btf::BtfTracePointLink::id(&self) -> Self::Id +impl aya::programs::links::Link for aya::programs::trace_point::TracePointLink +pub type aya::programs::trace_point::TracePointLink::Id = aya::programs::trace_point::TracePointLinkId +pub fn aya::programs::trace_point::TracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::trace_point::TracePointLink::id(&self) -> Self::Id +impl aya::programs::links::Link for aya::programs::uprobe::UProbeLink +pub type aya::programs::uprobe::UProbeLink::Id = aya::programs::uprobe::UProbeLinkId +pub fn aya::programs::uprobe::UProbeLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::uprobe::UProbeLink::id(&self) -> Self::Id +impl aya::programs::links::Link for aya::programs::xdp::XdpLink +pub type aya::programs::xdp::XdpLink::Id = aya::programs::xdp::XdpLinkId +pub fn aya::programs::xdp::XdpLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError> +pub fn aya::programs::xdp::XdpLink::id(&self) -> Self::Id +pub fn aya::programs::loaded_programs() -> aya::programs::ProgramsIter +pub mod aya::util +pub struct aya::util::KernelVersion +impl aya::util::KernelVersion +pub fn aya::util::KernelVersion::current() -> core::result::Result +pub fn aya::util::KernelVersion::new(major: u8, minor: u8, patch: u16) -> Self +impl core::clone::Clone for aya::util::KernelVersion +pub fn aya::util::KernelVersion::clone(&self) -> aya::util::KernelVersion +impl core::cmp::Eq for aya::util::KernelVersion +impl core::cmp::PartialEq for aya::util::KernelVersion +pub fn aya::util::KernelVersion::eq(&self, other: &aya::util::KernelVersion) -> bool +impl core::cmp::PartialOrd for aya::util::KernelVersion +pub fn aya::util::KernelVersion::partial_cmp(&self, other: &aya::util::KernelVersion) -> core::option::Option +impl core::fmt::Debug for aya::util::KernelVersion +pub fn aya::util::KernelVersion::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya::util::KernelVersion +impl core::marker::StructuralEq for aya::util::KernelVersion +impl core::marker::StructuralPartialEq for aya::util::KernelVersion +impl core::marker::Send for aya::util::KernelVersion +impl core::marker::Sync for aya::util::KernelVersion +impl core::marker::Unpin for aya::util::KernelVersion +impl core::panic::unwind_safe::RefUnwindSafe for aya::util::KernelVersion +impl core::panic::unwind_safe::UnwindSafe for aya::util::KernelVersion +impl core::convert::Into for aya::util::KernelVersion where U: core::convert::From +pub fn aya::util::KernelVersion::into(self) -> U +impl core::convert::TryFrom for aya::util::KernelVersion where U: core::convert::Into +pub type aya::util::KernelVersion::Error = core::convert::Infallible +pub fn aya::util::KernelVersion::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::util::KernelVersion where U: core::convert::TryFrom +pub type aya::util::KernelVersion::Error = >::Error +pub fn aya::util::KernelVersion::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya::util::KernelVersion where T: core::clone::Clone +pub type aya::util::KernelVersion::Owned = T +pub fn aya::util::KernelVersion::clone_into(&self, target: &mut T) +pub fn aya::util::KernelVersion::to_owned(&self) -> T +impl core::any::Any for aya::util::KernelVersion where T: 'static + core::marker::Sized +pub fn aya::util::KernelVersion::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::util::KernelVersion where T: core::marker::Sized +pub fn aya::util::KernelVersion::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::util::KernelVersion where T: core::marker::Sized +pub fn aya::util::KernelVersion::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::util::KernelVersion +pub fn aya::util::KernelVersion::from(t: T) -> T +pub fn aya::util::kernel_symbols() -> core::result::Result, std::io::error::Error> +pub fn aya::util::nr_cpus() -> core::result::Result +pub fn aya::util::online_cpus() -> core::result::Result, std::io::error::Error> +pub fn aya::util::syscall_prefix() -> core::result::Result<&'static str, std::io::error::Error> +pub macro aya::include_bytes_aligned! +pub enum aya::BpfError +pub aya::BpfError::BtfError(aya_obj::btf::btf::BtfError) +pub aya::BpfError::BtfRelocationError(aya_obj::btf::relocation::BtfRelocationError) +pub aya::BpfError::FileError +pub aya::BpfError::FileError::error: std::io::error::Error +pub aya::BpfError::FileError::path: std::path::PathBuf +pub aya::BpfError::InvalidPath +pub aya::BpfError::InvalidPath::error: alloc::string::String +pub aya::BpfError::MapError(aya::maps::MapError) +pub aya::BpfError::NoBTF +pub aya::BpfError::NoPinPath +pub aya::BpfError::ParseError(aya_obj::obj::ParseError) +pub aya::BpfError::ProgramError(aya::programs::ProgramError) +pub aya::BpfError::RelocationError(aya_obj::relocation::BpfRelocationError) +pub aya::BpfError::UnexpectedPinningType +pub aya::BpfError::UnexpectedPinningType::name: u32 +impl core::convert::From for aya::BpfError +pub fn aya::BpfError::from(source: aya::maps::MapError) -> Self +impl core::convert::From for aya::BpfError +pub fn aya::BpfError::from(source: aya::programs::ProgramError) -> Self +impl core::convert::From for aya::BpfError +pub fn aya::BpfError::from(source: aya_obj::btf::btf::BtfError) -> Self +impl core::convert::From for aya::BpfError +pub fn aya::BpfError::from(source: aya_obj::btf::relocation::BtfRelocationError) -> Self +impl core::convert::From for aya::BpfError +pub fn aya::BpfError::from(source: aya_obj::obj::ParseError) -> Self +impl core::convert::From for aya::BpfError +pub fn aya::BpfError::from(source: aya_obj::relocation::BpfRelocationError) -> Self +impl core::error::Error for aya::BpfError +pub fn aya::BpfError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)> +impl core::fmt::Display for aya::BpfError +pub fn aya::BpfError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::fmt::Debug for aya::BpfError +pub fn aya::BpfError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::BpfError +impl core::marker::Sync for aya::BpfError +impl core::marker::Unpin for aya::BpfError +impl !core::panic::unwind_safe::RefUnwindSafe for aya::BpfError +impl !core::panic::unwind_safe::UnwindSafe for aya::BpfError +impl core::any::Provider for aya::BpfError where E: core::error::Error + core::marker::Sized +pub fn aya::BpfError::provide<'a>(&'a self, demand: &mut core::any::Demand<'a>) +impl core::convert::Into for aya::BpfError where U: core::convert::From +pub fn aya::BpfError::into(self) -> U +impl core::convert::TryFrom for aya::BpfError where U: core::convert::Into +pub type aya::BpfError::Error = core::convert::Infallible +pub fn aya::BpfError::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::BpfError where U: core::convert::TryFrom +pub type aya::BpfError::Error = >::Error +pub fn aya::BpfError::try_into(self) -> core::result::Result>::Error> +impl alloc::string::ToString for aya::BpfError where T: core::fmt::Display + core::marker::Sized +pub fn aya::BpfError::to_string(&self) -> alloc::string::String +impl core::any::Any for aya::BpfError where T: 'static + core::marker::Sized +pub fn aya::BpfError::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::BpfError where T: core::marker::Sized +pub fn aya::BpfError::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::BpfError where T: core::marker::Sized +pub fn aya::BpfError::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::BpfError +pub fn aya::BpfError::from(t: T) -> T +pub struct aya::Bpf +impl aya::Bpf +pub fn aya::Bpf::load(data: &[u8]) -> core::result::Result +pub fn aya::Bpf::load_file>(path: P) -> core::result::Result +pub fn aya::Bpf::map(&self, name: &str) -> core::option::Option<&aya::maps::Map> +pub fn aya::Bpf::map_mut(&mut self, name: &str) -> core::option::Option<&mut aya::maps::Map> +pub fn aya::Bpf::maps(&self) -> impl core::iter::traits::iterator::Iterator +pub fn aya::Bpf::program(&self, name: &str) -> core::option::Option<&aya::programs::Program> +pub fn aya::Bpf::program_mut(&mut self, name: &str) -> core::option::Option<&mut aya::programs::Program> +pub fn aya::Bpf::programs(&self) -> impl core::iter::traits::iterator::Iterator +pub fn aya::Bpf::programs_mut(&mut self) -> impl core::iter::traits::iterator::Iterator +pub fn aya::Bpf::take_map(&mut self, name: &str) -> core::option::Option +impl core::fmt::Debug for aya::Bpf +pub fn aya::Bpf::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Send for aya::Bpf +impl core::marker::Sync for aya::Bpf +impl core::marker::Unpin for aya::Bpf +impl core::panic::unwind_safe::RefUnwindSafe for aya::Bpf +impl core::panic::unwind_safe::UnwindSafe for aya::Bpf +impl core::convert::Into for aya::Bpf where U: core::convert::From +pub fn aya::Bpf::into(self) -> U +impl core::convert::TryFrom for aya::Bpf where U: core::convert::Into +pub type aya::Bpf::Error = core::convert::Infallible +pub fn aya::Bpf::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::Bpf where U: core::convert::TryFrom +pub type aya::Bpf::Error = >::Error +pub fn aya::Bpf::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::Bpf where T: 'static + core::marker::Sized +pub fn aya::Bpf::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::Bpf where T: core::marker::Sized +pub fn aya::Bpf::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::Bpf where T: core::marker::Sized +pub fn aya::Bpf::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::Bpf +pub fn aya::Bpf::from(t: T) -> T +pub struct aya::BpfLoader<'a> +impl<'a> aya::BpfLoader<'a> +pub fn aya::BpfLoader<'a>::allow_unsupported_maps(&mut self) -> &mut aya::BpfLoader<'a> +pub fn aya::BpfLoader<'a>::btf(&mut self, btf: core::option::Option<&'a aya_obj::btf::btf::Btf>) -> &mut aya::BpfLoader<'a> +pub fn aya::BpfLoader<'a>::extension(&mut self, name: &'a str) -> &mut aya::BpfLoader<'a> +pub fn aya::BpfLoader<'a>::load(&mut self, data: &[u8]) -> core::result::Result +pub fn aya::BpfLoader<'a>::load_file>(&mut self, path: P) -> core::result::Result +pub fn aya::BpfLoader<'a>::map_pin_path>(&mut self, path: P) -> &mut aya::BpfLoader<'a> +pub fn aya::BpfLoader<'a>::new() -> aya::BpfLoader<'a> +pub fn aya::BpfLoader<'a>::set_global>>(&mut self, name: &'a str, value: T, must_exist: bool) -> &mut aya::BpfLoader<'a> +pub fn aya::BpfLoader<'a>::set_max_entries(&mut self, name: &'a str, size: u32) -> &mut aya::BpfLoader<'a> +pub fn aya::BpfLoader<'a>::verifier_log_level(&mut self, level: aya::VerifierLogLevel) -> &mut aya::BpfLoader<'a> +impl<'a> core::default::Default for aya::BpfLoader<'a> +pub fn aya::BpfLoader<'a>::default() -> Self +impl<'a> core::fmt::Debug for aya::BpfLoader<'a> +pub fn aya::BpfLoader<'a>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl<'a> core::marker::Send for aya::BpfLoader<'a> +impl<'a> core::marker::Sync for aya::BpfLoader<'a> +impl<'a> core::marker::Unpin for aya::BpfLoader<'a> +impl<'a> core::panic::unwind_safe::RefUnwindSafe for aya::BpfLoader<'a> +impl<'a> core::panic::unwind_safe::UnwindSafe for aya::BpfLoader<'a> +impl core::convert::Into for aya::BpfLoader<'a> where U: core::convert::From +pub fn aya::BpfLoader<'a>::into(self) -> U +impl core::convert::TryFrom for aya::BpfLoader<'a> where U: core::convert::Into +pub type aya::BpfLoader<'a>::Error = core::convert::Infallible +pub fn aya::BpfLoader<'a>::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::BpfLoader<'a> where U: core::convert::TryFrom +pub type aya::BpfLoader<'a>::Error = >::Error +pub fn aya::BpfLoader<'a>::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::BpfLoader<'a> where T: 'static + core::marker::Sized +pub fn aya::BpfLoader<'a>::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::BpfLoader<'a> where T: core::marker::Sized +pub fn aya::BpfLoader<'a>::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::BpfLoader<'a> where T: core::marker::Sized +pub fn aya::BpfLoader<'a>::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::BpfLoader<'a> +pub fn aya::BpfLoader<'a>::from(t: T) -> T +pub struct aya::GlobalData<'a> +impl<'a, T: aya::Pod> core::convert::From<&'a T> for aya::GlobalData<'a> +pub fn aya::GlobalData<'a>::from(v: &'a T) -> Self +impl<'a, T: aya::Pod> core::convert::From<&'a [T]> for aya::GlobalData<'a> +pub fn aya::GlobalData<'a>::from(s: &'a [T]) -> Self +impl<'a> core::marker::Send for aya::GlobalData<'a> +impl<'a> core::marker::Sync for aya::GlobalData<'a> +impl<'a> core::marker::Unpin for aya::GlobalData<'a> +impl<'a> core::panic::unwind_safe::RefUnwindSafe for aya::GlobalData<'a> +impl<'a> core::panic::unwind_safe::UnwindSafe for aya::GlobalData<'a> +impl core::convert::Into for aya::GlobalData<'a> where U: core::convert::From +pub fn aya::GlobalData<'a>::into(self) -> U +impl core::convert::TryFrom for aya::GlobalData<'a> where U: core::convert::Into +pub type aya::GlobalData<'a>::Error = core::convert::Infallible +pub fn aya::GlobalData<'a>::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::GlobalData<'a> where U: core::convert::TryFrom +pub type aya::GlobalData<'a>::Error = >::Error +pub fn aya::GlobalData<'a>::try_into(self) -> core::result::Result>::Error> +impl core::any::Any for aya::GlobalData<'a> where T: 'static + core::marker::Sized +pub fn aya::GlobalData<'a>::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::GlobalData<'a> where T: core::marker::Sized +pub fn aya::GlobalData<'a>::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::GlobalData<'a> where T: core::marker::Sized +pub fn aya::GlobalData<'a>::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::GlobalData<'a> +pub fn aya::GlobalData<'a>::from(t: T) -> T +pub struct aya::VerifierLogLevel(_) +impl aya::VerifierLogLevel +pub const aya::VerifierLogLevel::DEBUG: Self +pub const aya::VerifierLogLevel::DISABLE: Self +pub const aya::VerifierLogLevel::STATS: Self +pub const aya::VerifierLogLevel::VERBOSE: Self +impl aya::VerifierLogLevel +pub const fn aya::VerifierLogLevel::all() -> Self +pub const fn aya::VerifierLogLevel::bits(&self) -> u32 +pub const fn aya::VerifierLogLevel::complement(self) -> Self +pub const fn aya::VerifierLogLevel::contains(&self, other: Self) -> bool +pub const fn aya::VerifierLogLevel::difference(self, other: Self) -> Self +pub const fn aya::VerifierLogLevel::empty() -> Self +pub const fn aya::VerifierLogLevel::from_bits(bits: u32) -> core::option::Option +pub const fn aya::VerifierLogLevel::from_bits_retain(bits: u32) -> Self +pub const fn aya::VerifierLogLevel::from_bits_truncate(bits: u32) -> Self +pub fn aya::VerifierLogLevel::from_name(name: &str) -> core::option::Option +pub fn aya::VerifierLogLevel::insert(&mut self, other: Self) +pub const fn aya::VerifierLogLevel::intersection(self, other: Self) -> Self +pub const fn aya::VerifierLogLevel::intersects(&self, other: Self) -> bool +pub const fn aya::VerifierLogLevel::is_all(&self) -> bool +pub const fn aya::VerifierLogLevel::is_empty(&self) -> bool +pub fn aya::VerifierLogLevel::remove(&mut self, other: Self) +pub fn aya::VerifierLogLevel::set(&mut self, other: Self, value: bool) +pub const fn aya::VerifierLogLevel::symmetric_difference(self, other: Self) -> Self +pub fn aya::VerifierLogLevel::toggle(&mut self, other: Self) +pub const fn aya::VerifierLogLevel::union(self, other: Self) -> Self +impl aya::VerifierLogLevel +pub const fn aya::VerifierLogLevel::iter(&self) -> bitflags::iter::Iter +pub const fn aya::VerifierLogLevel::iter_names(&self) -> bitflags::iter::IterNames +impl bitflags::traits::Flags for aya::VerifierLogLevel +pub type aya::VerifierLogLevel::Bits = u32 +pub const aya::VerifierLogLevel::FLAGS: &'static [bitflags::traits::Flag] +pub fn aya::VerifierLogLevel::bits(&self) -> u32 +pub fn aya::VerifierLogLevel::from_bits_retain(bits: u32) -> aya::VerifierLogLevel +impl bitflags::traits::PublicFlags for aya::VerifierLogLevel +pub type aya::VerifierLogLevel::Internal = InternalBitFlags +pub type aya::VerifierLogLevel::Primitive = u32 +impl core::default::Default for aya::VerifierLogLevel +pub fn aya::VerifierLogLevel::default() -> Self +impl core::fmt::Binary for aya::VerifierLogLevel +pub fn aya::VerifierLogLevel::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::fmt::LowerHex for aya::VerifierLogLevel +pub fn aya::VerifierLogLevel::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::fmt::Octal for aya::VerifierLogLevel +pub fn aya::VerifierLogLevel::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::fmt::UpperHex for aya::VerifierLogLevel +pub fn aya::VerifierLogLevel::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::iter::traits::collect::Extend for aya::VerifierLogLevel +pub fn aya::VerifierLogLevel::extend>(&mut self, iterator: T) +impl core::iter::traits::collect::FromIterator for aya::VerifierLogLevel +pub fn aya::VerifierLogLevel::from_iter>(iterator: T) -> Self +impl core::iter::traits::collect::IntoIterator for aya::VerifierLogLevel +pub type aya::VerifierLogLevel::IntoIter = bitflags::iter::Iter +pub type aya::VerifierLogLevel::Item = aya::VerifierLogLevel +pub fn aya::VerifierLogLevel::into_iter(self) -> Self::IntoIter +impl core::ops::arith::Sub for aya::VerifierLogLevel +pub type aya::VerifierLogLevel::Output = aya::VerifierLogLevel +pub fn aya::VerifierLogLevel::sub(self, other: Self) -> Self +impl core::ops::arith::SubAssign for aya::VerifierLogLevel +pub fn aya::VerifierLogLevel::sub_assign(&mut self, other: Self) +impl core::ops::bit::BitAnd for aya::VerifierLogLevel +pub type aya::VerifierLogLevel::Output = aya::VerifierLogLevel +pub fn aya::VerifierLogLevel::bitand(self, other: Self) -> Self +impl core::ops::bit::BitAndAssign for aya::VerifierLogLevel +pub fn aya::VerifierLogLevel::bitand_assign(&mut self, other: Self) +impl core::ops::bit::BitOr for aya::VerifierLogLevel +pub type aya::VerifierLogLevel::Output = aya::VerifierLogLevel +pub fn aya::VerifierLogLevel::bitor(self, other: aya::VerifierLogLevel) -> Self +impl core::ops::bit::BitOrAssign for aya::VerifierLogLevel +pub fn aya::VerifierLogLevel::bitor_assign(&mut self, other: Self) +impl core::ops::bit::BitXor for aya::VerifierLogLevel +pub type aya::VerifierLogLevel::Output = aya::VerifierLogLevel +pub fn aya::VerifierLogLevel::bitxor(self, other: Self) -> Self +impl core::ops::bit::BitXorAssign for aya::VerifierLogLevel +pub fn aya::VerifierLogLevel::bitxor_assign(&mut self, other: Self) +impl core::ops::bit::Not for aya::VerifierLogLevel +pub type aya::VerifierLogLevel::Output = aya::VerifierLogLevel +pub fn aya::VerifierLogLevel::not(self) -> Self +impl core::clone::Clone for aya::VerifierLogLevel +pub fn aya::VerifierLogLevel::clone(&self) -> aya::VerifierLogLevel +impl core::fmt::Debug for aya::VerifierLogLevel +pub fn aya::VerifierLogLevel::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result +impl core::marker::Copy for aya::VerifierLogLevel +impl core::marker::Send for aya::VerifierLogLevel +impl core::marker::Sync for aya::VerifierLogLevel +impl core::marker::Unpin for aya::VerifierLogLevel +impl core::panic::unwind_safe::RefUnwindSafe for aya::VerifierLogLevel +impl core::panic::unwind_safe::UnwindSafe for aya::VerifierLogLevel +impl bitflags::traits::BitFlags for aya::VerifierLogLevel where B: bitflags::traits::Flags +pub type aya::VerifierLogLevel::Iter = bitflags::iter::Iter +pub type aya::VerifierLogLevel::IterNames = bitflags::iter::IterNames +impl core::convert::Into for aya::VerifierLogLevel where U: core::convert::From +pub fn aya::VerifierLogLevel::into(self) -> U +impl core::convert::TryFrom for aya::VerifierLogLevel where U: core::convert::Into +pub type aya::VerifierLogLevel::Error = core::convert::Infallible +pub fn aya::VerifierLogLevel::try_from(value: U) -> core::result::Result>::Error> +impl core::convert::TryInto for aya::VerifierLogLevel where U: core::convert::TryFrom +pub type aya::VerifierLogLevel::Error = >::Error +pub fn aya::VerifierLogLevel::try_into(self) -> core::result::Result>::Error> +impl alloc::borrow::ToOwned for aya::VerifierLogLevel where T: core::clone::Clone +pub type aya::VerifierLogLevel::Owned = T +pub fn aya::VerifierLogLevel::clone_into(&self, target: &mut T) +pub fn aya::VerifierLogLevel::to_owned(&self) -> T +impl core::any::Any for aya::VerifierLogLevel where T: 'static + core::marker::Sized +pub fn aya::VerifierLogLevel::type_id(&self) -> core::any::TypeId +impl core::borrow::Borrow for aya::VerifierLogLevel where T: core::marker::Sized +pub fn aya::VerifierLogLevel::borrow(&self) -> &T +impl core::borrow::BorrowMut for aya::VerifierLogLevel where T: core::marker::Sized +pub fn aya::VerifierLogLevel::borrow_mut(&mut self) -> &mut T +impl core::convert::From for aya::VerifierLogLevel +pub fn aya::VerifierLogLevel::from(t: T) -> T +pub unsafe trait aya::Pod: core::marker::Copy + 'static +impl aya::Pod for i128 +impl aya::Pod for i16 +impl aya::Pod for i32 +impl aya::Pod for i64 +impl aya::Pod for i8 +impl aya::Pod for u128 +impl aya::Pod for u16 +impl aya::Pod for u32 +impl aya::Pod for u64 +impl aya::Pod for u8 +impl aya::Pod for aya::maps::lpm_trie::Key +impl aya::Pod for [T; N] +pub fn aya::features() -> &'static aya_obj::obj::Features +pub fn aya::loaded_programs() -> aya::programs::ProgramsIter diff --git a/xtask/src/main.rs b/xtask/src/main.rs index 0e2ad36f..3f93d692 100644 --- a/xtask/src/main.rs +++ b/xtask/src/main.rs @@ -1,5 +1,6 @@ mod codegen; mod docs; +mod public_api; mod run; use anyhow::{Context as _, Result}; @@ -20,6 +21,7 @@ enum Subcommand { Docs, BuildIntegrationTest(run::BuildOptions), IntegrationTest(run::Options), + PublicApi(public_api::Options), } fn main() -> Result<()> { @@ -55,5 +57,6 @@ fn main() -> Result<()> { Ok(()) } Subcommand::IntegrationTest(opts) => run::run(opts), + Subcommand::PublicApi(opts) => public_api::public_api(opts, metadata), } } diff --git a/xtask/src/public_api.rs b/xtask/src/public_api.rs new file mode 100644 index 00000000..27780faf --- /dev/null +++ b/xtask/src/public_api.rs @@ -0,0 +1,129 @@ +use std::{ + fmt::Write as _, + fs::{read_to_string, write}, + path::Path, +}; + +use anyhow::{bail, Context as _}; +use cargo_metadata::{Metadata, Package}; +use clap::Parser; +use dialoguer::{theme::ColorfulTheme, Confirm}; +use diff::{lines, Result as Diff}; +use thiserror::Error; + +#[derive(Debug, Parser)] +pub struct Options { + /// Bless new API changes. + #[clap(long)] + pub bless: bool, +} + +#[derive(Error, Debug)] +enum PublicApiError { + #[error("error checking public api for {package}\n{source}\n")] + Error { + package: String, + source: anyhow::Error, + }, + #[error("public api for {package} changed:\n{diff}\n")] + Changed { package: String, diff: String }, +} + +pub fn public_api(options: Options, metadata: Metadata) -> anyhow::Result<()> { + let toolchain = "nightly"; + let Options { bless } = options; + + if !rustup_toolchain::is_installed(toolchain)? { + if Confirm::with_theme(&ColorfulTheme::default()) + .with_prompt("No nightly toolchain detected. Would you like to install one?") + .interact()? + { + rustup_toolchain::install(toolchain)?; + } else { + bail!("nightly toolchain not installed") + } + } + + let Metadata { + workspace_root, + packages, + .. + } = &metadata; + + let mut buf = String::new(); + packages.iter().for_each(|Package { name, publish, .. }| { + if matches!(publish, Some(publish) if publish.is_empty()) { + return; + } + if let Err(e) = check_package_api(name, toolchain, bless, workspace_root.as_std_path()) { + write!(&mut buf, "{}", e).unwrap(); + } + }); + + if !buf.is_empty() { + bail!("public api may have changed in one or more packages.\nplease bless by re-running this command with --bless\nErrors:\n{buf}"); + } + Ok(()) +} + +fn check_package_api( + package: &str, + toolchain: &str, + bless: bool, + workspace_root: &Path, +) -> Result<(), PublicApiError> { + let path = workspace_root + .join("xtask") + .join("public-api") + .join(package) + .with_extension("txt"); + + let rustdoc_json = rustdoc_json::Builder::default() + .toolchain(toolchain) + .package(package) + .all_features(true) + .build() + .map_err(|source| PublicApiError::Error { + package: package.to_string(), + source: source.into(), + })?; + + let public_api = public_api::Builder::from_rustdoc_json(rustdoc_json) + .build() + .map_err(|source| PublicApiError::Error { + package: package.to_string(), + source: source.into(), + })?; + + if bless { + write(&path, public_api.to_string().as_bytes()).map_err(|source| { + PublicApiError::Error { + package: package.to_string(), + source: source.into(), + } + })?; + } + let current_api = read_to_string(&path) + .with_context(|| format!("error reading {}", &path.display())) + .map_err(|source| PublicApiError::Error { + package: package.to_string(), + source, + })?; + + let mut buf = String::new(); + lines(¤t_api, &public_api.to_string()) + .into_iter() + .for_each(|diff| match diff { + Diff::Both(..) => (), + Diff::Right(line) => writeln!(&mut buf, "-{}", line).unwrap(), + Diff::Left(line) => writeln!(&mut buf, "+{}", line).unwrap(), + }); + + if !buf.is_empty() { + return Err(PublicApiError::Changed { + package: package.to_string(), + diff: buf, + }); + }; + Ok(()) +}