Module wrappers

Source
Expand description

Wrappers for Tokio types that implement Stream.

Modulesยง

errors
Error types for the wrappers.
interval ๐Ÿ”’
mpsc_bounded ๐Ÿ”’
mpsc_unbounded ๐Ÿ”’
tcp_listener ๐Ÿ”’
unix_listener ๐Ÿ”’

Structsยง

IntervalStream
A wrapper around Interval that implements Stream.
ReceiverStream
A wrapper around tokio::sync::mpsc::Receiver that implements Stream.
TcpListenerStream
A wrapper around TcpListener that implements Stream.
UnboundedReceiverStream
A wrapper around tokio::sync::mpsc::UnboundedReceiver that implements Stream.
UnixListenerStream
A wrapper around UnixListener that implements Stream.