fosk 0.1.11

In-memory SQL-like query engine and lightweight data store for testing and prototyping.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::JsonPrimitive;

#[derive(Debug, Clone)]
pub struct ResolvedField {
    /// resolved collection/alias
    pub collection: String,
    /// column name
    pub name: String,
    /// from SchemaDict
    pub ty: JsonPrimitive,
    /// from SchemaDict
    pub nullable: bool,
}