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§
Source§impl<T> ResponseValue<T>
impl<T> ResponseValue<T>
Sourcepub 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.
Sourcepub fn into_inner(self) -> T
pub fn into_inner(self) -> T
Consumes the ResponseValue, returning the wrapped value.
Sourcepub fn status(&self) -> StatusCode
pub fn status(&self) -> StatusCode
Gets the status from this response.
Sourcepub 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.
Trait Implementations§
Source§impl<T> AsRef<T> for ResponseValue<T>
impl<T> AsRef<T> for ResponseValue<T>
Source§impl<T> Debug for ResponseValue<T>where
T: Debug,
impl<T> Debug for ResponseValue<T>where
T: Debug,
Source§impl<T> Deref for ResponseValue<T>
impl<T> Deref for ResponseValue<T>
Source§impl<T> DerefMut for ResponseValue<T>
impl<T> DerefMut for ResponseValue<T>
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> UnsafeUnpin for ResponseValue<T>where
T: UnsafeUnpin,
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<R> CryptoRng for R
impl<T> ErasedDestructor for Twhere
T: 'static,
impl<T> Formattable for T
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> ⓘ
impl<T> Parsable for T
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
impl<R> RngCore for Rwhere
R: Rng,
Source§impl<R> RngExt for R
impl<R> RngExt for R
Source§fn random<T>(&mut self) -> Twhere
StandardUniform: Distribution<T>,
fn random<T>(&mut self) -> Twhere
StandardUniform: Distribution<T>,
Return a random value via the
StandardUniform distribution. Read moreSource§fn random_iter<T>(self) -> Iter<StandardUniform, Self, T> ⓘ
fn random_iter<T>(self) -> Iter<StandardUniform, Self, T> ⓘ
Source§fn random_range<T, R>(&mut self, range: R) -> Twhere
T: SampleUniform,
R: SampleRange<T>,
fn random_range<T, R>(&mut self, range: R) -> Twhere
T: SampleUniform,
R: SampleRange<T>,
Generate a random value in the given range. Read more
Source§fn random_bool(&mut self, p: f64) -> bool
fn random_bool(&mut self, p: f64) -> bool
Return a bool with a probability
p of being true. Read moreSource§fn random_ratio(&mut self, numerator: u32, denominator: u32) -> bool
fn random_ratio(&mut self, numerator: u32, denominator: u32) -> bool
Return a bool with a probability of
numerator/denominator of being
true. Read moreSource§fn sample<T, D>(&mut self, distr: D) -> Twhere
D: Distribution<T>,
fn sample<T, D>(&mut self, distr: D) -> Twhere
D: Distribution<T>,
Sample a new value, using the given distribution. Read more
Source§fn sample_iter<T, D>(self, distr: D) -> Iter<D, Self, T> ⓘwhere
D: Distribution<T>,
Self: Sized,
fn sample_iter<T, D>(self, distr: D) -> Iter<D, Self, T> ⓘwhere
D: Distribution<T>,
Self: Sized,
Create an iterator that generates values using the given distribution. Read more