[][src]Enum github_v3::GHError

pub enum GHError {
    Timeout,
    Request(String),
    Response {
        status: StatusCode,
        message: Option<String>,
    },
    Internal,
}

Variants

Timeout
Request(String)
Response

Fields of Response

status: StatusCodemessage: Option<String>
Internal

Trait Implementations

impl Debug for GHError[src]

impl Display for GHError[src]

impl Error for GHError[src]

impl From<Error> for GHError[src]

Auto Trait Implementations

impl RefUnwindSafe for GHError

impl Send for GHError

impl Sync for GHError

impl Unpin for GHError

impl UnwindSafe for GHError

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.