Trait ValueType

pub trait ValueType: Sized {
    // Required methods
    fn try_from(v: Value) -> Result<Self, ValueTypeErr>;
    fn type_name() -> String;
    fn array_type() -> ArrayType;
    fn column_type() -> ColumnType;

    // Provided methods
    fn unwrap(v: Value) -> Self { ... }
    fn expect(v: Value, msg: &str) -> Self { ... }
    fn enum_type_name() -> Option<&'static str> { ... }
}

Required Methods§

Provided Methods§

fn unwrap(v: Value) -> Self

fn expect(v: Value, msg: &str) -> Self

fn enum_type_name() -> Option<&'static str>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

§

impl ValueType for Cow<'_, str>

§

impl ValueType for bool

§

impl ValueType for char

§

impl ValueType for f32

§

impl ValueType for f64

§

impl ValueType for i8

§

impl ValueType for i16

§

impl ValueType for i32

§

impl ValueType for i64

§

impl ValueType for u8

§

impl ValueType for u16

§

impl ValueType for u32

§

impl ValueType for u64

§

impl ValueType for String

§

impl ValueType for Vec<u8>

§

impl<T> ValueType for Option<T>
where T: ValueType + Nullable,

Implementors§