pub struct App<Component> { /* private fields */ }
Expand description
App
has a member, component
, representing a rust_fel::Element.
implementing rust_fel::Component
Implementations§
Source§impl<COMPONENT> App<COMPONENT>
impl<COMPONENT> App<COMPONENT>
pub fn new(component: COMPONENT) -> Self
Sourcepub fn mount(&self, node_id: &str)
pub fn mount(&self, node_id: &str)
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> Freeze for App<Component>where
Component: Freeze,
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§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more