pub struct HybridPrivateKey {
pub ed25519: Vec<u8>,
pub ml_dsa_65: Vec<u8>,
}Expand description
Both component private keys. Never serialized to the wire.
Fields§
§ed25519: Vec<u8>§ml_dsa_65: Vec<u8>Trait Implementations§
Source§impl Clone for HybridPrivateKey
impl Clone for HybridPrivateKey
Source§fn clone(&self) -> HybridPrivateKey
fn clone(&self) -> HybridPrivateKey
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for HybridPrivateKey
impl RefUnwindSafe for HybridPrivateKey
impl Send for HybridPrivateKey
impl Sync for HybridPrivateKey
impl Unpin for HybridPrivateKey
impl UnsafeUnpin for HybridPrivateKey
impl UnwindSafe for HybridPrivateKey
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