pub struct SigningOutput {
pub authorization: String,
pub x_amz_date: String,
pub x_amz_security_token: Option<String>,
}Expand description
Output of the signing step — the HTTP headers to include in the request.
Fields§
§x_amz_date: String§x_amz_security_token: Option<String>Auto Trait Implementations§
impl Freeze for SigningOutput
impl RefUnwindSafe for SigningOutput
impl Send for SigningOutput
impl Sync for SigningOutput
impl Unpin for SigningOutput
impl UnsafeUnpin for SigningOutput
impl UnwindSafe for SigningOutput
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