pub struct ThemeYaml {
pub name: String,
pub primary: String,
pub secondary: String,
pub accent: String,
pub background: String,
pub foreground: String,
pub error: String,
pub warning: String,
pub success: String,
}Expand description
YAML theme format for custom themes
Fields§
§name: StringTheme name
primary: StringPrimary color (hex format)
secondary: StringSecondary color (hex format)
accent: StringAccent color (hex format)
background: StringBackground color (hex format)
foreground: StringForeground color (hex format)
error: StringError color (hex format)
warning: StringWarning color (hex format)
success: StringSuccess color (hex format)
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ThemeYaml
impl<'de> Deserialize<'de> for ThemeYaml
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 ThemeYaml
impl RefUnwindSafe for ThemeYaml
impl Send for ThemeYaml
impl Sync for ThemeYaml
impl Unpin for ThemeYaml
impl UnwindSafe for ThemeYaml
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more