pub struct ClientStep1Result {
pub client_private_a: Vec<u8>,
pub client_public_a: Vec<u8>,
}
Expand description
Result of step1
Step 1 generates the asymetric client ephemeral key.
Fields§
§client_private_a: Vec<u8>
The private key of the client’s ephemeral key
client_public_a: Vec<u8>
The public key of the client’s ephemeral key
Trait Implementations§
Source§impl Clone for ClientStep1Result
impl Clone for ClientStep1Result
Source§fn clone(&self) -> ClientStep1Result
fn clone(&self) -> ClientStep1Result
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 ClientStep1Result
impl Debug for ClientStep1Result
Source§impl<'de> Deserialize<'de> for ClientStep1Result
impl<'de> Deserialize<'de> for ClientStep1Result
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ClientStep1Result
impl RefUnwindSafe for ClientStep1Result
impl Send for ClientStep1Result
impl Sync for ClientStep1Result
impl Unpin for ClientStep1Result
impl UnwindSafe for ClientStep1Result
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