Trait Read
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> { ... }
}Expand description
The Read trait allows for reading bytes from a source.
Required Methods§
Provided Methods§
fn 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>
Read all bytes until EOF in this source, placing them into buf.
fn read_to_string(&mut self, buf: &mut String) -> Result<usize, AxError>
fn read_to_string(&mut self, buf: &mut String) -> Result<usize, AxError>
Read all bytes until EOF in this source, appending them to buf.
fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), AxError>
fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), AxError>
Read the exact number of bytes required to fill buf.