pub enum ProxiedStream {
Plain(TcpStream),
PlainOverTlsProxy(Box<TlsStream<TcpStream>>),
Tls(Box<TlsStream<TcpStream>>),
TlsOverTlsProxy(Box<TlsStream<TlsStream<TcpStream>>>),
}Expand description
Stream produced by tunnel_via_proxy when the upstream is ws://
(no upstream TLS, but the proxy hop itself may have been TLS-protected).
The TLS-bearing variants are boxed because [tokio_rustls::client::TlsStream]
is large enough that a flat enum trips clippy::large_enum_variant. Boxing
keeps the discriminant cheap to move while leaving the rare TLS path on the
heap.
Variants§
Plain(TcpStream)
Plain TCP after a plain proxy hop.
PlainOverTlsProxy(Box<TlsStream<TcpStream>>)
Plain TCP after a TLS proxy hop.
Tls(Box<TlsStream<TcpStream>>)
Upstream TLS over a plain proxy hop.
TlsOverTlsProxy(Box<TlsStream<TlsStream<TcpStream>>>)
Upstream TLS over a TLS proxy hop.
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for ProxiedStream
impl !RefUnwindSafe for ProxiedStream
impl Send for ProxiedStream
impl Sync for ProxiedStream
impl Unpin for ProxiedStream
impl UnsafeUnpin for ProxiedStream
impl !UnwindSafe for ProxiedStream
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more