pub struct EncryptionResponse {
pub shared_secret_length: i32,
pub shared_secret: Vec<u8>,
pub verify_token_length: i32,
pub verify_token: Vec<u8>,
}
Fields§
§verify_token_length: i32
§verify_token: Vec<u8>
Implementations§
Trait Implementations§
Source§impl Debug for EncryptionResponse
impl Debug for EncryptionResponse
Auto Trait Implementations§
impl Freeze for EncryptionResponse
impl RefUnwindSafe for EncryptionResponse
impl Send for EncryptionResponse
impl Sync for EncryptionResponse
impl Unpin for EncryptionResponse
impl UnwindSafe for EncryptionResponse
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