Struct aws_sigv4::http_request::SignableRequest
source · #[non_exhaustive]pub struct SignableRequest<'a> { /* private fields */ }
Expand description
Represents all of the information necessary to sign an HTTP request.
Implementations§
source§impl<'a> SignableRequest<'a>
impl<'a> SignableRequest<'a>
sourcepub fn new(
method: &'a str,
uri: impl Into<Cow<'a, str>>,
headers: impl Iterator<Item = (&'a str, &'a str)>,
body: SignableBody<'a>,
) -> Result<Self, SigningError>
pub fn new( method: &'a str, uri: impl Into<Cow<'a, str>>, headers: impl Iterator<Item = (&'a str, &'a str)>, body: SignableBody<'a>, ) -> Result<Self, SigningError>
Creates a new SignableRequest
.
sourcepub fn body(&self) -> &SignableBody<'_>
pub fn body(&self) -> &SignableBody<'_>
Returns the signable body
Trait Implementations§
Auto Trait Implementations§
impl<'a> !Freeze for SignableRequest<'a>
impl<'a> RefUnwindSafe for SignableRequest<'a>
impl<'a> Send for SignableRequest<'a>
impl<'a> Sync for SignableRequest<'a>
impl<'a> Unpin for SignableRequest<'a>
impl<'a> UnwindSafe for SignableRequest<'a>
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>
Creates a shared type from an unshared type.