Struct hyper_static_server::ConfigurationBuilder[][src]

pub struct ConfigurationBuilder { /* fields omitted */ }

Implementations

impl ConfigurationBuilder[src]

impl ConfigurationBuilder[src]

pub fn with_endpoint(self, _endpoint: Endpoint) -> ConfigurationBuilder[src]

pub fn with_endpoint_address(
    self,
    _address: EndpointAddress
) -> ConfigurationBuilder
[src]

pub fn with_endpoint_socket_address(
    self,
    _address: impl Into<SocketAddr>
) -> ConfigurationBuilder
[src]

pub fn with_endpoint_socket_address_parse(
    self,
    _address: &impl ToSocketAddrs
) -> Result<ConfigurationBuilder, Error>
[src]

pub fn with_endpoint_descriptor(self, _descriptor: u32) -> ConfigurationBuilder[src]

pub fn with_endpoint_protocol(
    self,
    _protocol: EndpointProtocol
) -> ConfigurationBuilder
[src]

pub fn with_endpoint_security(
    self,
    _security: EndpointSecurity
) -> ConfigurationBuilder
[src]

impl ConfigurationBuilder[src]

impl ConfigurationBuilder[src]

pub fn with_endpoint_certificate_native(
    self,
    _certificate: NativeTlsCertificate
) -> ConfigurationBuilder
[src]

pub fn with_endpoint_certificate_native_from_pkcs12_file(
    self,
    _path: impl AsRef<Path>,
    _password: &str
) -> Result<ConfigurationBuilder, Error>
[src]

pub fn with_endpoint_certificate_native_from_pkcs12_data(
    self,
    _data: impl AsRef<[u8]>,
    _password: &str
) -> Result<ConfigurationBuilder, Error>
[src]

impl ConfigurationBuilder[src]

pub fn with_handler<H, F, RB>(self, _handler: H) -> ConfigurationBuilder where
    F: Future<Output = Result<Response<RB>, Error>> + Send + 'static,
    H: Handler<Future = F, ResponseBody = RB, ResponseBodyError = <RB as Body>::Error> + Send + Sync + 'static,
    RB: Body<Data = Bytes> + Send + 'static,
    <RB as Body>::Error: Error,
    <RB as Body>::Error: Send,
    <RB as Body>::Error: Sync,
    <RB as Body>::Error: 'static, 
[src]

pub fn with_handler_fn_sync<I, C, RB>(self, _handler: I) -> ConfigurationBuilder where
    C: Fn(Request<Body>) -> Result<Response<RB>, Error> + Send + Sync + 'static,
    I: Into<HandlerFnSync<C, RB>>,
    RB: Body<Data = Bytes> + Send + 'static,
    <RB as Body>::Error: Error,
    <RB as Body>::Error: Send,
    <RB as Body>::Error: Sync,
    <RB as Body>::Error: 'static, 
[src]

pub fn with_handler_fn_async<I, C, F, RB>(
    self,
    _handler: I
) -> ConfigurationBuilder where
    C: Fn(Request<Body>) -> F + Send + Sync + 'static,
    F: Future<Output = Result<Response<RB>, Error>> + Send + 'static,
    I: Into<HandlerFnAsync<C, F, RB>>,
    RB: Body<Data = Bytes> + Send + 'static,
    <RB as Body>::Error: Error,
    <RB as Body>::Error: Send,
    <RB as Body>::Error: Sync,
    <RB as Body>::Error: 'static, 
[src]

pub fn with_handler_dyn<H>(self, _handler: H) -> ConfigurationBuilder where
    H: HandlerDyn
[src]

pub fn with_handler_arc<I>(self, _handler: I) -> ConfigurationBuilder where
    I: Into<HandlerDynArc>, 
[src]

impl ConfigurationBuilder[src]

pub fn with_route<'a, P, H, F, RB>(
    self,
    _paths: P,
    _handler: H
) -> ConfigurationBuilder where
    F: Future<Output = Result<Response<RB>, Error>> + Send + 'static,
    P: Into<RoutePaths<'a>>,
    H: Handler<Future = F, ResponseBody = RB, ResponseBodyError = <RB as Body>::Error> + Send + Sync + 'static,
    RB: Body<Data = Bytes> + Send + 'static,
    <RB as Body>::Error: Error,
    <RB as Body>::Error: Send,
    <RB as Body>::Error: Sync,
    <RB as Body>::Error: 'static, 
[src]

pub fn with_route_fn_sync<'a, P, I, C, RB>(
    self,
    _paths: P,
    _handler: I
) -> ConfigurationBuilder where
    C: Fn(Request<Body>) -> Result<Response<RB>, Error> + Send + Sync + 'static,
    P: Into<RoutePaths<'a>>,
    I: Into<HandlerFnSync<C, RB>>,
    RB: Body<Data = Bytes> + Send + 'static,
    <RB as Body>::Error: Error,
    <RB as Body>::Error: Send,
    <RB as Body>::Error: Sync,
    <RB as Body>::Error: 'static, 
[src]

pub fn with_route_fn_async<'a, P, I, C, F, RB>(
    self,
    _paths: P,
    _handler: I
) -> ConfigurationBuilder where
    C: Fn(Request<Body>) -> F + Send + Sync + 'static,
    F: Future<Output = Result<Response<RB>, Error>> + Send + 'static,
    P: Into<RoutePaths<'a>>,
    I: Into<HandlerFnAsync<C, F, RB>>,
    RB: Body<Data = Bytes> + Send + 'static,
    <RB as Body>::Error: Error,
    <RB as Body>::Error: Send,
    <RB as Body>::Error: Sync,
    <RB as Body>::Error: 'static, 
[src]

pub fn with_route_dyn<'a, P, H>(
    self,
    _paths: P,
    _handler: H
) -> ConfigurationBuilder where
    P: Into<RoutePaths<'a>>,
    H: HandlerDyn
[src]

pub fn with_route_arc<'a, P, I>(
    self,
    _paths: P,
    _handler: I
) -> ConfigurationBuilder where
    P: Into<RoutePaths<'a>>,
    I: Into<HandlerDynArc>, 
[src]

pub fn with_routes(self, _routes: impl Into<Routes>) -> ConfigurationBuilder[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> 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>,