pub struct TagHistory {
pub day: String,
pub uses: String,
pub accounts: String,
}Expand description
Usage statistics for given days (typically the past week).
Fields§
§day: StringUNIX timestamp on midnight of the given day.
uses: StringThe counted usage of the tag within that day.
accounts: StringThe total of accounts using the tag within that day.
Trait Implementations§
Source§impl Clone for TagHistory
impl Clone for TagHistory
Source§fn clone(&self) -> TagHistory
fn clone(&self) -> TagHistory
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 TagHistory
impl Debug for TagHistory
Source§impl<'de> Deserialize<'de> for TagHistory
impl<'de> Deserialize<'de> for TagHistory
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 PartialEq for TagHistory
impl PartialEq for TagHistory
Source§impl Serialize for TagHistory
impl Serialize for TagHistory
impl Eq for TagHistory
impl StructuralPartialEq for TagHistory
Auto Trait Implementations§
impl Freeze for TagHistory
impl RefUnwindSafe for TagHistory
impl Send for TagHistory
impl Sync for TagHistory
impl Unpin for TagHistory
impl UnwindSafe for TagHistory
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