[][src]Trait yew::html::Renderable

pub trait Renderable<COMP: Component> {
    fn view(&self) -> Html<COMP>;
}

Should be rendered relative to context and component environment.

Required methods

fn view(&self) -> Html<COMP>

Called by rendering loop.

Loading content...

Trait Implementations

impl<'a, COMP: Component> From<&'a (dyn Renderable<COMP> + 'a)> for VNode<COMP>[src]

Implementors

impl<T> Renderable<Select<T>> for Select<T> where
    T: ToString + PartialEq + Clone + 'static, 
[src]

Loading content...