Enum mangadex_api::web_scrape::responses::login_ajax::LoginAjaxResponseType[][src]

pub enum LoginAjaxResponseType {
    Ok,
    TwoFactorAuthenticationRequired,
    IncorrectUsernameOrPassword,
    IncorrectTwoFactorCodeLength,
    FailedTwoFactorVerification,
    Error(String),
}

Variants

Ok
TwoFactorAuthenticationRequired
IncorrectUsernameOrPassword
IncorrectTwoFactorCodeLength
FailedTwoFactorVerification
Error(String)

Implementations

impl LoginAjaxResponseType[src]

pub fn from_response_body(s: &str) -> Self[src]

Translate the response body from MangaDex’s login AJAX endpoint to the internal response representation.

The response content type is “text/html”.

Trait Implementations

impl Debug for LoginAjaxResponseType[src]

impl PartialEq<LoginAjaxResponseType> for LoginAjaxResponseType[src]

impl StructuralPartialEq for LoginAjaxResponseType[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, 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.