Struct crossterm::terminal::ScrollDown
source · pub struct ScrollDown(pub u16);
Expand description
A command that scrolls the terminal screen a given number of rows down.
§Notes
Commands must be executed/queued for execution otherwise they do nothing.
Tuple Fields§
§0: u16
Trait Implementations§
source§impl Clone for ScrollDown
impl Clone for ScrollDown
source§fn clone(&self) -> ScrollDown
fn clone(&self) -> ScrollDown
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 Command for ScrollDown
impl Command for ScrollDown
source§impl Debug for ScrollDown
impl Debug for ScrollDown
source§impl Display for ScrollDown
impl Display for ScrollDown
source§impl PartialEq for ScrollDown
impl PartialEq for ScrollDown
source§fn eq(&self, other: &ScrollDown) -> bool
fn eq(&self, other: &ScrollDown) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for ScrollDown
impl Eq for ScrollDown
impl StructuralPartialEq for ScrollDown
Auto Trait Implementations§
impl Freeze for ScrollDown
impl RefUnwindSafe for ScrollDown
impl Send for ScrollDown
impl Sync for ScrollDown
impl Unpin for ScrollDown
impl UnwindSafe for ScrollDown
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