Enum mangadex_api::types::tag_search_mode::TagSearchMode[][src]

#[repr(u8)]pub enum TagSearchMode {
    All,
    Any,
}

Variants

All

All (AND).

Any

Any (OR).

Trait Implementations

impl Clone for TagSearchMode[src]

impl Copy for TagSearchMode[src]

impl Debug for TagSearchMode[src]

impl Default for TagSearchMode[src]

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

impl Display for TagSearchMode[src]

impl From<&'_ str> for TagSearchMode[src]

impl From<u16> for TagSearchMode[src]

impl From<u32> for TagSearchMode[src]

impl From<u64> for TagSearchMode[src]

impl From<u8> for TagSearchMode[src]

impl FromStr for TagSearchMode[src]

type Err = ParseError

The associated error which can be returned from parsing.

impl Hash for TagSearchMode[src]

impl PartialEq<TagSearchMode> for TagSearchMode[src]

impl PartialOrd<TagSearchMode> for TagSearchMode[src]

impl Serialize for TagSearchMode[src]

impl StructuralPartialEq for TagSearchMode[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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> 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.