pub struct ProjectStats {
pub views: i64,
pub downloads: i64,
pub recent_views: i64,
pub recent_downloads: i64,
pub stars: i64,
pub watchers: i64,
}Fields§
§views: i64§downloads: i64§recent_views: i64§recent_downloads: i64§stars: i64§watchers: i64Trait Implementations§
Source§impl Debug for ProjectStats
impl Debug for ProjectStats
Source§impl<'de> Deserialize<'de> for ProjectStats
impl<'de> Deserialize<'de> for ProjectStats
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
Auto Trait Implementations§
impl Freeze for ProjectStats
impl RefUnwindSafe for ProjectStats
impl Send for ProjectStats
impl Sync for ProjectStats
impl Unpin for ProjectStats
impl UnwindSafe for ProjectStats
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