pub struct EncryptResult {
pub secret_key: [u8; 16],
pub encrypted_public_key: Vec<u8>,
pub encrypted_challenge: Vec<u8>,
}
Fields§
§secret_key: [u8; 16]
§encrypted_public_key: Vec<u8>
§encrypted_challenge: Vec<u8>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EncryptResult
impl RefUnwindSafe for EncryptResult
impl Send for EncryptResult
impl Sync for EncryptResult
impl Unpin for EncryptResult
impl UnwindSafe for EncryptResult
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