TheMovieDB 0.1.0

A robust and idiomatic Rust API wrapper for The Movie Database (TMDb) v3 API.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Changes Module

The `changes` module provides functionality to retrieve changes made to movies, TV shows, and people on TMDb.

## Structs

### `Changes`

Represents the TMDb Changes API, allowing you to query for recent changes.

#### Methods

- `new() -> Self`: Creates a new `Changes` instance.
- `movie(options: Option<HashMap<String, String>>) -> Result<Value, Box<dyn std::error::Error>>`: Retrieves a list of movie IDs that have been changed.
- `tv(options: Option<HashMap<String, String>>) -> Result<Value, Box<dyn std::error::Error>>`: Retrieves a list of TV show IDs that have been changed.
- `person(options: Option<HashMap<String, String>>) -> Result<Value, Box<dyn std::error::Error>>`: Retrieves a list of person IDs that have been changed.