pub struct ThemeProps {
pub active_colors: ThemeColorsBundle,
pub background_colors: ThemeColorsBundle,
pub content_backgrounds: HashMap<String, ThemedImageMaterial>,
pub button_backgrounds: HashMap<String, ThemedButtonMaterial>,
pub icons_level_sizes: Vec<Scalar>,
pub text_variants: HashMap<String, ThemedTextMaterial>,
pub switch_variants: HashMap<String, ThemedSwitchMaterial>,
pub slider_variants: HashMap<String, ThemedSliderMaterial>,
pub modal_shadow_variants: HashMap<String, Color>,
}Fields§
§active_colors: ThemeColorsBundle§background_colors: ThemeColorsBundle§content_backgrounds: HashMap<String, ThemedImageMaterial>§icons_level_sizes: Vec<Scalar>§text_variants: HashMap<String, ThemedTextMaterial>§switch_variants: HashMap<String, ThemedSwitchMaterial>§slider_variants: HashMap<String, ThemedSliderMaterial>§modal_shadow_variants: HashMap<String, Color>Implementations§
Source§impl ThemeProps
impl ThemeProps
pub fn active_colors(self, bundle: ThemeColorsBundle) -> Self
pub fn background_colors(self, bundle: ThemeColorsBundle) -> Self
pub fn content_background( self, id: impl ToString, material: ThemedImageMaterial, ) -> Self
pub fn icons_level_size(self, level: usize, size: Scalar) -> Self
pub fn text_variant( self, id: impl ToString, material: ThemedTextMaterial, ) -> Self
pub fn switch_variant( self, id: impl ToString, material: ThemedSwitchMaterial, ) -> Self
pub fn slider_variant( self, id: impl ToString, material: ThemedSliderMaterial, ) -> Self
pub fn modal_shadow_variant(self, id: impl ToString, color: Color) -> Self
Trait Implementations§
Source§impl Clone for ThemeProps
impl Clone for ThemeProps
Source§fn clone(&self) -> ThemeProps
fn clone(&self) -> ThemeProps
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 ThemeProps
impl Debug for ThemeProps
Source§impl Default for ThemeProps
impl Default for ThemeProps
Source§fn default() -> ThemeProps
fn default() -> ThemeProps
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ThemeProps
impl<'de> Deserialize<'de> for ThemeProps
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
Source§impl Prefab for ThemeProps
impl Prefab for ThemeProps
fn from_prefab(data: Value) -> Result<Self, PrefabError>
fn to_prefab(&self) -> Result<Value, PrefabError>
Source§impl PropsData for ThemePropswhere
Self: Clone,
impl PropsData for ThemePropswhere
Self: Clone,
Auto Trait Implementations§
impl !RefUnwindSafe for ThemeProps
impl !UnwindSafe for ThemeProps
impl Freeze for ThemeProps
impl Send for ThemeProps
impl Sync for ThemeProps
impl Unpin for ThemeProps
impl UnsafeUnpin for ThemeProps
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> Initialize for Twhere
T: Default,
impl<T> Initialize for Twhere
T: Default,
Source§fn initialize() -> T
fn initialize() -> T
Returns the initial value of this type.