#![deny(rust_2018_idioms)]
#[macro_use] extern crate error_chain;
#[macro_use] extern crate log;
error_chain! {
types {
Error, ErrorKind, ResultExt, Result;
}
foreign_links {
Hyper(hyper::Error) #[cfg(feature = "hyper_client")]; Io(std::io::Error);
Json(serde_json::Error);
Utf8(std::string::FromUtf8Error);
}
errors {
UnexpectedError(reason: &'static str) {
description("Dropbox unexpected API error")
display("Dropbox unexpected API error: {}", reason)
}
BadRequest(message: String) {
description("Dropbox returned 400 Bad Request")
display("Dropbox returned 400 Bad Request: {}", message)
}
InvalidToken(message: String) {
description("Dropbox API token is invalid, expired, or revoked")
display("Dropbox API token is invalid, expired, or revoked: {}", message)
}
RateLimited(reason: String) {
description("Dropbox denied the request due to rate-limiting")
display("Dropbox denied the request due to rate-limiting: {}", reason)
}
ServerError(message: String) {
description("Dropbox had an internal server error")
display("Dropbox had an internal server error: {}", message)
}
GeneralHttpError(code: u16, status: String, json: String) {
description("Dropbox API returned failure")
display("Dropbox API returned HTTP {} {} - {}", code, status, json)
}
}
}
#[cfg(feature = "hyper_client")] mod hyper_client;
#[cfg(feature = "hyper_client")] pub use hyper_client::{
HyperClient,
Oauth2AuthorizeUrlBuilder,
Oauth2Type,
};
pub mod client_trait;
pub(crate) mod client_helpers;
mod generated; pub use generated::*;