pub enum ThemePreset {
Light,
Dark,
Professional,
Minimal,
Vibrant,
}Expand description
Theme preset enum for predefined themes
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ThemePreset
impl Clone for ThemePreset
Source§fn clone(&self) -> ThemePreset
fn clone(&self) -> ThemePreset
Returns a duplicate of the value. Read more
1.0.0 · 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 ThemePreset
impl Debug for ThemePreset
Source§impl Hash for ThemePreset
impl Hash for ThemePreset
Source§impl PartialEq for ThemePreset
impl PartialEq for ThemePreset
impl Copy for ThemePreset
impl Eq for ThemePreset
impl StructuralPartialEq for ThemePreset
Auto Trait Implementations§
impl Freeze for ThemePreset
impl RefUnwindSafe for ThemePreset
impl Send for ThemePreset
impl Sync for ThemePreset
impl Unpin for ThemePreset
impl UnwindSafe for ThemePreset
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.