pub enum IterType {
Map {
map_id: u32,
},
Cgroup {
cgroup_id: u64,
order: CgroupIterOrder,
},
Task {
tid: u32,
pid: u32,
},
Unknown,
}Expand description
Specific BPF iterator types with decoded information.
Variants§
Map
A map type iterator.
Cgroup
A cgroup type iterator.
Fields
§
order: CgroupIterOrderThe order in how the iterator traverses.
Task
A task type iterator.
Fields
Unknown
An unknown or unsupported iterator type.
The target_name can still be used to
identify the iterator.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for IterType
impl RefUnwindSafe for IterType
impl Send for IterType
impl Sync for IterType
impl Unpin for IterType
impl UnsafeUnpin for IterType
impl UnwindSafe for IterType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more