#[repr(C)]pub struct es_event_profile_remove_t {
pub instigator: ShouldNotBeNull<es_process_t>,
pub profile: ShouldNotBeNull<es_profile_t>,
}Available on macOS and crate feature
macos_14_0_0 only.Expand description
Notification for Profiles removed on the system.
This event type does not support caching (notify-only).
Fields§
§instigator: ShouldNotBeNull<es_process_t>Process that instigated the Profile removal.
profile: ShouldNotBeNull<es_profile_t>Profile being removed.
Implementations§
Source§impl es_event_profile_remove_t
Accessors for ShouldNotBeNull fields
impl es_event_profile_remove_t
Accessors for ShouldNotBeNull fields
Sourcepub unsafe fn instigator(&self) -> &es_process_t
pub unsafe fn instigator(&self) -> &es_process_t
Gives a references to the field while checking for null.
§Safety
See ShouldNotBeNull safety requirements.
Sourcepub unsafe fn profile(&self) -> &es_profile_t
pub unsafe fn profile(&self) -> &es_profile_t
Gives a references to the field while checking for null.
§Safety
See ShouldNotBeNull safety requirements.
Auto Trait Implementations§
impl Freeze for es_event_profile_remove_t
impl RefUnwindSafe for es_event_profile_remove_t
impl !Send for es_event_profile_remove_t
impl !Sync for es_event_profile_remove_t
impl Unpin for es_event_profile_remove_t
impl UnwindSafe for es_event_profile_remove_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