Struct salvo_proxy::Proxy
source · pub struct Proxy<U> { /* private fields */ }Expand description
Proxy
Implementations§
Trait Implementations§
source§impl<U> Handler for Proxy<U>where
U: Upstreams,
U::Error: Into<BoxedError>,
impl<U> Handler for Proxy<U>where U: Upstreams, U::Error: Into<BoxedError>,
source§fn handle<'life0, 'life1, 'life2, 'life3, 'life4, 'async_trait>(
&'life0 self,
req: &'life1 mut Request,
_depot: &'life2 mut Depot,
res: &'life3 mut Response,
ctrl: &'life4 mut FlowCtrl
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait,
'life4: 'async_trait,
fn handle<'life0, 'life1, 'life2, 'life3, 'life4, 'async_trait>( &'life0 self, req: &'life1 mut Request, _depot: &'life2 mut Depot, res: &'life3 mut Response, ctrl: &'life4 mut FlowCtrl ) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait, 'life3: 'async_trait, 'life4: 'async_trait,
Handle http request.
Auto Trait Implementations§
impl<U> !RefUnwindSafe for Proxy<U>
impl<U> Send for Proxy<U>where U: Send,
impl<U> Sync for Proxy<U>where U: Sync,
impl<U> Unpin for Proxy<U>where U: Unpin,
impl<U> !UnwindSafe for Proxy<U>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more