dbcrossbarlib 0.5.3

Library for copying data between databases (pre-release)
Documentation
//! Code shared between various BigQuery-related drivers.
//!
//! Much of this code falls into a few major categories:
//!
//! - Extension traits which extend "portable" types with BigQuery-specific
//!   APIs. These wrappers include [`TableBigQueryExt`], [`ColumnBigQueryExt`]
//!   and [`DataTypeBigQueryExt`].
//! - Native BigQuery equivalents of our portable types, including [`BqTable`],
//!   [`BqColumn`] and [`BqDataType`].
//!
//! The best starting points are probably [`TableBigQueryExt`] and [`BqTable`].

mod column;
mod column_name;
mod data_type;
mod driver_args;
mod export_udf;
mod import_udf;
mod indent_level;
mod schema;
mod table;
mod table_name;
mod write_bigquery_sql;

pub(crate) use self::column::*;
pub(crate) use self::column_name::*;
pub(crate) use self::data_type::*;
pub(crate) use self::driver_args::*;
pub(crate) use self::schema::*;
pub(crate) use self::table::*;
pub(crate) use self::table_name::*;
pub(crate) use self::write_bigquery_sql::*;