pub struct MangaStatistics {
pub rating: MangaRating,
pub follows: u32,
pub comments: Option<Comments>,
}
Fields§
§rating: MangaRating
§follows: u32
Number of users following the Manga.
comments: Option<Comments>
Trait Implementations§
Source§impl Clone for MangaStatistics
impl Clone for MangaStatistics
Source§fn clone(&self) -> MangaStatistics
fn clone(&self) -> MangaStatistics
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 MangaStatistics
impl Debug for MangaStatistics
Source§impl<'de> Deserialize<'de> for MangaStatistics
impl<'de> Deserialize<'de> for MangaStatistics
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<MangaStatistics, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<MangaStatistics, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Copy for MangaStatistics
Auto Trait Implementations§
impl Freeze for MangaStatistics
impl RefUnwindSafe for MangaStatistics
impl Send for MangaStatistics
impl Sync for MangaStatistics
impl Unpin for MangaStatistics
impl UnwindSafe for MangaStatistics
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