pub struct InitDiffieHandshake {
pub encrypted_prime: String,
pub encrypted_generator: String,
}
Fields§
§encrypted_prime: String
§encrypted_generator: String
Trait Implementations§
Source§impl BaseParser for InitDiffieHandshake
impl BaseParser for InitDiffieHandshake
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 InitDiffieHandshake
impl Clone for InitDiffieHandshake
Source§fn clone(&self) -> InitDiffieHandshake
fn clone(&self) -> InitDiffieHandshake
Returns a duplicate 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 InitDiffieHandshake
impl Debug for InitDiffieHandshake
Source§impl Default for InitDiffieHandshake
impl Default for InitDiffieHandshake
Source§fn default() -> InitDiffieHandshake
fn default() -> InitDiffieHandshake
Returns the “default value” for a type. Read more
Source§impl PacketVariable for InitDiffieHandshake
impl PacketVariable for InitDiffieHandshake
Source§impl PartialEq for InitDiffieHandshake
impl PartialEq for InitDiffieHandshake
impl StructuralPartialEq for InitDiffieHandshake
Auto Trait Implementations§
impl Freeze for InitDiffieHandshake
impl RefUnwindSafe for InitDiffieHandshake
impl Send for InitDiffieHandshake
impl Sync for InitDiffieHandshake
impl Unpin for InitDiffieHandshake
impl UnwindSafe for InitDiffieHandshake
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