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 genre for media
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct Genre {
  /// The id for this genre
  pub id: i64,
  /// The name of this genre
  pub name: String,
}