pub struct ListMangaDrafts {
pub limit: Option<u32>,
pub offset: Option<u32>,
pub user: Option<Uuid>,
pub state: Option<MangaState>,
pub order: Option<MangaDraftsSortOrder>,
pub includes: Vec<ReferenceExpansionResource>,
/* private fields */
}
Fields§
§limit: Option<u32>
Minimum: 1
Maximum: 100
Default: 10 (if not specified)
offset: Option<u32>
= 0
user: Option<Uuid>
👎Deprecated since 1.2.1: MangaDex removed this in 5.4.9 of their API
§state: Option<MangaState>
§order: Option<MangaDraftsSortOrder>
§includes: Vec<ReferenceExpansionResource>
Implementations§
Source§impl ListMangaDrafts
impl ListMangaDrafts
Sourcepub async fn send(&self) -> MangaListResponse
pub async fn send(&self) -> MangaListResponse
Send the request.
Trait Implementations§
Source§impl Clone for ListMangaDrafts
impl Clone for ListMangaDrafts
Source§fn clone(&self) -> ListMangaDrafts
fn clone(&self) -> ListMangaDrafts
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 ListMangaDrafts
impl Debug for ListMangaDrafts
Source§impl Default for ListMangaDrafts
impl Default for ListMangaDrafts
Source§fn default() -> ListMangaDrafts
fn default() -> ListMangaDrafts
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListMangaDrafts
impl !RefUnwindSafe for ListMangaDrafts
impl !Send for ListMangaDrafts
impl !Sync for ListMangaDrafts
impl Unpin for ListMangaDrafts
impl !UnwindSafe for ListMangaDrafts
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