[][src]Struct salvo::ServerConfig

pub struct ServerConfig {
    pub timeouts: Timeouts,
    pub protocol: Protocol,
    pub local_addr: Option<SocketAddr>,
    pub catchers: Arc<Vec<Box<dyn Catcher + 'static, Global>, Global>>,
    pub allowed_media_types: Arc<Vec<Mime, Global>>,
}

Fields

timeouts: Timeoutsprotocol: Protocol

Protocol of the incoming requests

This is automatically set by the http and https functions, but can be set if you are manually constructing the hyper http instance.

local_addr: Option<SocketAddr>

Default host address to use when none is provided

When set, this provides a default host for any requests that don't provide one. When unset, any request without a host specified will fail.

catchers: Arc<Vec<Box<dyn Catcher + 'static, Global>, Global>>allowed_media_types: Arc<Vec<Mime, Global>>

Implementations

impl ServerConfig[src]

Trait Implementations

impl Default for ServerConfig[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, 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>, 

impl<T> WithSubscriber for T[src]