pub enum ThemeScheme {
Light,
Dark,
}Expand description
Theme scheme
Variants§
Trait Implementations§
Source§impl Clone for ThemeScheme
impl Clone for ThemeScheme
Source§fn clone(&self) -> ThemeScheme
fn clone(&self) -> ThemeScheme
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 moreimpl Copy for ThemeScheme
Source§impl Debug for ThemeScheme
impl Debug for ThemeScheme
Source§impl Default for ThemeScheme
impl Default for ThemeScheme
Source§fn default() -> ThemeScheme
fn default() -> ThemeScheme
Returns the “default value” for a type. Read more
Source§impl PartialEq for ThemeScheme
impl PartialEq for ThemeScheme
Source§fn eq(&self, other: &ThemeScheme) -> bool
fn eq(&self, other: &ThemeScheme) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ThemeScheme
Auto Trait Implementations§
impl Freeze for ThemeScheme
impl RefUnwindSafe for ThemeScheme
impl Send for ThemeScheme
impl Sync for ThemeScheme
impl Unpin for ThemeScheme
impl UnsafeUnpin for ThemeScheme
impl UnwindSafe for ThemeScheme
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