[][src]Struct salvo::Server

pub struct Server {
    pub router: Arc<Router>,
    pub config: Arc<ServerConfig>,
}

The main Novel type: used to mount routes and catchers and launch the application.

Fields

router: Arc<Router>config: Arc<ServerConfig>

Implementations

impl Server[src]

pub fn new(router: Router) -> Server[src]

pub fn with_config(router: Router, config: ServerConfig) -> Server[src]

pub fn with_addr<T>(router: Router, addr: T) -> Server where
    T: ToSocketAddrs
[src]

pub fn serve(self) -> impl Send + Future<Output = Result<(), Error>> + 'static[src]

Trait Implementations

impl<T> Service<T> for Server[src]

type Response = HyperHandler

Responses given by the service.

type Error = Error

Errors produced by the service.

type Future = Ready<Result<<Server as Service<T>>::Response, <Server as Service<T>>::Error>>

The future response value.

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]