Struct endpoint_sec_sys::es_event_write_t
source · #[repr(C)]pub struct es_event_write_t {
pub target: ShouldNotBeNull<es_file_t>,
/* private fields */
}Available on macOS only.
Expand description
Write to a file
This event type does not support caching (notify-only).
Fields§
§target: ShouldNotBeNull<es_file_t>The file being written to
Implementations§
source§impl es_event_write_t
impl es_event_write_t
Accessors for ShouldNotBeNull fields
sourcepub unsafe fn target(&self) -> &es_file_t
pub unsafe fn target(&self) -> &es_file_t
Gives a references to the field while checking for null.
Safety
See ShouldNotBeNull safety requirements.
Auto Trait Implementations§
impl RefUnwindSafe for es_event_write_t
impl !Send for es_event_write_t
impl !Sync for es_event_write_t
impl Unpin for es_event_write_t
impl UnwindSafe for es_event_write_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