#![deny(missing_docs)]externcrate serde_json;externcrate hyper;externcrate std;/// Possible errors returned from metadata retrieval.
#[derive(Debug)]pubenumMetadataRetrievalError{/// Metadata was retrieved from AWS, but could not be parsed.
JsonParseError(serde_json::Error),/// Error opening HTTP connection and sending request.
HttpRequestError(hyper::Error),/// Error reading metadata in HTTP response.
IoError(std::io::Error),}