#[repr(C)]pub struct es_event_cs_invalidated_t { /* private fields */ }Available on macOS and crate feature
macos_11_0_0 only.Expand description
Code signing status for process was invalidated.
This event fires when the CS_VALID bit is removed from a process’ CS flags, that is, when the
first invalid page is paged in for a process with an otherwise valid code signature, or when a
process is explicitly invalidated by a csops(CS_OPS_MARKINVALID) syscall. This event does not
fire if CS_HARD was set, since CS_HARD by design prevents the process from going invalid.
This event type does not support caching (notify-only).
Trait Implementations§
Source§impl Clone for es_event_cs_invalidated_t
impl Clone for es_event_cs_invalidated_t
Source§fn clone(&self) -> es_event_cs_invalidated_t
fn clone(&self) -> es_event_cs_invalidated_t
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for es_event_cs_invalidated_t
impl Debug for es_event_cs_invalidated_t
Source§impl Hash for es_event_cs_invalidated_t
impl Hash for es_event_cs_invalidated_t
Source§impl PartialEq for es_event_cs_invalidated_t
impl PartialEq for es_event_cs_invalidated_t
Source§fn eq(&self, other: &es_event_cs_invalidated_t) -> bool
fn eq(&self, other: &es_event_cs_invalidated_t) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for es_event_cs_invalidated_t
impl Eq for es_event_cs_invalidated_t
impl StructuralPartialEq for es_event_cs_invalidated_t
Auto Trait Implementations§
impl Freeze for es_event_cs_invalidated_t
impl RefUnwindSafe for es_event_cs_invalidated_t
impl Send for es_event_cs_invalidated_t
impl Sync for es_event_cs_invalidated_t
impl Unpin for es_event_cs_invalidated_t
impl UnwindSafe for es_event_cs_invalidated_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