Trait HttpClient

Source
pub trait HttpClient {
    // Required method
    fn get(&self, url: &str) -> Result<String, ProgramError>;
}

Required Methods§

Source

fn get(&self, url: &str) -> Result<String, ProgramError>

Implementors§