1//! The Rust primitive `()` type, sometimes called "unit" or "nil". 2//! 3//! This module provides types and implementations for working 4//! asynchronously with values of type `()`. 5 6mod from_stream; 7mod extend;