pexels_client 0.1.1

Rust wrapper for Pexels API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod color;
mod errors;
mod locale;
mod media_type;
mod orientation;
mod pexels_request_stats;
mod size;
mod user;

pub use self::color::Color;
pub use self::errors::{PexelsError, PexelsResult};
pub use self::locale::Locale;
pub use self::media_type::{CollectionMediaType, MediaType};
pub use self::orientation::Orientation;
pub(crate) use self::pexels_request_stats::get_request_stats;
pub use self::pexels_request_stats::PexelsRequestStatistics;
pub use self::size::Size;
pub use self::user::User;