[][src]Struct tmdb_cli::libs::handlers::movies::Movies

pub struct Movies { /* fields omitted */ }

Handlers for Movie focused routes

Implementations

impl Movies[src]

pub fn new(host: &str, token: &str) -> Self[src]

Create a new Movies handler

Arguments

  • host - The host/url tmdb is at
  • token - The token to use when authenticating

pub fn search<T: Into<String>>(&self, query: T) -> MovieSearch<'_>[src]

Search for a movie

Arguments

  • query - The query to use when searching

Examples

pub use tmdb_cli::Client;

// build a client
let tmdb = Client::from_env();
// serach for a movie
let search = tmdb.movies.search("13 Hours")
  .year(2016)
  .exec()
  .await;

pub async fn details(&self, id: i64) -> Result<MovieDetails, Error>[src]

Get details on a movie by id

Arguments

  • id - The ID of the movie to retrieve details on

Examples

pub use tmdb_cli::Client;

// build a client
let tmdb = Client::from_env();
// serach for a movie
let search = tmdb.movies.details(157336).await;

Trait Implementations

impl Clone for Movies[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.