pub enum SignatureAgentLink {
Inline(JSONWebKeySet),
External(String),
}
Expand description
The different types of URLs a Signature-Agent
can have.
Variants§
Inline(JSONWebKeySet)
A data URL that was parsed into a JSON Web Key Set ahead of time.
External(String)
An external https:// or http:// URL that requires resolution into a JSON Web Key Set
Trait Implementations§
Source§impl Clone for SignatureAgentLink
impl Clone for SignatureAgentLink
Source§fn clone(&self) -> SignatureAgentLink
fn clone(&self) -> SignatureAgentLink
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SignatureAgentLink
impl Debug for SignatureAgentLink
Source§impl PartialEq for SignatureAgentLink
impl PartialEq for SignatureAgentLink
impl Eq for SignatureAgentLink
impl StructuralPartialEq for SignatureAgentLink
Auto Trait Implementations§
impl Freeze for SignatureAgentLink
impl RefUnwindSafe for SignatureAgentLink
impl Send for SignatureAgentLink
impl Sync for SignatureAgentLink
impl Unpin for SignatureAgentLink
impl UnwindSafe for SignatureAgentLink
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.