1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
//! Traits [`Future`], [`Stream`], [`AsyncRead`], [`AsyncWrite`], [`AsyncBufRead`], //! [`AsyncSeek`], and their extensions. //! //! # Examples //! //! ``` //! use futures_lite::prelude::*; //! ``` #[doc(no_inline)] pub use crate::{ future::{Future, FutureExt as _}, stream::{Stream, StreamExt as _}, }; #[cfg(feature = "std")] #[doc(no_inline)] pub use crate::{ io::{AsyncBufRead, AsyncBufReadExt as _}, io::{AsyncRead, AsyncReadExt as _}, io::{AsyncSeek, AsyncSeekExt as _}, io::{AsyncWrite, AsyncWriteExt as _}, };