pub trait SqlValueInto: Sized {
    // Required methods
    fn into(value: &ColumnValue) -> ForensicResult<Self>;
    fn into_owned(value: ColumnValue) -> ForensicResult<Self>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§