cameo 0.1.1

Unified movie/TV show database SDK for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/// Discover query builders.
pub mod builders;
/// High-level TMDB client.
pub mod client;
/// TMDB client configuration.
pub mod config;
/// TMDB-specific error types.
pub mod error;
/// Image URL construction helpers.
pub mod image_url;

pub use client::TmdbClient;
pub use config::TmdbConfig;
pub use error::TmdbError;
pub use image_url::{BackdropSize, ImageUrl, LogoSize, PosterSize, ProfileSize, StillSize};