pub struct OpaqueKeypairBytes {
pub private: OpaquePrivateKeyBytes,
pub public: OpaquePublicKeyBytes,
}
Available on crate feature
alloc
only.Expand description
The underlying representation of an OpaqueKeypair
.
The encoded representation of an OpaqueKeypairBytes
consists of the encoded representation of
its OpaquePublicKeyBytes
followed by the encoded representation of its
OpaquePrivateKeyBytes
.
Fields§
§private: OpaquePrivateKeyBytes
The opaque private key
public: OpaquePublicKeyBytes
The opaque public key
Trait Implementations§
Auto Trait Implementations§
impl Freeze for OpaqueKeypairBytes
impl RefUnwindSafe for OpaqueKeypairBytes
impl Send for OpaqueKeypairBytes
impl Sync for OpaqueKeypairBytes
impl Unpin for OpaqueKeypairBytes
impl UnwindSafe for OpaqueKeypairBytes
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