#[repr(u8)]pub enum DcsFunction {
SevenBit = 80,
EightBit = 144,
}
Expand description
DCS escape sequence function
Variants§
Implementations§
Source§impl DcsFunction
impl DcsFunction
Sourcepub const fn new() -> Self
pub const fn new() -> Self
Creates a new DcsFunction.
Trait Implementations§
Source§impl Clone for DcsFunction
impl Clone for DcsFunction
Source§fn clone(&self) -> DcsFunction
fn clone(&self) -> DcsFunction
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 DcsFunction
impl Debug for DcsFunction
Source§impl Default for DcsFunction
impl Default for DcsFunction
Source§fn default() -> DcsFunction
fn default() -> DcsFunction
Returns the “default value” for a type. Read more
Source§impl Display for DcsFunction
impl Display for DcsFunction
Source§impl From<&DcsFunction> for DcsMode
impl From<&DcsFunction> for DcsMode
Source§fn from(val: &DcsFunction) -> Self
fn from(val: &DcsFunction) -> Self
Converts to this type from the input type.
Source§impl From<&DcsFunction> for char
impl From<&DcsFunction> for char
Source§fn from(val: &DcsFunction) -> Self
fn from(val: &DcsFunction) -> Self
Converts to this type from the input type.
Source§impl From<&DcsFunction> for u8
impl From<&DcsFunction> for u8
Source§fn from(val: &DcsFunction) -> Self
fn from(val: &DcsFunction) -> Self
Converts to this type from the input type.
Source§impl From<&DcsMode> for DcsFunction
impl From<&DcsMode> for DcsFunction
Source§impl From<DcsFunction> for DcsMode
impl From<DcsFunction> for DcsMode
Source§fn from(val: DcsFunction) -> Self
fn from(val: DcsFunction) -> Self
Converts to this type from the input type.
Source§impl From<DcsFunction> for char
impl From<DcsFunction> for char
Source§fn from(val: DcsFunction) -> Self
fn from(val: DcsFunction) -> Self
Converts to this type from the input type.
Source§impl From<DcsFunction> for u8
impl From<DcsFunction> for u8
Source§fn from(val: DcsFunction) -> Self
fn from(val: DcsFunction) -> Self
Converts to this type from the input type.
Source§impl From<DcsMode> for DcsFunction
impl From<DcsMode> for DcsFunction
Source§impl PartialEq for DcsFunction
impl PartialEq for DcsFunction
impl Copy for DcsFunction
impl StructuralPartialEq for DcsFunction
Auto Trait Implementations§
impl Freeze for DcsFunction
impl RefUnwindSafe for DcsFunction
impl Send for DcsFunction
impl Sync for DcsFunction
impl Unpin for DcsFunction
impl UnwindSafe for DcsFunction
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