tmdb-cli 0.1.0

A TMDB client that provides async and sync clients
Documentation
1
2
3
4
5
6
7
8
9
10
use serde::{Serialize, Deserialize};

/// A language that was spoken in a movie or TV show
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct Language {
  /// The ISO 369-1 code for this language
  pub iso_639_1: String,
  /// The name of this language
  pub name: String,
}