pub struct Response<B = SdkBody> { /* private fields */ }
Expand description
An HTTP Response Type
Implementations§
Source§impl<B> Response<B>
impl<B> Response<B>
Sourcepub fn try_into_http02x(self) -> Result<Response<B>, HttpError>
Available on crate feature http-02x
only.
pub fn try_into_http02x(self) -> Result<Response<B>, HttpError>
http-02x
only.Converts this response into an http 0.x response.
Depending on the internal storage type, this operation may be free or it may have an internal cost.
Sourcepub fn try_into_http1x(self) -> Result<Response<B>, HttpError>
Available on crate feature http-1x
only.
pub fn try_into_http1x(self) -> Result<Response<B>, HttpError>
http-1x
only.Converts this response into an http 1.x response.
Depending on the internal storage type, this operation may be free or it may have an internal cost.
Sourcepub fn map<U>(self, f: impl Fn(B) -> U) -> Response<U>
pub fn map<U>(self, f: impl Fn(B) -> U) -> Response<U>
Update the body of this response to be a new body.
Sourcepub fn new(status: StatusCode, body: B) -> Self
pub fn new(status: StatusCode, body: B) -> Self
Returns a response with the given status and body
Sourcepub fn status(&self) -> StatusCode
pub fn status(&self) -> StatusCode
Returns the status code
Sourcepub fn status_mut(&mut self) -> &mut StatusCode
pub fn status_mut(&mut self) -> &mut StatusCode
Returns a mutable reference to the status code
Sourcepub fn headers_mut(&mut self) -> &mut Headers
pub fn headers_mut(&mut self) -> &mut Headers
Returns a mutable reference to the header map
Sourcepub fn add_extension<T: Send + Sync + Clone + 'static>(&mut self, extension: T)
pub fn add_extension<T: Send + Sync + Clone + 'static>(&mut self, extension: T)
Adds an extension to the response extensions
Trait Implementations§
Auto Trait Implementations§
impl<B> Freeze for Response<B>where
B: Freeze,
impl<B = SdkBody> !RefUnwindSafe for Response<B>
impl<B> Send for Response<B>where
B: Send,
impl<B> Sync for Response<B>where
B: Sync,
impl<B> Unpin for Response<B>where
B: Unpin,
impl<B = SdkBody> !UnwindSafe for Response<B>
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.