pub mod builder;
pub mod coerce;
pub mod primitive;
pub mod validation;
#[derive(Debug, Clone, Default)]
pub struct BulkInsertResult {
pub tables: Vec<TableInsertResult>,
pub ringbuffers: Vec<RingBufferInsertResult>,
pub series: Vec<SeriesInsertResult>,
}
#[derive(Debug, Clone)]
pub struct TableInsertResult {
pub namespace: String,
pub table: String,
pub inserted: u64,
}
#[derive(Debug, Clone)]
pub struct RingBufferInsertResult {
pub namespace: String,
pub ringbuffer: String,
pub inserted: u64,
}
#[derive(Debug, Clone)]
pub struct SeriesInsertResult {
pub namespace: String,
pub series: String,
pub inserted: u64,
}