Type Alias protwrap::tokio::Stream

source ·
pub type Stream = Either<TcpStream, UnixStream>;
Available on crate feature tokio only.

Aliased Type§

enum Stream {
    Left(TcpStream),
    Right(UnixStream),
}

Variants§