pub trait RequestInfo {
    const BASE_URL: &'static str;
    const API_KEY_STR: Option<&'static str> = _;
}

Required Associated Constants§

source

const BASE_URL: &'static str

The base URL for the requests.

Provided Associated Constants§

source

const API_KEY_STR: Option<&'static str> = _

The API key as string used for authentication.

Implementors§