pub struct IdentityParts {
pub encryption_secret: X25519SecretKey,
pub signing_secret: Ed25519SecretKey,
pub encryption_public: IdentityEncryptionPublicKey,
pub signing_public: IdentitySigningPublicKey,
pub hash: IdentityHash,
}Fields§
§encryption_secret: X25519SecretKey§signing_secret: Ed25519SecretKey§encryption_public: IdentityEncryptionPublicKey§signing_public: IdentitySigningPublicKey§hash: IdentityHashAuto Trait Implementations§
impl Freeze for IdentityParts
impl RefUnwindSafe for IdentityParts
impl Send for IdentityParts
impl Sync for IdentityParts
impl Unpin for IdentityParts
impl UnsafeUnpin for IdentityParts
impl UnwindSafe for IdentityParts
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