[][src]Struct craft::stack::Stack

pub struct Stack { /* fields omitted */ }

Methods

impl Stack[src]

pub fn new(
    handlers: Vec<Box<fn(_: &Request<Body>, _: &dyn Fn() -> Response<Body>) -> Response<Body>>>,
    server_handler: fn(_: &Request<Body>) -> Response<Body>
) -> Self
[src]

pub fn empty() -> Self[src]

pub fn push(
    &mut self,
    handler: fn(_: &Request<Body>, _: &dyn Fn() -> Response<Body>) -> Response<Body>
)
[src]

pub fn set(&mut self, server_handler: fn(_: &Request<Body>) -> Response<Body>)[src]

pub fn run(&self, request: &Request<Body>) -> Response<Body>[src]

Auto Trait Implementations

impl Unpin for Stack

impl Sync for Stack

impl Send for Stack

impl UnwindSafe for Stack

impl RefUnwindSafe for Stack

Blanket Implementations

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

impl<T> From<T> for 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]

impl<T> Erased for T