Lines Matching refs:Read
61 use std::io::Read;
81 /// // Read 4 bytes. `buf` is filled.
87 /// // Read next 1 bytes. Part of `buf` is filled.
138 /// // Read 4 bytes. `buf` is filled.
144 /// // Read next 1 bytes. Part of `buf` is filled.
164 impl<T: Read> Body for T {
201 /// // Read 4 bytes. `buf` is filled.
207 /// // Read next 1 bytes. Part of `buf` is filled.
271 /// // Read 4 bytes. `buf` is filled.
277 /// // Read next 1 bytes. Part of `buf` is filled.
442 use std::io::Read;
472 pub struct FromReader<T: Read> {
476 impl<T: Read> FromReader<T> {
482 impl<T: Read> Deref for FromReader<T> {
490 impl<T: Read> DerefMut for FromReader<T> {