pub trait FromSqlText<'a>: FromSqlBase<'a> {
// Required method
fn from_sql_text(
raw: &'a str,
field: &FieldDescription,
) -> Result<Self, Box<dyn Error + Sync + Send>>;
}Expand description
Trait for types that can be deserialized from PostgreSQL text format data
Required Methods§
fn from_sql_text( raw: &'a str, field: &FieldDescription, ) -> Result<Self, Box<dyn Error + Sync + Send>>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".