pub struct TaxonomyIndex {
pub generated_at: String,
pub by_type: BTreeMap<String, usize>,
pub by_status: BTreeMap<String, usize>,
pub by_scope: BTreeMap<String, usize>,
pub total: usize,
}Fields§
§generated_at: String§by_type: BTreeMap<String, usize>§by_status: BTreeMap<String, usize>§by_scope: BTreeMap<String, usize>§total: usizeTrait Implementations§
Source§impl Clone for TaxonomyIndex
impl Clone for TaxonomyIndex
Source§fn clone(&self) -> TaxonomyIndex
fn clone(&self) -> TaxonomyIndex
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 TaxonomyIndex
impl Debug for TaxonomyIndex
Source§impl Default for TaxonomyIndex
impl Default for TaxonomyIndex
Source§fn default() -> TaxonomyIndex
fn default() -> TaxonomyIndex
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TaxonomyIndex
impl<'de> Deserialize<'de> for TaxonomyIndex
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 TaxonomyIndex
impl RefUnwindSafe for TaxonomyIndex
impl Send for TaxonomyIndex
impl Sync for TaxonomyIndex
impl Unpin for TaxonomyIndex
impl UnsafeUnpin for TaxonomyIndex
impl UnwindSafe for TaxonomyIndex
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