[][src]Struct parsec_service::front::front_end::FrontEndHandlerBuilder

pub struct FrontEndHandlerBuilder { /* fields omitted */ }

Builder for FrontEndHandler

Implementations

impl FrontEndHandlerBuilder[src]

pub fn new() -> Self[src]

Create a new FrontEndHandler builder

pub fn with_dispatcher(self, dispatcher: Dispatcher) -> Self[src]

Add a dispatcher to the builder

pub fn with_authenticator(
    self,
    auth_type: AuthType,
    authenticator: Box<dyn Authenticate + Send + Sync>
) -> Self
[src]

Add an authenticator to the builder

pub fn with_body_len_limit(self, body_len_limit: usize) -> Self[src]

Set a limit on the maximal body length received

pub fn build(self) -> Result<FrontEndHandler>[src]

Build into a FrontEndHandler

Trait Implementations

impl Debug for FrontEndHandlerBuilder[src]

impl Default for FrontEndHandlerBuilder[src]

Auto Trait Implementations

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> Free for T

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