[][src]Trait salvo::writer::Writer

pub trait Writer: Send {
#[must_use = "future must be used"]#[must_use]    fn write<'life0, 'life1, 'life2, 'async_trait>(
        self,
        conf: Arc<ServerConfig>,
        req: &'life0 mut Request,
        depot: &'life1 mut Depot,
        resp: &'life2 mut Response
    ) -> Pin<Box<dyn Future<Output = ()> + 'async_trait + Send>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        'life2: 'async_trait,
        Self: 'async_trait
; }

Required methods

#[must_use = "future must be used"]#[must_use]fn write<'life0, 'life1, 'life2, 'async_trait>(
    self,
    conf: Arc<ServerConfig>,
    req: &'life0 mut Request,
    depot: &'life1 mut Depot,
    resp: &'life2 mut Response
) -> Pin<Box<dyn Future<Output = ()> + 'async_trait + Send>> where
    'life0: 'async_trait,
    'life1: 'async_trait,
    'life2: 'async_trait,
    Self: 'async_trait, 

Loading content...

Implementations on Foreign Types

impl Writer for ()[src]

Loading content...

Implementors

impl Writer for HttpError[src]

impl Writer for NamedFile[src]

impl<T> Writer for HtmlTextContent<T> where
    T: AsRef<str> + Send
[src]

impl<T> Writer for JsonTextContent<T> where
    T: AsRef<str> + Send
[src]

impl<T> Writer for PlainTextContent<T> where
    T: AsRef<str> + Send
[src]

impl<T> Writer for XmlTextContent<T> where
    T: AsRef<str> + Send
[src]

Loading content...