pub trait DatabaseBufReader{
// Required method
fn get_string(&mut self, addr: u32) -> Result<String>;
}Expand description
Extension trait to Seek + BufRead for reading strings
Required Methods§
Sourcefn get_string(&mut self, addr: u32) -> Result<String>
fn get_string(&mut self, addr: u32) -> Result<String>
Read a string from the file
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".