pub struct UpdateMangaReadingStatus {
pub manga_id: Uuid,
pub status: Option<ReadingStatus>,
/* private fields */
}
Fields§
§manga_id: Uuid
§status: Option<ReadingStatus>
Using a None
(null
) value will remove the reading status.
Implementations§
Trait Implementations§
Source§impl Clone for UpdateMangaReadingStatus
impl Clone for UpdateMangaReadingStatus
Source§fn clone(&self) -> UpdateMangaReadingStatus
fn clone(&self) -> UpdateMangaReadingStatus
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 UpdateMangaReadingStatus
impl Debug for UpdateMangaReadingStatus
Auto Trait Implementations§
impl Freeze for UpdateMangaReadingStatus
impl !RefUnwindSafe for UpdateMangaReadingStatus
impl !Send for UpdateMangaReadingStatus
impl !Sync for UpdateMangaReadingStatus
impl Unpin for UpdateMangaReadingStatus
impl !UnwindSafe for UpdateMangaReadingStatus
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