Merge pull request #95 from rap2hpoutre/patch-1

Add tiny example to Client
This commit is contained in:
Sean McArthur
2017-05-16 11:43:26 -05:00
committed by GitHub

View File

@@ -28,6 +28,24 @@ static DEFAULT_USER_AGENT: &'static str = concat!(env!("CARGO_PKG_NAME"), "/", e
///
/// The `Client` holds a connection pool internally, so it is advised that
/// you create one and reuse it.
///
/// # Examples
///
/// ```no_run
/// # extern crate reqwest;
/// #
/// # use reqwest::{Error, Client};
/// #
/// # fn run() -> Result<(), Error> {
/// let client = Client::new()?;
/// client.get("http://httpbin.org/").send()?;
/// # Ok(())
/// # }
///
/// # fn main() {
/// # run().unwrap();
/// # }
/// ```
#[derive(Clone)]
pub struct Client {
inner: Arc<ClientRef>,