toql_core 0.4.2

Library with core functionality for Toql
Documentation
1
2
3
4
5
6
7
8
//! Convenient super trait for function [count](crate::toql_api::ToqlApi::count).
use crate::{keyed::Keyed, table_mapper::mapped::Mapped, tree::tree_map::TreeMap};

/// Bind generic types to this trait when writing database independend functions.
///
/// See similar example on [ToqlApi](crate::toql_api::ToqlApi)
/// and on [count](crate::toql_api::ToqlApi::count).
pub trait Count: Keyed + Mapped + TreeMap {}