pub struct ResponseWrapper { /* private fields */ }Expand description
A wrapper of HTTP response.
Trait Implementations§
Source§impl HttpResponse for ResponseWrapper
impl HttpResponse for ResponseWrapper
fn status(&self) -> StatusCode
fn none<'async_trait>(
self,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>where
Self: 'async_trait,
fn text<'async_trait>(
self,
) -> Pin<Box<dyn Future<Output = Result<String>> + Send + 'async_trait>>where
Self: 'async_trait,
fn vec<'async_trait>(
self,
) -> Pin<Box<dyn Future<Output = Result<Vec<u8>>> + Send + 'async_trait>>where
Self: 'async_trait,
Auto Trait Implementations§
impl Freeze for ResponseWrapper
impl !RefUnwindSafe for ResponseWrapper
impl Send for ResponseWrapper
impl Sync for ResponseWrapper
impl Unpin for ResponseWrapper
impl UnsafeUnpin for ResponseWrapper
impl !UnwindSafe for ResponseWrapper
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