pub struct TagWithCount {
    pub value: String,
    pub count: u64,
}Fields§
§value: StringThe name of the tag
count: u64The count of how many times it was found in the database
Trait Implementations§
Source§impl Debug for TagWithCount
 
impl Debug for TagWithCount
Source§impl<'de> Deserialize<'de> for TagWithCount
 
impl<'de> Deserialize<'de> for TagWithCount
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 TagWithCount
impl RefUnwindSafe for TagWithCount
impl Send for TagWithCount
impl Sync for TagWithCount
impl Unpin for TagWithCount
impl UnwindSafe for TagWithCount
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