pub struct ClientsideEncryptionRequest {
pub server_id: String,
pub public_key: Vec<u8>,
pub verify_token: Vec<u8>,
pub should_authenticate: bool,
}Fields§
§server_id: String§public_key: Vec<u8>§verify_token: Vec<u8>§should_authenticate: boolImplementations§
Trait Implementations§
Source§impl Clone for ClientsideEncryptionRequest
impl Clone for ClientsideEncryptionRequest
Source§fn clone(&self) -> ClientsideEncryptionRequest
fn clone(&self) -> ClientsideEncryptionRequest
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 moreSource§impl Debug for ClientsideEncryptionRequest
impl Debug for ClientsideEncryptionRequest
Source§impl IntoPacket<ClientsideLoginPacket> for ClientsideEncryptionRequest
impl IntoPacket<ClientsideLoginPacket> for ClientsideEncryptionRequest
fn into_packet(self) -> ClientsideLoginPacket
Source§impl PartialEq for ClientsideEncryptionRequest
impl PartialEq for ClientsideEncryptionRequest
Source§fn eq(&self, other: &ClientsideEncryptionRequest) -> bool
fn eq(&self, other: &ClientsideEncryptionRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ClientsideEncryptionRequest
Auto Trait Implementations§
impl Freeze for ClientsideEncryptionRequest
impl RefUnwindSafe for ClientsideEncryptionRequest
impl Send for ClientsideEncryptionRequest
impl Sync for ClientsideEncryptionRequest
impl Unpin for ClientsideEncryptionRequest
impl UnsafeUnpin for ClientsideEncryptionRequest
impl UnwindSafe for ClientsideEncryptionRequest
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