springql-core 0.18.1

SpringQL: Open-source stream processor for IoT devices and in-vehicle computers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// This file is part of https://github.com/SpringQL/SpringQL which is licensed under MIT OR Apache-2.0. See file LICENSE-MIT or LICENSE-APACHE for full license details.

mod schemaless_row;
mod stream_row;

mod column;
mod column_values;
mod foreign_row;
mod rowtime;
mod value;

pub use column::StreamColumns;
pub use column_values::ColumnValues;
pub use foreign_row::{CANFrameSourceRow, JsonObject, JsonSourceRow, SourceRow};
pub use rowtime::RowTime;
pub use schemaless_row::SchemalessRow;
pub use stream_row::StreamRow;
pub use value::{NnSqlValue, SpringValue, SqlCompareResult, SqlValue, SqlValueHashKey};