pub enum EventData<'a> {
Exec {
content: &'a str,
args: &'a str,
envs: &'a str,
dir: Option<&'a Path>,
},
ExecDone {
code: i32,
main_event_id: i64,
},
Read,
Write,
Miss,
}
Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> RefUnwindSafe for EventData<'a>
impl<'a> Send for EventData<'a>
impl<'a> Sync for EventData<'a>
impl<'a> Unpin for EventData<'a>
impl<'a> UnwindSafe for EventData<'a>
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