pub enum ReviewInput {
Key(KeyEvent),
Paste(String),
Mouse(MouseEvent),
}Variants§
Trait Implementations§
Source§impl Clone for ReviewInput
impl Clone for ReviewInput
Source§fn clone(&self) -> ReviewInput
fn clone(&self) -> ReviewInput
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 ReviewInput
impl Debug for ReviewInput
impl Eq for ReviewInput
Source§impl From<KeyCode> for ReviewInput
impl From<KeyCode> for ReviewInput
Source§impl From<KeyEvent> for ReviewInput
impl From<KeyEvent> for ReviewInput
Source§impl From<MouseEvent> for ReviewInput
impl From<MouseEvent> for ReviewInput
Source§fn from(mouse: MouseEvent) -> Self
fn from(mouse: MouseEvent) -> Self
Converts to this type from the input type.
Source§impl From<char> for ReviewInput
impl From<char> for ReviewInput
Source§impl PartialEq for ReviewInput
impl PartialEq for ReviewInput
impl StructuralPartialEq for ReviewInput
Auto Trait Implementations§
impl Freeze for ReviewInput
impl RefUnwindSafe for ReviewInput
impl Send for ReviewInput
impl Sync for ReviewInput
impl Unpin for ReviewInput
impl UnsafeUnpin for ReviewInput
impl UnwindSafe for ReviewInput
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more