Struct endpoint_sec_sys::es_event_setuid_t
source · #[repr(C)]pub struct es_event_setuid_t {
pub uid: uid_t,
/* private fields */
}Available on macOS only.
Expand description
Notification that a process has called setuid()
This event type does not support caching (notify-only).
Fields§
§uid: uid_tThe uid argument to the setuid() syscall
Trait Implementations§
source§impl Clone for es_event_setuid_t
impl Clone for es_event_setuid_t
source§fn clone(&self) -> es_event_setuid_t
fn clone(&self) -> es_event_setuid_t
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for es_event_setuid_t
impl Debug for es_event_setuid_t
source§impl Hash for es_event_setuid_t
impl Hash for es_event_setuid_t
source§impl PartialEq for es_event_setuid_t
impl PartialEq for es_event_setuid_t
source§fn eq(&self, other: &es_event_setuid_t) -> bool
fn eq(&self, other: &es_event_setuid_t) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for es_event_setuid_t
impl Eq for es_event_setuid_t
impl StructuralEq for es_event_setuid_t
impl StructuralPartialEq for es_event_setuid_t
Auto Trait Implementations§
impl RefUnwindSafe for es_event_setuid_t
impl Send for es_event_setuid_t
impl Sync for es_event_setuid_t
impl Unpin for es_event_setuid_t
impl UnwindSafe for es_event_setuid_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