Skip to main content

NetworkReader

Trait NetworkReader 

Source
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§

Source

fn read_remote(file_name: &str) -> Result<Self, ParseError>
where Self: Sized,

Source

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".

Implementors§