pub struct CompleteDiffieHandshake {
pub encrypted_public_key: String,
pub server_client_encryption: Option<bool>,
}
Fields§
§encrypted_public_key: String
§server_client_encryption: Option<bool>
Trait Implementations§
source§impl BaseParser for CompleteDiffieHandshake
impl BaseParser for CompleteDiffieHandshake
fn parse(packet: &mut HPacket) -> Self
fn append_to_packet(&self, packet: &mut HPacket)
fn get_direction() -> HDirection
fn get_packet_name() -> String
source§impl Clone for CompleteDiffieHandshake
impl Clone for CompleteDiffieHandshake
source§fn clone(&self) -> CompleteDiffieHandshake
fn clone(&self) -> CompleteDiffieHandshake
Returns a copy of the value. Read more
1.0.0 · 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 CompleteDiffieHandshake
impl Debug for CompleteDiffieHandshake
source§impl Default for CompleteDiffieHandshake
impl Default for CompleteDiffieHandshake
source§fn default() -> CompleteDiffieHandshake
fn default() -> CompleteDiffieHandshake
Returns the “default value” for a type. Read more
source§impl PartialEq<CompleteDiffieHandshake> for CompleteDiffieHandshake
impl PartialEq<CompleteDiffieHandshake> for CompleteDiffieHandshake
source§fn eq(&self, other: &CompleteDiffieHandshake) -> bool
fn eq(&self, other: &CompleteDiffieHandshake) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CompleteDiffieHandshake
Auto Trait Implementations§
impl RefUnwindSafe for CompleteDiffieHandshake
impl Send for CompleteDiffieHandshake
impl Sync for CompleteDiffieHandshake
impl Unpin for CompleteDiffieHandshake
impl UnwindSafe for CompleteDiffieHandshake
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