Skip to main content

endpoint_sec/event/
event_read_link.rs

1//! [`EventReadLink`]
2
3use endpoint_sec_sys::es_event_readlink_t;
4
5use crate::File;
6
7/// Resolve a symbolic link event.
8#[doc(alias = "es_event_readlink_t")]
9pub struct EventReadLink<'a> {
10    /// Raw event
11    pub(crate) raw: &'a es_event_readlink_t,
12}
13
14impl<'a> EventReadLink<'a> {
15    /// The symbolic link that is attempting to be resolved.
16    #[inline(always)]
17    pub fn source(&self) -> File<'a> {
18        // Safety: 'a tied to self, object obtained through ES
19        File::new(unsafe { self.raw.source() })
20    }
21}
22
23// Safety: safe to send across threads: does not contain any interior mutability nor depend on current thread state
24unsafe impl Send for EventReadLink<'_> {}
25// Safety: safe to share across threads: does not contain any interior mutability nor depend on current thread state
26unsafe impl Sync for EventReadLink<'_> {}
27
28impl_debug_eq_hash_with_functions!(EventReadLink<'a>; source);