pub struct ThemeEntry {
pub name: Option<String>,
pub inherits: Option<String>,
pub selectors: SelectorStyles,
pub variables: IndexMap<String, String>,
pub breakpoints: IndexMap<String, String>,
}Fields§
§name: Option<String>§inherits: Option<String>§selectors: SelectorStyles§variables: IndexMap<String, String>§breakpoints: IndexMap<String, String>Trait Implementations§
Source§impl Clone for ThemeEntry
impl Clone for ThemeEntry
Source§fn clone(&self) -> ThemeEntry
fn clone(&self) -> ThemeEntry
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 ThemeEntry
impl Debug for ThemeEntry
Source§impl Default for ThemeEntry
impl Default for ThemeEntry
Source§fn default() -> ThemeEntry
fn default() -> ThemeEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ThemeEntry
impl<'de> Deserialize<'de> for ThemeEntry
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 ThemeEntry
impl RefUnwindSafe for ThemeEntry
impl Send for ThemeEntry
impl Sync for ThemeEntry
impl Unpin for ThemeEntry
impl UnwindSafe for ThemeEntry
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