Expand description
This crate provides AsyncPeek
, a trait to read data asynchronously without removing it
from the queue (like when using the blocking methods std::net::TcpStream::peek()
and
std::net::UdpSocket::peek()
).
Structs§
Traits§
- Async
Peek - Read data asynchronously without removing it from the queue.
- Async
Peek Ext - An extension trait which adds utility methods to
AsyncPeek
types.