pub struct BaseKeyPair<P, K> {
pub public_key: P,
pub secret_key: Option<K>,
}Expand description
Base for asymmetric key pair
Fields§
§public_key: P§secret_key: Option<K>Trait Implementations§
Source§impl<P: Clone, K: Clone> Clone for BaseKeyPair<P, K>
impl<P: Clone, K: Clone> Clone for BaseKeyPair<P, K>
Source§fn clone(&self) -> BaseKeyPair<P, K>
fn clone(&self) -> BaseKeyPair<P, K>
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<P: Default, K: Default> Default for BaseKeyPair<P, K>
impl<P: Default, K: Default> Default for BaseKeyPair<P, K>
Source§fn default() -> BaseKeyPair<P, K>
fn default() -> BaseKeyPair<P, K>
Returns the “default value” for a type. Read more
Source§impl From<BaseKeyPair<PublicKey, SecretKey>> for KeyPair
impl From<BaseKeyPair<PublicKey, SecretKey>> for KeyPair
Source§fn from(key_pair: Ed25519KeyPair) -> Self
fn from(key_pair: Ed25519KeyPair) -> Self
Converts to this type from the input type.
Source§impl From<BaseKeyPair<PublicKey, SecretKey>> for KeyPair
impl From<BaseKeyPair<PublicKey, SecretKey>> for KeyPair
Source§fn from(key_pair: Secp256k1KeyPair) -> Self
fn from(key_pair: Secp256k1KeyPair) -> Self
Converts to this type from the input type.
impl<P, K> StructuralPartialEq for BaseKeyPair<P, K>
Auto Trait Implementations§
impl<P, K> Freeze for BaseKeyPair<P, K>
impl<P, K> RefUnwindSafe for BaseKeyPair<P, K>where
P: RefUnwindSafe,
K: RefUnwindSafe,
impl<P, K> Send for BaseKeyPair<P, K>
impl<P, K> Sync for BaseKeyPair<P, K>
impl<P, K> Unpin for BaseKeyPair<P, K>
impl<P, K> UnwindSafe for BaseKeyPair<P, K>where
P: UnwindSafe,
K: UnwindSafe,
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more