#[repr(u32)]pub enum InputReaderAction {
Activate = 0,
AsynchronousOutputWritten = 1,
Reactivate = 2,
Deactivate = 3,
GotToken = 4,
Interrupt = 5,
EndOfFile = 6,
Done = 7,
}Variants§
Activate = 0
AsynchronousOutputWritten = 1
Reactivate = 2
Deactivate = 3
GotToken = 4
Interrupt = 5
EndOfFile = 6
Done = 7
Trait Implementations§
Source§impl Clone for InputReaderAction
impl Clone for InputReaderAction
Source§fn clone(&self) -> InputReaderAction
fn clone(&self) -> InputReaderAction
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 InputReaderAction
impl Debug for InputReaderAction
Source§impl PartialEq for InputReaderAction
impl PartialEq for InputReaderAction
Source§fn eq(&self, other: &InputReaderAction) -> bool
fn eq(&self, other: &InputReaderAction) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for InputReaderAction
impl PartialOrd for InputReaderAction
impl Copy for InputReaderAction
impl Eq for InputReaderAction
impl StructuralPartialEq for InputReaderAction
Auto Trait Implementations§
impl Freeze for InputReaderAction
impl RefUnwindSafe for InputReaderAction
impl Send for InputReaderAction
impl Sync for InputReaderAction
impl Unpin for InputReaderAction
impl UnsafeUnpin for InputReaderAction
impl UnwindSafe for InputReaderAction
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