[][src]Enum tvdb::TvdbError

pub enum TvdbError {
    InternalError {
        reason: String,
    },
    SeriesNotFound,
    CommunicationError {
        reason: String,
    },
    DataError {
        reason: String,
    },
    Cancelled,
}

Errors in contacting TheTVDB

Variants

InternalError

An internal error within this library

Fields of InternalError

reason: String
SeriesNotFound

When looking up a nonexistent series

CommunicationError

Error contacting TheTVDB.com (e.g HTTP error)

Fields of CommunicationError

reason: String
DataError

Malformed data in response from TheTVDB.com

Fields of DataError

reason: String
Cancelled

User cancelled in some interactive fashion

Trait Implementations

impl Debug for TvdbError[src]

impl Display for TvdbError[src]

Formatting for error

impl Error for TvdbError[src]

impl From<Error> for TvdbError[src]

impl From<ParseIntError> for TvdbError[src]

Convert from parse error (e.g for dateify() function)

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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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.