pub enum IoEvent {
Open(Box<Completion<OpenKey, Opened>>),
Save(Box<Completion<SaveKey, SaveReceipt>>),
Native(Box<Completion<NativeKey, NativeResult>>),
Remote(RemoteEvent),
DirectoryFilter(Box<Completion<FilterKey, Opened>>),
Filesystem(Box<FsEvent>),
Review(Box<Completion<PreparationKey, PreparedReview>>),
Session {
request: WorkerId,
outcome: Outcome<()>,
},
}Variants§
Open(Box<Completion<OpenKey, Opened>>)
Save(Box<Completion<SaveKey, SaveReceipt>>)
Native(Box<Completion<NativeKey, NativeResult>>)
Remote(RemoteEvent)
DirectoryFilter(Box<Completion<FilterKey, Opened>>)
Filesystem(Box<FsEvent>)
Review(Box<Completion<PreparationKey, PreparedReview>>)
Session
Trait Implementations§
Source§impl<'de> Deserialize<'de> for IoEvent
impl<'de> Deserialize<'de> for IoEvent
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl !RefUnwindSafe for IoEvent
impl !Sync for IoEvent
impl !UnwindSafe for IoEvent
impl Freeze for IoEvent
impl Send for IoEvent
impl Unpin for IoEvent
impl UnsafeUnpin for IoEvent
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