pub enum IoEventKind {
Read,
Write,
Open,
Close,
Error,
Flush,
Seek,
Truncate,
}Expand description
A category of I/O event.
Variants§
Trait Implementations§
Source§impl Clone for IoEventKind
impl Clone for IoEventKind
Source§fn clone(&self) -> IoEventKind
fn clone(&self) -> IoEventKind
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for IoEventKind
impl Debug for IoEventKind
Source§impl PartialEq for IoEventKind
impl PartialEq for IoEventKind
impl Eq for IoEventKind
impl StructuralPartialEq for IoEventKind
Auto Trait Implementations§
impl Freeze for IoEventKind
impl RefUnwindSafe for IoEventKind
impl Send for IoEventKind
impl Sync for IoEventKind
impl Unpin for IoEventKind
impl UnsafeUnpin for IoEventKind
impl UnwindSafe for IoEventKind
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