pub enum ScrollCommand {
PageUp,
PageDown,
ScrollUp,
ScrollDown,
CenterOfWindow,
TopOfWindow,
BottomOfWindow,
}
Variants§
Trait Implementations§
Source§impl Clone for ScrollCommand
impl Clone for ScrollCommand
Source§fn clone(&self) -> ScrollCommand
fn clone(&self) -> ScrollCommand
Returns a copy 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 ScrollCommand
impl Debug for ScrollCommand
Source§impl Display for ScrollCommand
impl Display for ScrollCommand
Source§impl EnumMessage for ScrollCommand
impl EnumMessage for ScrollCommand
fn get_message(&self) -> Option<&'static str>
fn get_detailed_message(&self) -> Option<&'static str>
Source§fn get_documentation(&self) -> Option<&'static str>
fn get_documentation(&self) -> Option<&'static str>
Get the doc comment associated with a variant if it exists.
fn get_serializations(&self) -> &'static [&'static str]
Source§impl<'_derivative_strum> From<&'_derivative_strum ScrollCommand> for &'static str
impl<'_derivative_strum> From<&'_derivative_strum ScrollCommand> for &'static str
Source§fn from(x: &'_derivative_strum ScrollCommand) -> &'static str
fn from(x: &'_derivative_strum ScrollCommand) -> &'static str
Converts to this type from the input type.
Source§impl From<ScrollCommand> for &'static str
impl From<ScrollCommand> for &'static str
Source§fn from(x: ScrollCommand) -> &'static str
fn from(x: ScrollCommand) -> &'static str
Converts to this type from the input type.
Source§impl FromStr for ScrollCommand
impl FromStr for ScrollCommand
Source§impl IntoEnumIterator for ScrollCommand
impl IntoEnumIterator for ScrollCommand
type Iterator = ScrollCommandIter
fn iter() -> ScrollCommandIter ⓘ
Source§impl PartialEq for ScrollCommand
impl PartialEq for ScrollCommand
Source§impl TryFrom<&str> for ScrollCommand
impl TryFrom<&str> for ScrollCommand
impl Eq for ScrollCommand
impl StructuralPartialEq for ScrollCommand
Auto Trait Implementations§
impl Freeze for ScrollCommand
impl RefUnwindSafe for ScrollCommand
impl Send for ScrollCommand
impl Sync for ScrollCommand
impl Unpin for ScrollCommand
impl UnwindSafe for ScrollCommand
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<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