pub struct SignatureOutput {
pub signature_input: String,
pub signature: String,
pub content_digest: String,
}Expand description
Output from signing an HTTP request.
Fields§
§signature_input: StringValue for the Signature-Input header
signature: StringValue for the Signature header
content_digest: StringValue for the Content-Digest header
Trait Implementations§
Source§impl Clone for SignatureOutput
impl Clone for SignatureOutput
Source§fn clone(&self) -> SignatureOutput
fn clone(&self) -> SignatureOutput
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for SignatureOutput
impl RefUnwindSafe for SignatureOutput
impl Send for SignatureOutput
impl Sync for SignatureOutput
impl Unpin for SignatureOutput
impl UnwindSafe for SignatureOutput
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