[−][src]Struct rust_fel::App
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]
COMPONENT: Component,
COMPONENT::Properties: Default,
COMPONENT: Debug,
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
Auto Trait Implementations
impl<Component> RefUnwindSafe for App<Component> where
Component: RefUnwindSafe,
Component: RefUnwindSafe,
impl<Component> Send for App<Component> where
Component: Send,
Component: Send,
impl<Component> Sync for App<Component> where
Component: Sync,
Component: Sync,
impl<Component> Unpin for App<Component> where
Component: Unpin,
Component: Unpin,
impl<Component> UnwindSafe for App<Component> where
Component: UnwindSafe,
Component: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,