Struct salvo_core::Service[][src]

pub struct Service {
    pub router: Arc<Router>,
    pub catchers: Arc<Vec<Box<dyn Catcher>>>,
    pub allowed_media_types: Arc<Vec<Mime>>,
}

Fields

router: Arc<Router>catchers: Arc<Vec<Box<dyn Catcher>>>allowed_media_types: Arc<Vec<Mime>>

Implementations

impl Service[src]

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

pub fn with_catchers(self, catchers: Vec<Box<dyn Catcher>>) -> Self[src]

pub fn catchers(&self) -> Arc<Vec<Box<dyn Catcher>>>[src]

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

pub fn allowed_media_types(&self) -> Arc<Vec<Mime>>[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<Self::Response, Self::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> 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>, 

impl<T> WithSubscriber for T[src]