Struct highnoon::app::App[][src]

pub struct App<S: State> { /* fields omitted */ }

The main entry point to highnoon. An App can be launched as a server or mounted into another App. Each App has a chain of (Filters)Filter which are applied to each request.

Implementations

impl<S: State> App<S>[src]

pub fn new(state: S) -> Self[src]

Create a new App with the given state. State must be Send + Sync + 'static because it gets shared by all route handlers. If you need inner mutability use a Mutex or similar.

pub fn state(&self) -> &S[src]

Get a reference to this App's state

pub fn with<F>(&mut self, filter: F) where
    F: Filter<S> + Send + Sync + 'static, 
[src]

Append a filter to the chain. Filters are applied to all endpoints in this app, and are applied in the order they are registered.

pub fn at<'a, 'p>(&'a mut self, path: &'p str) -> Route<'a, 'p, S>[src]

Create a route at the given path. Returns a Route object on which you can attach handlers for each HTTP method

pub async fn listen(self, host: impl ToSocketAddrs) -> Result<()>[src]

Start a server listening on the given address (See ToSocketAddrs from tokio) This method only returns if there is an error. (Graceful shutdown is TODO)

Trait Implementations

impl<S: State> Endpoint<S> for App<S>[src]

Auto Trait Implementations

impl<S> !RefUnwindSafe for App<S>

impl<S> Send for App<S>

impl<S> Sync for App<S>

impl<S> Unpin for App<S> where
    S: Unpin

impl<S> !UnwindSafe for App<S>

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

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<V, T> VZip<V> for T where
    V: MultiLane<T>,