pub struct SignedSignature {
pub signature_input: String,
pub signature: String,
}Expand description
The header field values produced by sign.
Fields§
§signature_input: StringThe Signature-Input field value (for example sig1=(...);created=...).
signature: StringThe Signature field value (for example sig1=:<base64>:).
Trait Implementations§
Source§impl Clone for SignedSignature
impl Clone for SignedSignature
Source§fn clone(&self) -> SignedSignature
fn clone(&self) -> SignedSignature
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SignedSignature
impl RefUnwindSafe for SignedSignature
impl Send for SignedSignature
impl Sync for SignedSignature
impl Unpin for SignedSignature
impl UnsafeUnpin for SignedSignature
impl UnwindSafe for SignedSignature
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