pexels_client 0.1.1

Rust wrapper for Pexels API
Documentation
1
2
3
4
5
6
7
8
9
/// Result type for this crate
pub type PexelsResult<T> = Result<T, PexelsError>;

/// Error type for this crate
#[derive(Debug)]
pub enum PexelsError {
    ClientBuildError(String),
    HttpError(String),
}