Trait tiberius::FromSqlOwned
source · pub trait FromSqlOwnedwhere
Self: Sized,{
// Required method
fn from_sql_owned(value: ColumnData<'static>) -> Result<Option<Self>>;
}
Expand description
A conversion trait from a TDS type by-value.
Required Methods§
sourcefn from_sql_owned(value: ColumnData<'static>) -> Result<Option<Self>>
fn from_sql_owned(value: ColumnData<'static>) -> Result<Option<Self>>
Returns the value, None
being a null value, taking the ownership.
Object Safety§
This trait is not object safe.