pub struct ColorScheme {Show 21 fields
pub name: String,
pub background: Option<String>,
pub black: Option<String>,
pub blue: Option<String>,
pub bright_black: Option<String>,
pub bright_blue: Option<String>,
pub bright_cyan: Option<String>,
pub bright_green: Option<String>,
pub bright_purple: Option<String>,
pub bright_red: Option<String>,
pub bright_white: Option<String>,
pub bright_yellow: Option<String>,
pub cursor_color: Option<String>,
pub cyan: Option<String>,
pub foreground: Option<String>,
pub green: Option<String>,
pub purple: Option<String>,
pub red: Option<String>,
pub selection_background: Option<String>,
pub white: Option<String>,
pub yellow: Option<String>,
}Fields§
§name: String§background: Option<String>§black: Option<String>§blue: Option<String>§bright_black: Option<String>§bright_blue: Option<String>§bright_cyan: Option<String>§bright_green: Option<String>§bright_purple: Option<String>§bright_red: Option<String>§bright_white: Option<String>§bright_yellow: Option<String>§cursor_color: Option<String>§cyan: Option<String>§foreground: Option<String>§green: Option<String>§purple: Option<String>§red: Option<String>§selection_background: Option<String>§white: Option<String>§yellow: Option<String>Trait Implementations§
Source§impl Clone for ColorScheme
impl Clone for ColorScheme
Source§fn clone(&self) -> ColorScheme
fn clone(&self) -> ColorScheme
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ColorScheme
impl Debug for ColorScheme
Source§impl<'de> Deserialize<'de> for ColorScheme
impl<'de> Deserialize<'de> for ColorScheme
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ColorScheme
impl RefUnwindSafe for ColorScheme
impl Send for ColorScheme
impl Sync for ColorScheme
impl Unpin for ColorScheme
impl UnsafeUnpin for ColorScheme
impl UnwindSafe for ColorScheme
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