pub trait Read {
// Required method
fn read(&mut self, buf: &mut [u8]) -> Result<usize, AxError>;
// Provided methods
fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, AxError> { ... }
fn read_to_string(&mut self, buf: &mut String) -> Result<usize, AxError> { ... }
fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), AxError> { ... }
fn read_full(&mut self, buf: &mut [u8]) -> Result<usize, AxError> { ... }
}
Expand description
The Read
trait allows for reading bytes from a source.
Required Methods§
Provided Methods§
sourcefn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, AxError>
fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, AxError>
Available on crate feature
alloc
only.Read all bytes until EOF in this source, placing them into buf
.
sourcefn read_to_string(&mut self, buf: &mut String) -> Result<usize, AxError>
fn read_to_string(&mut self, buf: &mut String) -> Result<usize, AxError>
Available on crate feature
alloc
only.Read all bytes until EOF in this source, appending them to buf
.