pub trait Read {
// Required method
fn read(&mut self, buf: &mut [u8]) -> Result<usize>;
// Provided methods
fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize> { ... }
fn is_read_vectored(&self) -> bool { ... }
fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize> { ... }
fn read_to_string(&mut self, buf: &mut String) -> Result<usize> { ... }
fn read_exact(&mut self, buf: &mut [u8]) -> Result<()> { ... }
fn read_buf(&mut self, buf: BorrowedCursor<'_>) -> Result<()> { ... }
fn read_buf_exact(&mut self, cursor: BorrowedCursor<'_>) -> Result<()> { ... }
fn by_ref(&mut self) -> &mut Self
where Self: Sized { ... }
fn bytes(self) -> Bytes<Self> â
where Self: Sized { ... }
fn chain<R: Read>(self, next: R) -> Chain<Self, R> â
where Self: Sized { ... }
fn take(self, limit: u64) -> Take<Self> â
where Self: Sized { ... }
}
Expand description
The Read
trait allows for reading bytes from a source.
Implementors of the Read
trait are called âreadersâ.
Readers are defined by one required method, read()
. Each call to read()
will attempt to pull bytes from this source into a provided buffer. A number of other methods are implemented in terms of read()
, giving implementors a number of ways to read bytes while only needing to implement a single method.
Readers are intended to be composable with one another. Many implementors throughout std::io
take and provide types which implement the Read
trait.
Please note that each call to read()
may involve a system call, and therefore, using something that implements BufRead
, such as BufReader
, will be more efficient.
Repeated calls to the reader use the same cursor, so for example calling read_to_end
twice on a File
will only return the fileâs contents once. Itâs recommended to first call rewind()
in that case.
File
s implement Read
:
use std::io;
use std::io::prelude::*;
use std::fs::File;
fn main() -> io::Result<()> {
let mut f = File::open("foo.txt")?;
let mut buffer = [0; 10];
f.read(&mut buffer)?;
let mut buffer = Vec::new();
f.read_to_end(&mut buffer)?;
let mut buffer = String::new();
f.read_to_string(&mut buffer)?;
Ok(())
}
Read from &str
because &[u8]
implements Read
:
use std::io::prelude::*;
fn main() -> io::Result<()> {
let mut b = "This string will be read".as_bytes();
let mut buffer = [0; 10];
b.read(&mut buffer)?;
Ok(())
}
1.0.0 · Source
Pull some bytes from this source into the specified buffer, returning how many bytes were read.
This function does not provide any guarantees about whether it blocks waiting for data, but if an object needs to block for a read and cannot, it will typically signal this via an Err
return value.
If the return value of this method is Ok(n)
, then implementations must guarantee that 0 <= n <= buf.len()
. A nonzero n
value indicates that the buffer buf
has been filled in with n
bytes of data from this source. If n
is 0
, then it can indicate one of two scenarios:
recv
syscall for a TcpStream
, where returning zero indicates the connection was shut down correctly. While for File
, it is possible to reach the end of file and get zero as result, but if more data is appended to the file, future calls to read
will return more data.It is not an error if the returned value n
is smaller than the buffer size, even when the reader is not at the end of the stream yet. This may happen for example because fewer bytes are actually available right now (e. g. being close to end-of-file) or because read() was interrupted by a signal.
As this trait is safe to implement, callers in unsafe code cannot rely on n <= buf.len()
for safety. Extra care needs to be taken when unsafe
functions are used to access the read bytes. Callers have to ensure that no unchecked out-of-bounds accesses are possible even if n > buf.len()
.
Implementations of this method can make no assumptions about the contents of buf
when this function is called. It is recommended that implementations only write data to buf
instead of reading its contents.
Correspondingly, however, callers of this method in unsafe code must not assume any guarantees about how the implementation uses buf
. The trait is safe to implement, so it is possible that the code thatâs supposed to write to the buffer might also read from it. It is your responsibility to make sure that buf
is initialized before calling read
. Calling read
with an uninitialized buf
(of the kind one obtains via MaybeUninit<T>
) is not safe, and can lead to undefined behavior.
If this function encounters any form of I/O or other error, an error variant will be returned. If an error is returned then it must be guaranteed that no bytes were read.
An error of the ErrorKind::Interrupted
kind is non-fatal and the read operation should be retried if there is nothing else to do.
File
s implement Read
:
use std::io;
use std::io::prelude::*;
use std::fs::File;
fn main() -> io::Result<()> {
let mut f = File::open("foo.txt")?;
let mut buffer = [0; 10];
let n = f.read(&mut buffer[..])?;
println!("The bytes: {:?}", &buffer[..n]);
Ok(())
}
1.36.0 · Source
Like read
, except that it reads into a slice of buffers.
Data is copied to fill each buffer in order, with the final buffer written to possibly being only partially filled. This method must behave equivalently to a single call to read
with concatenated buffers.
The default implementation calls read
with either the first nonempty buffer provided, or an empty one if none exists.
can_vector
#69941)
Determines if this Read
er has an efficient read_vectored
implementation.
If a Read
er does not override the default read_vectored
implementation, code using it may want to avoid the method all together and coalesce writes into a single buffer for higher performance.
The default implementation returns false
.
Reads all bytes until EOF in this source, placing them into buf
.
All bytes read from this source will be appended to the specified buffer buf
. This function will continuously call read()
to append more data to buf
until read()
returns either Ok(0)
or an error of non-ErrorKind::Interrupted
kind.
If successful, this function will return the total number of bytes read.
§ErrorsIf this function encounters an error of the kind ErrorKind::Interrupted
then the error is ignored and the operation will continue.
If any other read error is encountered then this function immediately returns. Any bytes which have already been read will be appended to buf
.
File
s implement Read
:
use std::io;
use std::io::prelude::*;
use std::fs::File;
fn main() -> io::Result<()> {
let mut f = File::open("foo.txt")?;
let mut buffer = Vec::new();
f.read_to_end(&mut buffer)?;
Ok(())
}
(See also the std::fs::read
convenience function for reading from a file.)
read_to_end
When implementing the io::Read
trait, it is recommended to allocate memory using Vec::try_reserve
. However, this behavior is not guaranteed by all implementations, and read_to_end
may not handle out-of-memory situations gracefully.
fn read_to_end(&mut self, dest_vec: &mut Vec<u8>) -> io::Result<usize> {
let initial_vec_len = dest_vec.len();
loop {
let src_buf = self.example_datasource.fill_buf()?;
if src_buf.is_empty() {
break;
}
dest_vec.try_reserve(src_buf.len())?;
dest_vec.extend_from_slice(src_buf);
let read = src_buf.len();
self.example_datasource.consume(read);
}
Ok(dest_vec.len() - initial_vec_len)
}
§Usage Notes
read_to_end
attempts to read a source until EOF, but many sources are continuous streams that do not send EOF. In these cases, read_to_end
will block indefinitely. Standard input is one such stream which may be finite if piped, but is typically continuous. For example, cat file | my-rust-program
will correctly terminate with an EOF
upon closure of cat. Reading user input or running programs that remain open indefinitely will never terminate the stream with EOF
(e.g. yes | my-rust-program
).
Using .lines()
with a BufReader
or using read
can provide a better solution
Reads all bytes until EOF in this source, appending them to buf
.
If successful, this function returns the number of bytes which were read and appended to buf
.
If the data in this stream is not valid UTF-8 then an error is returned and buf
is unchanged.
See read_to_end
for other error semantics.
File
s implement Read
:
use std::io;
use std::io::prelude::*;
use std::fs::File;
fn main() -> io::Result<()> {
let mut f = File::open("foo.txt")?;
let mut buffer = String::new();
f.read_to_string(&mut buffer)?;
Ok(())
}
(See also the std::fs::read_to_string
convenience function for reading from a file.)
read_to_string
attempts to read a source until EOF, but many sources are continuous streams that do not send EOF. In these cases, read_to_string
will block indefinitely. Standard input is one such stream which may be finite if piped, but is typically continuous. For example, cat file | my-rust-program
will correctly terminate with an EOF
upon closure of cat. Reading user input or running programs that remain open indefinitely will never terminate the stream with EOF
(e.g. yes | my-rust-program
).
Using .lines()
with a BufReader
or using read
can provide a better solution
Reads the exact number of bytes required to fill buf
.
This function reads as many bytes as necessary to completely fill the specified buffer buf
.
Implementations of this method can make no assumptions about the contents of buf
when this function is called. It is recommended that implementations only write data to buf
instead of reading its contents. The documentation on read
has a more detailed explanation of this subject.
If this function encounters an error of the kind ErrorKind::Interrupted
then the error is ignored and the operation will continue.
If this function encounters an âend of fileâ before completely filling the buffer, it returns an error of the kind ErrorKind::UnexpectedEof
. The contents of buf
are unspecified in this case.
If any other read error is encountered then this function immediately returns. The contents of buf
are unspecified in this case.
If this function returns an error, it is unspecified how many bytes it has read, but it will never read more than would be necessary to completely fill the buffer.
§ExamplesFile
s implement Read
:
use std::io;
use std::io::prelude::*;
use std::fs::File;
fn main() -> io::Result<()> {
let mut f = File::open("foo.txt")?;
let mut buffer = [0; 10];
f.read_exact(&mut buffer)?;
Ok(())
}
Source ð¬This is a nightly-only experimental API. (read_buf
#78485)
Pull some bytes from this source into the specified buffer.
This is equivalent to the read
method, except that it is passed a BorrowedCursor
rather than [u8]
to allow use with uninitialized buffers. The new data will be appended to any existing contents of buf
.
The default implementation delegates to read
.
This method makes it possible to return both data and an error but it is advised against.
Source ð¬This is a nightly-only experimental API. (read_buf
#78485)
Reads the exact number of bytes required to fill cursor
.
This is similar to the read_exact
method, except that it is passed a BorrowedCursor
rather than [u8]
to allow use with uninitialized buffers.
If this function encounters an error of the kind ErrorKind::Interrupted
then the error is ignored and the operation will continue.
If this function encounters an âend of fileâ before completely filling the buffer, it returns an error of the kind ErrorKind::UnexpectedEof
.
If any other read error is encountered then this function immediately returns.
If this function returns an error, all bytes read will be appended to cursor
.
Creates a âby referenceâ adaptor for this instance of Read
.
The returned adapter also implements Read
and will simply borrow this current reader.
File
s implement Read
:
use std::io;
use std::io::Read;
use std::fs::File;
fn main() -> io::Result<()> {
let mut f = File::open("foo.txt")?;
let mut buffer = Vec::new();
let mut other_buffer = Vec::new();
{
let reference = f.by_ref();
reference.take(5).read_to_end(&mut buffer)?;
} f.read_to_end(&mut other_buffer)?;
Ok(())
}
1.0.0 · Source
Transforms this Read
instance to an Iterator
over its bytes.
The returned type implements Iterator
where the Item
is Result<u8, io::Error>
. The yielded item is Ok
if a byte was successfully read and Err
otherwise. EOF is mapped to returning None
from this iterator.
The default implementation calls read
for each byte, which can be very inefficient for data thatâs not in memory, such as File
. Consider using a BufReader
in such cases.
File
s implement Read
:
use std::io;
use std::io::prelude::*;
use std::io::BufReader;
use std::fs::File;
fn main() -> io::Result<()> {
let f = BufReader::new(File::open("foo.txt")?);
for byte in f.bytes() {
println!("{}", byte?);
}
Ok(())
}
1.0.0 · Source
Creates an adapter which will chain this stream with another.
The returned Read
instance will first read all bytes from this object until EOF is encountered. Afterwards the output is equivalent to the output of next
.
File
s implement Read
:
use std::io;
use std::io::prelude::*;
use std::fs::File;
fn main() -> io::Result<()> {
let f1 = File::open("foo.txt")?;
let f2 = File::open("bar.txt")?;
let mut handle = f1.chain(f2);
let mut buffer = String::new();
handle.read_to_string(&mut buffer)?;
Ok(())
}
1.0.0 · Source
Creates an adapter which will read at most limit
bytes from it.
This function returns a new instance of Read
which will read at most limit
bytes, after which it will always return EOF (Ok(0)
). Any read errors will not count towards the number of bytes read and future calls to read()
may succeed.
File
s implement Read
:
use std::io;
use std::io::prelude::*;
use std::fs::File;
fn main() -> io::Result<()> {
let f = File::open("foo.txt")?;
let mut buffer = [0; 5];
let mut handle = f.take(5);
handle.read(&mut buffer)?;
Ok(())
}
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4