pub struct KeyBindingChallenge {
pub aud: String,
pub nonce: String,
}Expand description
The challenge to be sent to the holder. The purpose of the challenge is to ensure the freshness of the key binding signature, as well as the proper audience.
Fields§
§aud: String§nonce: StringA value used to ensure the freshness of the signature, as specified here.
Trait Implementations§
Source§impl Clone for KeyBindingChallenge
impl Clone for KeyBindingChallenge
Source§fn clone(&self) -> KeyBindingChallenge
fn clone(&self) -> KeyBindingChallenge
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 KeyBindingChallenge
impl RefUnwindSafe for KeyBindingChallenge
impl Send for KeyBindingChallenge
impl Sync for KeyBindingChallenge
impl Unpin for KeyBindingChallenge
impl UnsafeUnpin for KeyBindingChallenge
impl UnwindSafe for KeyBindingChallenge
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