pub struct StringCount {
pub count: Option<i64>,
pub id: Option<String>,
}Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§count: Option<i64>Number of clicks for this top entry, e.g. for this particular country or browser.
id: Option<String>Label assigned to this top entry, e.g. “US” or “Chrome”.
Trait Implementations§
Source§impl Clone for StringCount
impl Clone for StringCount
Source§fn clone(&self) -> StringCount
fn clone(&self) -> StringCount
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 StringCount
impl Debug for StringCount
Source§impl Default for StringCount
impl Default for StringCount
Source§fn default() -> StringCount
fn default() -> StringCount
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StringCount
impl<'de> Deserialize<'de> for StringCount
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
Source§impl Serialize for StringCount
impl Serialize for StringCount
impl Part for StringCount
Auto Trait Implementations§
impl Freeze for StringCount
impl RefUnwindSafe for StringCount
impl Send for StringCount
impl Sync for StringCount
impl Unpin for StringCount
impl UnwindSafe for StringCount
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