浏览代码

bpf(doc): Hide docs of bindings

Before this change, documentation of helper functions (defined by us,
not bindings) were not visible, because `use gen::*` was overriding them
with helpers coming from aya-bpf-bindings, which have the same names and
no docs.

Signed-off-by: Michal Rostecki <vadorovsky@gmail.com>
Michal Rostecki 2 年之前
父节点
当前提交
3262f85925
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      bpf/aya-bpf/src/helpers.rs

+ 1 - 0
bpf/aya-bpf/src/helpers.rs

@@ -10,6 +10,7 @@
 use core::mem::{self, MaybeUninit};
 
 pub use aya_bpf_bindings::helpers as gen;
+#[doc(hidden)]
 pub use gen::*;
 
 use crate::cty::{c_char, c_long, c_void};