1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
mod aggregate;
mod binary;
mod function;
mod timestamp;
mod unary;
mod utility;
use {
crate::{ConvertFrom, Value},
std::convert::Into,
};
pub trait ValueCore: Into<Value> + ConvertFrom<Value> {}
impl ValueCore for bool {}
impl ValueCore for i64 {}
impl ValueCore for f64 {}
impl ValueCore for String {}