[][src]Struct rust_fel::App

pub struct App<Component> { /* fields omitted */ }

App has a member, component, representing a rust_fel::Element. implementing rust_fel::Component

Implementations

impl<COMPONENT> App<COMPONENT> where
    COMPONENT: Component,
    COMPONENT::Properties: Default,
    COMPONENT: Debug
[src]

pub fn new(component: COMPONENT) -> Self[src]

pub fn mount(&self, node_id: &str)[src]

App holds a rust_fel::Element and mount invokes the rust_fel::Element's render function. After the rust_fel::Element is created from the call to self.component.render(); then rustfel::render::render is invoked. This constructs a Virtual DOM and then the real DOM in the browser.

Trait Implementations

impl<Component: Debug> Debug for App<Component>[src]

Auto Trait Implementations

impl<Component> RefUnwindSafe for App<Component> where
    Component: RefUnwindSafe

impl<Component> Send for App<Component> where
    Component: Send

impl<Component> Sync for App<Component> where
    Component: Sync

impl<Component> Unpin for App<Component> where
    Component: Unpin

impl<Component> UnwindSafe for App<Component> where
    Component: UnwindSafe

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.