Struct surf_disco::request::Request

source ·
pub struct Request<T, E, VER: StaticVersionType> { /* private fields */ }

Implementations§

source§

impl<T: DeserializeOwned, E: Error, VER: StaticVersionType> Request<T, E, VER>

source

pub fn header( self, key: impl Into<HeaderName>, values: impl ToHeaderValues ) -> Self

Set a header on the request.

source

pub fn body_json<B: Serialize>(self, body: &B) -> Result<Self, E>

Set the request body using JSON.

Body is serialized using serde_json and the Content-Type header is set to application/json.

source

pub fn body_binary<B: Serialize>(self, body: &B) -> Result<Self, E>

Set the request body using [bincode].

Body is serialized using [bincode] and the Content-Type header is set to application/octet-stream.

§Errors

Fails if body does not serialize successfully.

source

pub async fn send(self) -> Result<T, E>

Send the request and await a response from the server.

If the request succeeds (receives a response with StatusCode::OK) the response body is converted to a T, using a format determined by the Content-Type header of the request.

§Errors

If the client is unable to reach the server, or if the response body cannot be interpreted as a T, an error message is created using catch_all and returned.

If the request completes but the response status code is not StatusCode::OK, an error message is constructed using the body of the response. If there is a body and it can be converted to an E using the content type specified in the response’s Content-Type header, that E will be returned directly. Otherwise, an error message is synthesized using catch_all that includes human-readable information about the response.

Trait Implementations§

source§

impl<T: Debug, E: Debug, VER: Debug + StaticVersionType> Debug for Request<T, E, VER>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T, E, VER: StaticVersionType> From<RequestBuilder> for Request<T, E, VER>

source§

fn from(inner: RequestBuilder) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<T, E, VER> !Freeze for Request<T, E, VER>

§

impl<T, E, VER> !RefUnwindSafe for Request<T, E, VER>

§

impl<T, E, VER> Send for Request<T, E, VER>

§

impl<T, E, VER> Sync for Request<T, E, VER>

§

impl<T, E, VER> Unpin for Request<T, E, VER>

§

impl<T, E, VER> !UnwindSafe for Request<T, E, VER>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more