Struct salvo::Service[][src]

pub struct Service { /* fields omitted */ }

Implementations

impl Service[src]

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

pub fn router(&self) -> Arc<Router>[src]

pub fn with_catchers(
    self,
    catchers: Vec<Box<dyn Catcher + 'static, Global>, Global>
) -> Service
[src]

pub fn catchers(&self) -> Arc<Vec<Box<dyn Catcher + 'static, Global>, Global>>[src]

pub fn with_allowed_media_types(
    self,
    allowed_media_types: Vec<Mime, Global>
) -> Service
[src]

pub fn allowed_media_types(&self) -> Arc<Vec<Mime, Global>>[src]

Trait Implementations

impl<'t, T> Service<&'t T> for Service where
    T: Transport, 
[src]

type Response = HyperHandler

Responses given by the service.

type Error = Error

Errors produced by the service.

type Future = Ready<Result<<Service as Service<&'t T>>::Response, <Service as Service<&'t T>>::Error>>

The future response value.

Auto Trait Implementations

impl !RefUnwindSafe for Service

impl Send for Service

impl Sync for Service

impl Unpin for Service

impl !UnwindSafe for Service

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, 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>,