pub struct SigningKey {
pub signing_key: Option<String>,
}Expand description
SigningKey : Used to verify signatures of client keys.
Fields§
§signing_key: Option<String>A Base64-encoded Ed25519 public key that can be used to verify signatures of client keys.
Implementations§
Source§impl SigningKey
impl SigningKey
Sourcepub fn new() -> SigningKey
pub fn new() -> SigningKey
Used to verify signatures of client keys.
Trait Implementations§
Source§impl Clone for SigningKey
impl Clone for SigningKey
Source§fn clone(&self) -> SigningKey
fn clone(&self) -> SigningKey
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 moreSource§impl Debug for SigningKey
impl Debug for SigningKey
Source§impl Default for SigningKey
impl Default for SigningKey
Source§fn default() -> SigningKey
fn default() -> SigningKey
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SigningKey
impl<'de> Deserialize<'de> for SigningKey
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
Source§impl PartialEq for SigningKey
impl PartialEq for SigningKey
Source§impl Serialize for SigningKey
impl Serialize for SigningKey
impl StructuralPartialEq for SigningKey
Auto Trait Implementations§
impl Freeze for SigningKey
impl RefUnwindSafe for SigningKey
impl Send for SigningKey
impl Sync for SigningKey
impl Unpin for SigningKey
impl UnwindSafe for SigningKey
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