endpoint-sec 0.5.1

High-level Rust wrappers around the Endpoint Security Framework
Documentation
//! [`EventSeteuid`]

use endpoint_sec_sys::{es_event_seteuid_t, uid_t};

/// A process has called `seteuid()`.
#[doc(alias = "es_event_seteuid_t")]
pub struct EventSeteuid<'a> {
    /// Raw event
    pub(crate) raw: &'a es_event_seteuid_t,
}

impl EventSeteuid<'_> {
    /// Argument to the `seteuid()` call.
    #[inline(always)]
    pub fn euid(&self) -> uid_t {
        self.raw.euid
    }
}

// Safety: safe to send across threads: does not contain any interior mutability nor depend on current thread state
unsafe impl Send for EventSeteuid<'_> {}
// Safety: safe to share across threads: does not contain any interior mutability nor depend on current thread state
unsafe impl Sync for EventSeteuid<'_> {}

impl_debug_eq_hash_with_functions!(EventSeteuid<'a>; euid);