pub struct SigningKeySet {
pub issuer: String,
pub version: u64,
pub keys: Vec<SigningKey>,
}Expand description
A complete authoritative snapshot from the configured HTTPS issuer.
Fields§
§issuer: String§version: u64§keys: Vec<SigningKey>Implementations§
Source§impl SigningKeySet
impl SigningKeySet
Trait Implementations§
Source§impl Clone for SigningKeySet
impl Clone for SigningKeySet
Source§fn clone(&self) -> SigningKeySet
fn clone(&self) -> SigningKeySet
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 moreSource§impl Debug for SigningKeySet
impl Debug for SigningKeySet
Source§impl<'de> Deserialize<'de> for SigningKeySet
impl<'de> Deserialize<'de> for SigningKeySet
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for SigningKeySet
Source§impl PartialEq for SigningKeySet
impl PartialEq for SigningKeySet
Source§impl Serialize for SigningKeySet
impl Serialize for SigningKeySet
impl StructuralPartialEq for SigningKeySet
Auto Trait Implementations§
impl Freeze for SigningKeySet
impl RefUnwindSafe for SigningKeySet
impl Send for SigningKeySet
impl Sync for SigningKeySet
impl Unpin for SigningKeySet
impl UnsafeUnpin for SigningKeySet
impl UnwindSafe for SigningKeySet
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