[][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 !RefUnwindSafe for Builder

impl Send for Builder

impl Sync for Builder

impl Unpin for Builder

impl !UnwindSafe for Builder

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, 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.