pub enum UnicodeTheme {
Minimal,
Basic,
Rich,
Fancy,
}
Expand description
Unicode character theme
Variants§
Minimal
Minimal ASCII-compatible characters
Basic
Basic Unicode symbols
Rich
Rich Unicode with full symbol set
Fancy
Fancy decorative Unicode
Trait Implementations§
Source§impl Clone for UnicodeTheme
impl Clone for UnicodeTheme
Source§fn clone(&self) -> UnicodeTheme
fn clone(&self) -> UnicodeTheme
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for UnicodeTheme
impl Debug for UnicodeTheme
Source§impl Default for UnicodeTheme
impl Default for UnicodeTheme
Source§fn default() -> UnicodeTheme
fn default() -> UnicodeTheme
Returns the “default value” for a type. Read more
Source§impl PartialEq for UnicodeTheme
impl PartialEq for UnicodeTheme
impl Copy for UnicodeTheme
impl Eq for UnicodeTheme
impl StructuralPartialEq for UnicodeTheme
Auto Trait Implementations§
impl Freeze for UnicodeTheme
impl RefUnwindSafe for UnicodeTheme
impl Send for UnicodeTheme
impl Sync for UnicodeTheme
impl Unpin for UnicodeTheme
impl UnwindSafe for UnicodeTheme
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