#[non_exhaustive]
pub struct CreateManga<'a> {
Show 17 fields pub title: LocalizedString, pub alt_titles: Option<Vec<LocalizedString>>, pub description: Option<LocalizedString>, pub authors: Option<Vec<Uuid>>, pub artists: Option<Vec<Uuid>>, pub links: Option<MangaLinks>, pub original_language: Language, pub last_volume: Option<Option<&'a str>>, pub last_chapter: Option<Option<&'a str>>, pub publication_demographic: Option<Option<Demographic>>, pub status: MangaStatus, pub year: Option<Option<u16>>, pub content_rating: ContentRating, pub chapter_numbers_reset_on_new_volume: bool, pub tags: Option<Vec<Tag>>, pub primary_cover: Option<Option<Uuid>>, pub version: u32, /* private fields */
}
Expand description

Create a new manga.

This requires authentication.

Makes a request to POST /manga.

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
title: LocalizedStringalt_titles: Option<Vec<LocalizedString>>description: Option<LocalizedString>authors: Option<Vec<Uuid>>artists: Option<Vec<Uuid>>links: Option<MangaLinks>original_language: Languagelast_volume: Option<Option<&'a str>>last_chapter: Option<Option<&'a str>>publication_demographic: Option<Option<Demographic>>status: MangaStatusyear: Option<Option<u16>>

Year the manga was released.

content_rating: ContentRatingchapter_numbers_reset_on_new_volume: booltags: Option<Vec<Tag>>primary_cover: Option<Option<Uuid>>

Cover ID.

version: u32

= 1

Implementations

Send the request.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

The response type.

Get the method of the request.

Get the path of the request.

Get the body of the request.

Get whether auth is required for this request.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more