pub trait MappableColType: Sized + TryFrom<Self::ColumnType> {
    type ColumnType: ColType + From<Self>;
}
Expand description

Marker trait for column types that can be mapped with Into

Required Associated Types§

Object Safety§

This trait is not object safe.

Implementors§