pub struct Row {
pub keyword: &'static str,
pub monthly_search_volume_us: u32,
pub category: &'static str,
pub free_template_url: Option<&'static str>,
}Expand description
One keyword of the catalog.
Fields§
§keyword: &'static strTemplate-related search query (US, English).
monthly_search_volume_us: u32Estimated monthly US search volume (2026).
category: &'static strOne of the 16 practical categories (kebab-case slug).
free_template_url: Option<&'static str>URL of a free, no-signup implementation in the free template library, when one exists.
Trait Implementations§
impl StructuralPartialEq for Row
Auto Trait Implementations§
impl Freeze for Row
impl RefUnwindSafe for Row
impl Send for Row
impl Sync for Row
impl Unpin for Row
impl UnsafeUnpin for Row
impl UnwindSafe for Row
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