Struct App

Source
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>
where COMPONENT: Component + Debug, COMPONENT::Properties: Default,

Source

pub fn new(component: COMPONENT) -> Self

Source

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§

Source§

impl<Component: Debug> Debug for App<Component>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

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> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.