Trait tidb_query_datatype::codec::data_type::Evaluable [−][src]
A trait of all types that can be used during evaluation (eval type).
Associated Constants
Loading content...Required methods
fn borrow_scalar_value(v: &ScalarValue) -> Option<&Self>
[src]
Borrows this concrete type from a ScalarValue
in the same type;
panics if the varient mismatches.
fn borrow_scalar_value_ref(v: ScalarValueRef<'_>) -> Option<&Self>
[src]
Borrows this concrete type from a ScalarValueRef
in the same type;
panics if the varient mismatches.
fn borrow_vector_value(v: &VectorValue) -> &ChunkedVecSized<Self>
[src]
Borrows a slice of this concrete type from a VectorValue
in the same type;
panics if the varient mismatches.