//! Utility functions specific to tokio.
pubmodclient;pubmodserver;pubuseclient::Stream as ClientStream;pubuseserver::Stream as ServerStream;/// Unified type covering both [`ServerStream`] and [`ClientStream`] types.
pubtypeStream=tokio_util::either::Either<ServerStream, ClientStream>;// vim: set ft=rust et sw=2 ts=2 sts=2 cinoptions=2 tw=79 :