#[repr(u8)]pub enum BuiltinDither {
MonoDark = 0,
MonoLight = 1,
Xterm16 = 2,
Xterm256 = 3,
Vt340Mono = 4,
Vt340Color = 5,
}
Expand description
Built-in dither
Variants§
MonoDark = 0
Monochrome terminal with dark background
MonoLight = 1
Monochrome terminal with dark background
Xterm16 = 2
XTerm 16color
Xterm256 = 3
XTerm 256color
Vt340Mono = 4
VT340 monochrome
Vt340Color = 5
VT340 color
Trait Implementations§
Source§impl Clone for BuiltinDither
impl Clone for BuiltinDither
Source§fn clone(&self) -> BuiltinDither
fn clone(&self) -> BuiltinDither
Returns a duplicate 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 BuiltinDither
impl Debug for BuiltinDither
Source§impl Default for BuiltinDither
impl Default for BuiltinDither
Source§fn default() -> BuiltinDither
fn default() -> BuiltinDither
Returns the “default value” for a type. Read more
Source§impl PartialEq for BuiltinDither
impl PartialEq for BuiltinDither
impl Copy for BuiltinDither
impl StructuralPartialEq for BuiltinDither
Auto Trait Implementations§
impl Freeze for BuiltinDither
impl RefUnwindSafe for BuiltinDither
impl Send for BuiltinDither
impl Sync for BuiltinDither
impl Unpin for BuiltinDither
impl UnwindSafe for BuiltinDither
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