pub enum RelatedAttributes {
Manga(MangaAttributes),
Chapter(ChapterAttributes),
CoverArt(CoverAttributes),
Author(AuthorAttributes),
ScanlationGroup(ScanlationGroupAttributes),
Tag(TagAttributes),
User(UserAttributes),
CustomList(CustomListAttributes),
}
Variants§
Manga(MangaAttributes)
Manga resource.
Chapter(ChapterAttributes)
Chapter resource.
CoverArt(CoverAttributes)
A Cover Art for a manga.
On manga resources, only one cover art resource relation is returned, marking the primary cover if there are more than one. By default, this will be the latest volume’s cover art. To see all the covers for a given manga, use the cover search endpoint.
Author(AuthorAttributes)
Author resource.
ScanlationGroup(ScanlationGroupAttributes)
ScanlationGroup resource.
Tag(TagAttributes)
Tag resource.
User(UserAttributes)
User resource.
CustomList(CustomListAttributes)
CustomList resource.
Trait Implementations§
Source§impl Clone for RelatedAttributes
impl Clone for RelatedAttributes
Source§fn clone(&self) -> RelatedAttributes
fn clone(&self) -> RelatedAttributes
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RelatedAttributes
impl Debug for RelatedAttributes
Source§impl<'de> Deserialize<'de> for RelatedAttributes
impl<'de> Deserialize<'de> for RelatedAttributes
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for RelatedAttributes
impl RefUnwindSafe for RelatedAttributes
impl Send for RelatedAttributes
impl Sync for RelatedAttributes
impl Unpin for RelatedAttributes
impl UnwindSafe for RelatedAttributes
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more