[][src]Struct roost_app::App

pub struct App {
    pub store: Rc<RefCell<Store>>,
    router: Rc<Router>,
}

Used for creating an instance of a Roost application

Fields

store: Rc<RefCell<Store>>

Manages the state wrapper and routing of the application.

Having a this field as public allows for borrowing the application state directly from the client and server.

router: Rc<Router>

Handles the different routes of Roost

Methods

impl App[src]

The included functions of a Roost application instance

pub fn new(path: String) -> App[src]

Returns an application with a path that is set based on the provided string and initial state values found in State::new()

pub fn from_state_json(json: &str) -> App[src]

Returns an application based on the provided JSON string. The provided JSON string should be a serialized State.

pub fn render(&self) -> VirtualNode[src]

Retruns a virtual dom based on the current state of our application

Auto Trait Implementations

impl !Send for App

impl !Sync for App

Blanket Implementations

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.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]