Struct torznab::Client[][src]

pub struct Client { /* fields omitted */ }

Implementations

impl Client[src]

pub fn new(
    base_url: impl ToString,
    apikey: impl ToString
) -> Result<Self, Error>
[src]

pub async fn tvsearch(
    &self,
    q: Option<&str>,
    rid: Option<u32>,
    tvdbid: Option<u32>,
    tvmazeid: Option<u32>,
    season: Option<u16>,
    ep: Option<u16>
) -> Result<Vec<Result<Torrent, Error>>, Error>
[src]

pub async fn moviesearch(
    &self,
    q: Option<&str>,
    imdbid: Option<u64>
) -> Result<Vec<Result<Torrent, Error>>, Error>
[src]

Trait Implementations

impl Clone for Client[src]

Auto Trait Implementations

impl !RefUnwindSafe for Client

impl Send for Client

impl Sync for Client

impl Unpin for Client

impl !UnwindSafe for Client

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.