pub struct AnimeListStatus {
pub status: Option<UserAnimeListStatus>,
pub score: u8,
pub num_episodes_watched: u32,
pub is_rewatching: bool,
pub start_date: Option<String>,
pub finish_date: Option<String>,
pub priority: u8,
pub num_times_rewatched: u32,
pub rewatch_value: u8,
pub tags: Vec<String>,
pub comments: String,
pub updated_at: String,
}Fields§
§status: Option<UserAnimeListStatus>§score: u8§num_episodes_watched: u32§is_rewatching: bool§start_date: Option<String>§finish_date: Option<String>§priority: u8§num_times_rewatched: u32§rewatch_value: u8§comments: String§updated_at: StringTrait Implementations§
Source§impl Debug for AnimeListStatus
impl Debug for AnimeListStatus
Source§impl<'de> Deserialize<'de> for AnimeListStatus
impl<'de> Deserialize<'de> for AnimeListStatus
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
Source§impl Display for AnimeListStatus
impl Display for AnimeListStatus
Auto Trait Implementations§
impl Freeze for AnimeListStatus
impl RefUnwindSafe for AnimeListStatus
impl Send for AnimeListStatus
impl Sync for AnimeListStatus
impl Unpin for AnimeListStatus
impl UnsafeUnpin for AnimeListStatus
impl UnwindSafe for AnimeListStatus
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