pub struct ServerStep2Result {
pub server_private_b: Vec<u8>,
pub server_public_b: Vec<u8>,
}
Fields§
§server_private_b: Vec<u8>
The server’s private ephemeral key
This must be kept secret.
server_public_b: Vec<u8>
The server’s public ephemeral key
This must be sent to the client.
Trait Implementations§
Source§impl Clone for ServerStep2Result
impl Clone for ServerStep2Result
Source§fn clone(&self) -> ServerStep2Result
fn clone(&self) -> ServerStep2Result
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 ServerStep2Result
impl Debug for ServerStep2Result
Auto Trait Implementations§
impl Freeze for ServerStep2Result
impl RefUnwindSafe for ServerStep2Result
impl Send for ServerStep2Result
impl Sync for ServerStep2Result
impl Unpin for ServerStep2Result
impl UnwindSafe for ServerStep2Result
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