[][src]Struct serde_mangadex::manga_norm::GroupsMap

#[repr(transparent)]
pub struct GroupsMap<'a>(_);

(de)serializable unordered map of groups

Methods

impl<'a> GroupsMap<'a>[src]

pub fn len(&self) -> u32[src]

pub fn is_empty(&self) -> bool[src]

Trait Implementations

impl<'a> Debug for GroupsMap<'a>[src]

impl<'a> Default for GroupsMap<'a>[src]

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

fn deserialize<D: Deserializer<'de>>(d: D) -> Result<Self, D::Error>[src]

Deserializes from a map/object

impl<'a> From<GroupsMap<'a>> for Groups[src]

impl<'a> IntoIterator for GroupsMap<'a>[src]

type Item = (String, (&'a str, Option<&'a str>))

The type of the elements being iterated over.

type IntoIter = IntoIter<Self::Item>

Which kind of iterator are we turning this into?

impl<'a> Serialize for GroupsMap<'a>[src]

fn serialize<S: Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error>[src]

Serializes as a map/object

Auto Trait Implementations

impl<'a> RefUnwindSafe for GroupsMap<'a>

impl<'a> Send for GroupsMap<'a>

impl<'a> Sync for GroupsMap<'a>

impl<'a> Unpin for GroupsMap<'a>

impl<'a> UnwindSafe for GroupsMap<'a>

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<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

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.