pub struct ParameterDetails {
pub algorithm: Option<Algorithm>,
pub created: Option<i64>,
pub expires: Option<i64>,
pub keyid: Option<String>,
pub nonce: Option<String>,
pub tag: Option<String>,
}Expand description
Parsed values from Signature-Input header.
Fields§
§algorithm: Option<Algorithm>The value of the alg parameter, if present and resolves to a known algorithm.
created: Option<i64>The value of the created parameter, if present.
expires: Option<i64>The value of the expires parameter, if present.
keyid: Option<String>The value of the keyid parameter, if present.
nonce: Option<String>The value of the nonce parameter, if present.
tag: Option<String>The value of the tag parameter,if present.
Trait Implementations§
Source§impl Clone for ParameterDetails
impl Clone for ParameterDetails
Source§fn clone(&self) -> ParameterDetails
fn clone(&self) -> ParameterDetails
Returns a copy 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 ParameterDetails
impl RefUnwindSafe for ParameterDetails
impl Send for ParameterDetails
impl Sync for ParameterDetails
impl Unpin for ParameterDetails
impl UnwindSafe for ParameterDetails
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