#[repr(u8)]pub enum SixelControl {
Parameter = 59,
CarriageReturn = 36,
NewLine = 45,
Repeat = 33,
Color = 35,
Raster = 34,
}
Expand description
Terminal control characters used in Sixel input mode.
Variants§
Implementations§
Source§impl SixelControl
impl SixelControl
Sourcepub const fn new() -> Self
pub const fn new() -> Self
Creates a new SixelControl.
Trait Implementations§
Source§impl Clone for SixelControl
impl Clone for SixelControl
Source§fn clone(&self) -> SixelControl
fn clone(&self) -> SixelControl
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 SixelControl
impl Debug for SixelControl
Source§impl Default for SixelControl
impl Default for SixelControl
Source§fn default() -> SixelControl
fn default() -> SixelControl
Returns the “default value” for a type. Read more
Source§impl Display for SixelControl
impl Display for SixelControl
Source§impl From<&SixelControl> for char
impl From<&SixelControl> for char
Source§fn from(val: &SixelControl) -> Self
fn from(val: &SixelControl) -> Self
Converts to this type from the input type.
Source§impl From<&SixelControl> for u8
impl From<&SixelControl> for u8
Source§fn from(val: &SixelControl) -> Self
fn from(val: &SixelControl) -> Self
Converts to this type from the input type.
Source§impl From<SixelControl> for char
impl From<SixelControl> for char
Source§fn from(val: SixelControl) -> Self
fn from(val: SixelControl) -> Self
Converts to this type from the input type.
Source§impl From<SixelControl> for u8
impl From<SixelControl> for u8
Source§fn from(val: SixelControl) -> Self
fn from(val: SixelControl) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SixelControl
impl PartialEq for SixelControl
impl Copy for SixelControl
impl StructuralPartialEq for SixelControl
Auto Trait Implementations§
impl Freeze for SixelControl
impl RefUnwindSafe for SixelControl
impl Send for SixelControl
impl Sync for SixelControl
impl Unpin for SixelControl
impl UnwindSafe for SixelControl
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