pub trait NetworkReader: BoardParser {
// Provided methods
fn read_remote(file_name: &str) -> Result<Self, ParseError>
where Self: Sized { ... }
fn http_content(url: &str) -> Result<String, ParseError> { ... }
}Provided Methods§
fn read_remote(file_name: &str) -> Result<Self, ParseError>where
Self: Sized,
fn http_content(url: &str) -> Result<String, ParseError>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".