pub struct SimpleHandshakeClient {
    pub state: ClientHandshakeState,
    /* private fields */
}Fields§
§state: ClientHandshakeStateImplementations§
Trait Implementations§
Source§impl THandshakeClient for SimpleHandshakeClient
 
impl THandshakeClient for SimpleHandshakeClient
fn write_c0(&mut self) -> Result<(), HandshakeError>
fn write_c1(&mut self) -> Result<(), HandshakeError>
fn write_c2(&mut self) -> Result<(), HandshakeError>
fn read_s0(&mut self) -> Result<(), HandshakeError>
fn read_s1(&mut self) -> Result<(), HandshakeError>
fn read_s2(&mut self) -> Result<(), HandshakeError>
Auto Trait Implementations§
impl Freeze for SimpleHandshakeClient
impl !RefUnwindSafe for SimpleHandshakeClient
impl Send for SimpleHandshakeClient
impl Sync for SimpleHandshakeClient
impl Unpin for SimpleHandshakeClient
impl !UnwindSafe for SimpleHandshakeClient
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