use std::any::Any;
pub mod cast;
pub mod partitions;
#[allow(clippy::module_inception)]
mod schema;
pub use cast::*;
pub use schema::*;
pub trait DataCheck {
fn get_name(&self) -> &str;
fn get_expression(&self) -> &str;
fn as_any(&self) -> &dyn Any;
}