pub struct IterLinkInfo {
pub target_name: OsString,
pub iter_type: IterType,
/* private fields */
}Expand description
Information about a BPF iterator link.
Fields§
§target_name: OsStringThe bpf_iter__* target name.
iter_type: IterTypeSpecific BPF iterator information.
Trait Implementations§
Source§impl Clone for IterLinkInfo
impl Clone for IterLinkInfo
Source§fn clone(&self) -> IterLinkInfo
fn clone(&self) -> IterLinkInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for IterLinkInfo
impl RefUnwindSafe for IterLinkInfo
impl Send for IterLinkInfo
impl Sync for IterLinkInfo
impl Unpin for IterLinkInfo
impl UnsafeUnpin for IterLinkInfo
impl UnwindSafe for IterLinkInfo
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