[][src]Struct saphir::middleware::Builder

pub struct Builder { /* fields omitted */ }

Methods

impl Builder[src]

pub fn new() -> Self[src]

Creates a new MiddlewareStack Builder

pub fn apply<M: 'static + Middleware>(
    self,
    m: M,
    include_path: Vec<&str>,
    exclude_path: Option<Vec<&str>>
) -> Self
[src]

Method to apply a new middleware onto the stack where the include_path vec are all path affected by the middleware, and exclude_path are exclusion amongst the included paths.

pub fn build(self) -> MiddlewareStack[src]

Build the middleware stack

Auto Trait Implementations

impl Send for Builder

impl Sync for Builder

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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> Erased for T