Struct devolutions_crypto::signing_key::SigningPublicKey
source · pub struct SigningPublicKey { /* private fields */ }Expand description
A public key. This key can be sent in clear on unsecured channels and stored publicly.
Trait Implementations§
source§impl Clone for SigningPublicKey
impl Clone for SigningPublicKey
source§fn clone(&self) -> SigningPublicKey
fn clone(&self) -> SigningPublicKey
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 moresource§impl Debug for SigningPublicKey
impl Debug for SigningPublicKey
source§impl From<&SigningPublicKey> for VerifyingKey
impl From<&SigningPublicKey> for VerifyingKey
source§fn from(data: &SigningPublicKey) -> Self
fn from(data: &SigningPublicKey) -> Self
Converts to this type from the input type.
source§impl From<SigningPublicKey> for Vec<u8>
impl From<SigningPublicKey> for Vec<u8>
source§fn from(data: SigningPublicKey) -> Self
fn from(data: SigningPublicKey) -> Self
Serialize the structure into a Vec<u8>, for storage, transmission or use in another language.
source§impl HeaderType for SigningPublicKey
impl HeaderType for SigningPublicKey
Auto Trait Implementations§
impl RefUnwindSafe for SigningPublicKey
impl Send for SigningPublicKey
impl Sync for SigningPublicKey
impl Unpin for SigningPublicKey
impl UnwindSafe for SigningPublicKey
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