Struct iced_web::css::Css[][src]

pub struct Css<'a> { /* fields omitted */ }

A cascading style sheet.

Implementations

impl<'a> Css<'a>[src]

pub fn new() -> Self[src]

Creates an empty Css.

pub fn insert(&mut self, bump: &'a Bump, rule: Rule) -> String[src]

Inserts the Rule in the Css, if it was not previously inserted.

It returns the class name of the provided Rule.

pub fn node(self, bump: &'a Bump) -> Node<'a>[src]

Produces the VDOM node of the Css.

Trait Implementations

impl<'a> Debug for Css<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Css<'a>

impl<'a> Send for Css<'a>

impl<'a> Sync for Css<'a>

impl<'a> Unpin for Css<'a>

impl<'a> UnwindSafe for Css<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.