pub struct Connected;Expand description
TCP connection established, awaiting authentication.
In this intermediate state:
- TCP connection is open
- TLS negotiation may be in progress or complete
- Login/authentication has not yet completed
This state is mostly internal; users typically go directly from
Disconnected to Ready via Client::connect().
Trait Implementations§
impl ConnectionState for Connected
Auto Trait Implementations§
impl Freeze for Connected
impl RefUnwindSafe for Connected
impl Send for Connected
impl Sync for Connected
impl Unpin for Connected
impl UnwindSafe for Connected
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