See the full API reference here
Via cargo
, add this to your project's Cargo.toml
:
[dependencies]
spacex-api-wrapper = "0.2.0"
extern crate spacex_api_wrapper;
use spacex_api_wrapper::SpaceXAPI;
let spacex_api = SpaceXAPI::default();
spacex_api.get_company_info()
.wait()
.map(|mut b| {
println!("{:?}", b.text());
});