#[repr(u8)]pub enum ScrollingMode {
Enable = 104,
Disable = 108,
}
Expand description
Sixel scrolling mode
You can set the sixel scrolling mode by using the Sixel Scrolling feature in the Graphics Set-Up screen. You can also select this mode by using the sixel display mode (DECSDM) control function.
When sixel display mode is set, the Sixel Scrolling feature is enabled. When sixel display mode is reset, the Sixel Scrolling feature is disabled.
To set DECSDM, the control function is.
CSI | ? | 8 | 0 | h |
---|---|---|---|---|
9/11 | 3/15 | 3/8 | 3/0 | 6/8 |
To reset DECSDM, the control function is.
CSI | ? | 8 | 0 | 1 |
---|---|---|---|---|
9/11 | 3/15 | 3/8 | 3/0 | 6/12 |
Variants§
Trait Implementations§
Source§impl Clone for ScrollingMode
impl Clone for ScrollingMode
Source§fn clone(&self) -> ScrollingMode
fn clone(&self) -> ScrollingMode
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 ScrollingMode
impl Debug for ScrollingMode
Source§impl Default for ScrollingMode
impl Default for ScrollingMode
Source§fn default() -> ScrollingMode
fn default() -> ScrollingMode
Returns the “default value” for a type. Read more
Source§impl Display for ScrollingMode
impl Display for ScrollingMode
Source§impl From<&ScrollingMode> for char
impl From<&ScrollingMode> for char
Source§fn from(val: &ScrollingMode) -> Self
fn from(val: &ScrollingMode) -> Self
Converts to this type from the input type.
Source§impl From<&ScrollingMode> for u8
impl From<&ScrollingMode> for u8
Source§fn from(val: &ScrollingMode) -> Self
fn from(val: &ScrollingMode) -> Self
Converts to this type from the input type.
Source§impl From<ScrollingMode> for char
impl From<ScrollingMode> for char
Source§fn from(val: ScrollingMode) -> Self
fn from(val: ScrollingMode) -> Self
Converts to this type from the input type.
Source§impl From<ScrollingMode> for u8
impl From<ScrollingMode> for u8
Source§fn from(val: ScrollingMode) -> Self
fn from(val: ScrollingMode) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ScrollingMode
impl PartialEq for ScrollingMode
impl Copy for ScrollingMode
impl StructuralPartialEq for ScrollingMode
Auto Trait Implementations§
impl Freeze for ScrollingMode
impl RefUnwindSafe for ScrollingMode
impl Send for ScrollingMode
impl Sync for ScrollingMode
impl Unpin for ScrollingMode
impl UnwindSafe for ScrollingMode
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