[][src]Struct plaster_router::Router

pub struct Router<T> { /* fields omitted */ }

Methods

impl<T> Router<T>[src]

pub fn new(callback: Callback<()>) -> Router<T>[src]

pub fn add_route(&mut self, route: &str, closure: fn(_: Params) -> T)[src]

pub fn navigate(&mut self, path: &str)[src]

pub fn resolve(&self) -> Option<T>[src]

pub fn current_route(&self) -> String[src]

pub fn set_route(&self, path: &str)[src]

Trait Implementations

impl<T> Drop for Router<T>[src]

Auto Trait Implementations

impl<T> Unpin for Router<T>

impl<T> !Sync for Router<T>

impl<T> !Send for Router<T>

impl<T> !RefUnwindSafe for Router<T>

impl<T> !UnwindSafe for Router<T>

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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