pub struct MarkChapterBatch {
pub manga_id: Uuid,
pub chapter_ids_read: Vec<Uuid>,
pub chapter_ids_unread: Vec<Uuid>,
pub update_history: bool,
/* private fields */
}
Expand description
Mark multiple manga chapters as read and/or unread for the current user.
Makes a request to POST /manga/{id}/read
.
Fields§
§manga_id: Uuid
§chapter_ids_read: Vec<Uuid>
§chapter_ids_unread: Vec<Uuid>
§update_history: bool
Implementations§
Trait Implementations§
Source§impl Clone for MarkChapterBatch
impl Clone for MarkChapterBatch
Source§fn clone(&self) -> MarkChapterBatch
fn clone(&self) -> MarkChapterBatch
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 MarkChapterBatch
impl Debug for MarkChapterBatch
Source§impl Default for MarkChapterBatch
impl Default for MarkChapterBatch
Source§fn default() -> MarkChapterBatch
fn default() -> MarkChapterBatch
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for MarkChapterBatch
impl !RefUnwindSafe for MarkChapterBatch
impl !Send for MarkChapterBatch
impl !Sync for MarkChapterBatch
impl Unpin for MarkChapterBatch
impl !UnwindSafe for MarkChapterBatch
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