pub struct CategoryStats {
pub category: &'static str,
pub keywords: usize,
pub combined_monthly_volume_us: u64,
}Expand description
Aggregated demand for one category.
Fields§
§category: &'static strCategory slug (e.g. project-management).
keywords: usizeNumber of keywords in the category.
combined_monthly_volume_us: u64Sum of the monthly US volumes of those keywords.
Trait Implementations§
Source§impl Clone for CategoryStats
impl Clone for CategoryStats
Source§fn clone(&self) -> CategoryStats
fn clone(&self) -> CategoryStats
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CategoryStats
impl Debug for CategoryStats
Source§impl PartialEq for CategoryStats
impl PartialEq for CategoryStats
impl StructuralPartialEq for CategoryStats
Auto Trait Implementations§
impl Freeze for CategoryStats
impl RefUnwindSafe for CategoryStats
impl Send for CategoryStats
impl Sync for CategoryStats
impl Unpin for CategoryStats
impl UnsafeUnpin for CategoryStats
impl UnwindSafe for CategoryStats
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