pub struct EncryptionRequest {
pub server_id: String,
pub public_key_length: i32,
pub public_key: Vec<u8>,
pub verify_token_length: i32,
pub verify_token: Vec<u8>,
pub should_authenticate: bool,
}
Fields§
§server_id: String
§public_key_length: i32
§public_key: Vec<u8>
§verify_token_length: i32
§verify_token: Vec<u8>
§should_authenticate: bool
Implementations§
Trait Implementations§
Source§impl Debug for EncryptionRequest
impl Debug for EncryptionRequest
Auto Trait Implementations§
impl Freeze for EncryptionRequest
impl RefUnwindSafe for EncryptionRequest
impl Send for EncryptionRequest
impl Sync for EncryptionRequest
impl Unpin for EncryptionRequest
impl UnwindSafe for EncryptionRequest
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