pub struct StyleProvider<T> { /* private fields */ }
Expand description

Manages dynamically inserted styles. You should usually have exactly one. Generated classnames are only unique for a fixed StyleProvider.

You will typically use StyleProvider in comination with the crate::make_styles! macro.

Example

make_styles! {
    (_theme: EmptyTheme) -> MyClasses {
        ".my_class > span" {
            color: "red",
        },
    }
}

fn main() {
    let elem: &web_sys::Element = todo!(); // Some element
    let style_provider = StyleProvider::new_and_mount(elem, EmptyTheme);
     
    // inject the css styles
    let cls = style_provider.add_classes::<MyClasses>();
    elem.set_class_name(&cls.my_class);
     
    // inject it again; no change; will return the same classes
    let cls2 = style_provider.add_classes::<MyClasses>();
    assert_eq!(cls.my_class, cls2.my_class);
}

Implementations§

source§

impl<T: Theme> StyleProvider<T>

source

pub fn new_and_mount(some_elem: &Element, theme: T) -> Self

source

pub fn add_classes<C>(&self) -> C
where C: Classes<Theme = T>,

source

pub fn update_theme(&self, theme: T)

Trait Implementations§

source§

impl<T: Clone> Clone for StyleProvider<T>

source§

fn clone(&self) -> StyleProvider<T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more

Auto Trait Implementations§

§

impl<T> !RefUnwindSafe for StyleProvider<T>

§

impl<T> !Send for StyleProvider<T>

§

impl<T> !Sync for StyleProvider<T>

§

impl<T> Unpin for StyleProvider<T>

§

impl<T> !UnwindSafe for StyleProvider<T>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.