pub struct TrendingEntry {
pub name: String,
pub description: String,
pub author: String,
pub downloads: u64,
pub stars: u64,
pub category: String,
pub version: String,
}Expand description
A trending / featured skill from the ClawHub API.
Fields§
§name: String§description: String§downloads: u64§stars: u64§category: String§version: StringTrait Implementations§
Source§impl Clone for TrendingEntry
impl Clone for TrendingEntry
Source§fn clone(&self) -> TrendingEntry
fn clone(&self) -> TrendingEntry
Returns a duplicate 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 TrendingEntry
impl Debug for TrendingEntry
Source§impl<'de> Deserialize<'de> for TrendingEntry
impl<'de> Deserialize<'de> for TrendingEntry
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 TrendingEntry
impl RefUnwindSafe for TrendingEntry
impl Send for TrendingEntry
impl Sync for TrendingEntry
impl Unpin for TrendingEntry
impl UnsafeUnpin for TrendingEntry
impl UnwindSafe for TrendingEntry
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