Skip to main content

Stream

Type Alias Stream 

Source
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),
}

Variants§

§

Left(Stream)

§

Right(Stream)