[][src]Struct salvo::server::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>

Methods

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 Future<Output = Result<(), Error>> + Send + '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<Self::Response, Self::Error>>

The future response value.

Auto Trait Implementations

impl !RefUnwindSafe for Server

impl Send for Server

impl Sync for Server

impl Unpin for Server

impl !UnwindSafe for Server

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,