pub trait SourceReader {
// Required method
fn read(&mut self, sheet: &str, table: &SourceTable) -> Result<SourceData>;
}Required Methods§
fn read(&mut self, sheet: &str, table: &SourceTable) -> Result<SourceData>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".