StyleCss

Trait StyleCss 

Source
pub trait StyleCss: IntoView {
    // Required method
    fn css(self, keys: &'static str) -> <Self as IntoView>::V;
}

Required Methods§

Source

fn css(self, keys: &'static str) -> <Self as IntoView>::V

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<V> StyleCss for V
where V: IntoView + 'static,