pub struct ProxiedConnection { /* private fields */ }Expand description
A connection that routes through a local TCP listener backed by an HTTP CONNECT proxy. Used for backends (MySQL, MSSQL, Oracle) that do not accept a pre-built stream.
When this struct is dropped, the listener is dropped and the forwarder task exits naturally.
Auto Trait Implementations§
impl !RefUnwindSafe for ProxiedConnection
impl !Sync for ProxiedConnection
impl !UnwindSafe for ProxiedConnection
impl Freeze for ProxiedConnection
impl Send for ProxiedConnection
impl Unpin for ProxiedConnection
impl UnsafeUnpin for ProxiedConnection
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