pub struct Request<B = SdkBody> { /* private fields */ }
Expand description
An HTTP Request Type
Implementations§
Source§impl<B> Request<B>
impl<B> Request<B>
Sourcepub fn try_into_http02x(self) -> Result<Request<B>, HttpError>
Available on crate feature http-02x
only.
pub fn try_into_http02x(self) -> Result<Request<B>, HttpError>
http-02x
only.Converts this request into an http 0.x request.
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<Request<B>, HttpError>
Available on crate feature http-1x
only.
pub fn try_into_http1x(self) -> Result<Request<B>, HttpError>
http-1x
only.Converts this request into an http 1.x request.
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) -> Request<U>
pub fn map<U>(self, f: impl Fn(B) -> U) -> Request<U>
Update the body of this request to be a new body.
Sourcepub fn into_parts(self) -> RequestParts<B>
pub fn into_parts(self) -> RequestParts<B>
Convert this request into its parts.
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 uri_mut(&mut self) -> &mut Uri
pub fn uri_mut(&mut self) -> &mut Uri
Returns a mutable reference the the URI of this http::Request
Sourcepub fn set_uri<U>(&mut self, uri: U) -> Result<(), U::Error>where
U: TryInto<Uri>,
pub fn set_uri<U>(&mut self, uri: U) -> Result<(), U::Error>where
U: TryInto<Uri>,
Sets the URI of this request
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 request extensions
Source§impl Request<SdkBody>
impl Request<SdkBody>
Trait Implementations§
Auto Trait Implementations§
impl<B = SdkBody> !Freeze for Request<B>
impl<B = SdkBody> !RefUnwindSafe for Request<B>
impl<B> Send for Request<B>where
B: Send,
impl<B> Sync for Request<B>where
B: Sync,
impl<B> Unpin for Request<B>where
B: Unpin,
impl<B = SdkBody> !UnwindSafe for Request<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.