vantage-vista 0.4.12

Universal, schema-bearing data handle for the Vantage data framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Canonical column flag vocabulary.
//!
//! Vista carries flags on columns as plain strings — the set is open so
//! drivers and consumers can extend it. The constants below name the flags
//! understood directly by `vantage-vista`'s own accessors. Drivers translate
//! their native flag types into these strings when constructing a `Vista`.

pub const ID: &str = "id";
pub const TITLE: &str = "title";
pub const SEARCHABLE: &str = "searchable";
pub const ORDERABLE: &str = "orderable";
pub const MANDATORY: &str = "mandatory";
pub const HIDDEN: &str = "hidden";