pub struct SignatureKeypair {
pub public_key: Vec<u8>,
pub secret_key: Vec<u8>,
}Expand description
A keypair generation result.
Fields§
§public_key: Vec<u8>Public key bytes.
secret_key: Vec<u8>Secret key bytes.
Auto Trait Implementations§
impl Freeze for SignatureKeypair
impl RefUnwindSafe for SignatureKeypair
impl Send for SignatureKeypair
impl Sync for SignatureKeypair
impl Unpin for SignatureKeypair
impl UnsafeUnpin for SignatureKeypair
impl UnwindSafe for SignatureKeypair
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