Struct github::client::Client  
            [-] [+]
        [src]
pub struct Client {
    pub user_agent: String,
    pub base_url: String,
    pub upload_url: String,
}The Client struct represent the user agent and base URLs.
Functions in this library will never mutate a Client object
and for th sake of parallel processing, you should try to keep it immutable.