pub trait Scalar: Debug + Send + Sync {
fn as_any(&self) -> &(dyn Any + 'static);
fn is_valid(&self) -> bool;
fn data_type(&self) -> &DataType;
}
Expand description
Trait object declaring an optional value with a DataType
.
This strait is often used in APIs that accept multiple scalar types.