pub enum TcpTryConnect {
Connected(TcpStream),
InProgress(TcpStreamInProgress),
}
Variants§
Connected(TcpStream)
InProgress(TcpStreamInProgress)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TcpTryConnect
impl RefUnwindSafe for TcpTryConnect
impl Send for TcpTryConnect
impl Sync for TcpTryConnect
impl Unpin for TcpTryConnect
impl UnwindSafe for TcpTryConnect
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