Trait indieweb::IConfiguration[][src]

pub trait IConfiguration {
    fn request(&self, reason: Option<String>) -> Client { ... }
fn user_agent(&self) -> &str { ... } }
Expand description

Represents the base client interface for IndieWeb activity.

Provided methods

fn request(&self, reason: Option<String>) -> Client[src]

Define the base request.

fn user_agent(&self) -> &str[src]

The agent string to use when making out-going requests.

Implementors