enum Inner {
Initial,
ClientHello {
client_random: [u8; 32],
},
BothHello(HelloMsgs),
ServerKey {
hello: HelloMsgs,
curve_name: u16,
server_pk: Vec<u8>,
},
BothKey {
hello: HelloMsgs,
keys: BothKey,
},
}
Variants§
Auto Trait Implementations§
impl Freeze for Inner
impl RefUnwindSafe for Inner
impl Send for Inner
impl Sync for Inner
impl Unpin for Inner
impl UnwindSafe for Inner
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