Struct ResponseValue
pub struct ResponseValue<T> { /* private fields */ }Expand description
Typed value returned by generated client methods.
This is used for successful responses and may appear in error responses
generated from the server (see Error::ErrorResponse)
Implementations§
§impl<T> ResponseValue<T>
impl<T> ResponseValue<T>
pub fn new(inner: T, status: StatusCode, headers: HeaderMap) -> ResponseValue<T>
pub fn new(inner: T, status: StatusCode, headers: HeaderMap) -> ResponseValue<T>
Creates a ResponseValue from the inner type, status, and headers.
Useful for generating test fixtures.
pub fn into_inner(self) -> T
pub fn into_inner(self) -> T
Consumes the ResponseValue, returning the wrapped value.
pub fn status(&self) -> StatusCode
pub fn status(&self) -> StatusCode
Gets the status from this response.
pub fn headers(&self) -> &HeaderMap
pub fn headers(&self) -> &HeaderMap
Gets the headers from this response.
pub fn content_length(&self) -> Option<u64>
pub fn content_length(&self) -> Option<u64>
Gets the parsed value of the Content-Length header, if present and valid.
§impl ResponseValue<ByteStream>
impl ResponseValue<ByteStream>
Trait Implementations§
§impl<T> AsRef<T> for ResponseValue<T>
impl<T> AsRef<T> for ResponseValue<T>
§impl<T> Debug for ResponseValue<T>where
T: Debug,
impl<T> Debug for ResponseValue<T>where
T: Debug,
§impl<T> Deref for ResponseValue<T>
impl<T> Deref for ResponseValue<T>
§impl<T> DerefMut for ResponseValue<T>
impl<T> DerefMut for ResponseValue<T>
§fn deref_mut(&mut self) -> &mut <ResponseValue<T> as Deref>::Target
fn deref_mut(&mut self) -> &mut <ResponseValue<T> as Deref>::Target
Mutably dereferences the value.
Auto Trait Implementations§
impl<T> Freeze for ResponseValue<T>where
T: Freeze,
impl<T> RefUnwindSafe for ResponseValue<T>where
T: RefUnwindSafe,
impl<T> Send for ResponseValue<T>where
T: Send,
impl<T> Sync for ResponseValue<T>where
T: Sync,
impl<T> Unpin for ResponseValue<T>where
T: Unpin,
impl<T> UnwindSafe for ResponseValue<T>where
T: UnwindSafe,
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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 more