#[repr(C)]pub struct es_event_trace_t {
pub target: ShouldNotBeNull<es_process_t>,
/* private fields */
}Available on macOS and crate feature
macos_11_0_0 only.Expand description
Fired when one process attempts to attach to another process
This event can fire multiple times for a single trace attempt, for example when the processes to which is being attached is reparented during the operation
This event type does not support caching (notify-only).
Fields§
§target: ShouldNotBeNull<es_process_t>The process that will be attached to by the process that instigated the event
Implementations§
Source§impl es_event_trace_t
Accessors for ShouldNotBeNull fields
impl es_event_trace_t
Accessors for ShouldNotBeNull fields
Sourcepub unsafe fn target(&self) -> &es_process_t
pub unsafe fn target(&self) -> &es_process_t
Gives a references to the field while checking for null.
§Safety
See ShouldNotBeNull safety requirements.
Auto Trait Implementations§
impl Freeze for es_event_trace_t
impl RefUnwindSafe for es_event_trace_t
impl !Send for es_event_trace_t
impl !Sync for es_event_trace_t
impl Unpin for es_event_trace_t
impl UnwindSafe for es_event_trace_t
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