pub struct UProbeAttachPoint<'a> {
pub location: UProbeAttachLocation<'a>,
pub cookie: Option<u64>,
}Expand description
Describes a single attachment point along with its optional cookie.
Fields§
§location: UProbeAttachLocation<'a>The actual target location.
Optional cookie available via bpf_get_attach_cookie().
Trait Implementations§
Source§impl<'a, L: Into<UProbeAttachLocation<'a>>> From<L> for UProbeAttachPoint<'a>
impl<'a, L: Into<UProbeAttachLocation<'a>>> From<L> for UProbeAttachPoint<'a>
Auto Trait Implementations§
impl<'a> Freeze for UProbeAttachPoint<'a>
impl<'a> RefUnwindSafe for UProbeAttachPoint<'a>
impl<'a> Send for UProbeAttachPoint<'a>
impl<'a> Sync for UProbeAttachPoint<'a>
impl<'a> Unpin for UProbeAttachPoint<'a>
impl<'a> UnsafeUnpin for UProbeAttachPoint<'a>
impl<'a> UnwindSafe for UProbeAttachPoint<'a>
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