pub type Stream = Either<ServerStream, ClientStream>;Available on crate feature
tokio only.Expand description
Unified type covering both ServerStream and ClientStream types.
Aliased Type§
pub enum Stream {
Left(Stream),
Right(Stream),
}