[][src]Enum serde_mangadex::manga_api::Over18

#[repr(u8)]
pub enum Over18 {
    No,
    Yes,
}

Whether it's for over 18 or not (hentai).

Variants

No

Not over 18 (boolean false).

Yes

Over 18 (boolean true).

Trait Implementations

impl Clone for Over18[src]

impl Copy for Over18[src]

impl Debug for Over18[src]

impl Default for Over18[src]

impl<'de> Deserialize<'de> for Over18[src]

impl Eq for Over18[src]

impl From<Over18> for bool[src]

impl From<bool> for Over18[src]

impl Ord for Over18[src]

impl PartialEq<Over18> for Over18[src]

impl PartialOrd<Over18> for Over18[src]

impl StructuralEq for Over18[src]

impl StructuralPartialEq for Over18[src]

Auto Trait Implementations

impl RefUnwindSafe for Over18

impl Send for Over18

impl Sync for Over18

impl Unpin for Over18

impl UnwindSafe for Over18

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> 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.