pub struct CustomTheme {Show 27 fields
pub app_bg: Option<String>,
pub panel_bg: Option<String>,
pub canvas_bg: Option<String>,
pub node_bg: Option<String>,
pub node_focus_bg: Option<String>,
pub selection_bg: Option<String>,
pub surface_dim: Option<String>,
pub border: Option<String>,
pub border_focused: Option<String>,
pub text: Option<String>,
pub subtext: Option<String>,
pub muted: Option<String>,
pub accent: Option<String>,
pub replay_focus: Option<String>,
pub running: Option<String>,
pub success: Option<String>,
pub warning: Option<String>,
pub error: Option<String>,
pub timed_out: Option<String>,
pub cancelled: Option<String>,
pub branch: Option<String>,
pub user: Option<String>,
pub assistant: Option<String>,
pub tool: Option<String>,
pub timeline_track: Option<String>,
pub timeline_fill: Option<String>,
pub timeline_thumb: Option<String>,
}Fields§
§app_bg: Option<String>§panel_bg: Option<String>§canvas_bg: Option<String>§node_bg: Option<String>§node_focus_bg: Option<String>§selection_bg: Option<String>§surface_dim: Option<String>§border: Option<String>§border_focused: Option<String>§text: Option<String>§subtext: Option<String>§muted: Option<String>§accent: Option<String>§replay_focus: Option<String>§running: Option<String>§success: Option<String>§warning: Option<String>§error: Option<String>§timed_out: Option<String>§cancelled: Option<String>§branch: Option<String>§user: Option<String>§assistant: Option<String>§tool: Option<String>§timeline_track: Option<String>§timeline_fill: Option<String>§timeline_thumb: Option<String>Trait Implementations§
Source§impl Clone for CustomTheme
impl Clone for CustomTheme
Source§fn clone(&self) -> CustomTheme
fn clone(&self) -> CustomTheme
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 CustomTheme
impl Debug for CustomTheme
Source§impl Default for CustomTheme
impl Default for CustomTheme
Source§fn default() -> CustomTheme
fn default() -> CustomTheme
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CustomThemewhere
CustomTheme: Default,
impl<'de> Deserialize<'de> for CustomThemewhere
CustomTheme: Default,
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 CustomTheme
impl RefUnwindSafe for CustomTheme
impl Send for CustomTheme
impl Sync for CustomTheme
impl Unpin for CustomTheme
impl UnsafeUnpin for CustomTheme
impl UnwindSafe for CustomTheme
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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