micromegas-analytics 0.19.0

analytics module of micromegas
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/// type conversions
pub mod cast;
/// jsonb->json
pub mod format_json;
/// get by name
pub mod get;
/// extract object keys
pub mod keys;
/// jsonb_parse
pub mod parse;

// Re-export for convenience in tests
pub use cast::{JsonbAsF64, JsonbAsI64, JsonbAsString};
pub use format_json::JsonbFormatJson;
pub use get::JsonbGet;
pub use keys::JsonbObjectKeys;
pub use parse::JsonbParse;