pub trait FromSqlOwned: for<'a> FromSql<'a> { }
Expand description
A trait for types which can be created from a Postgres value without borrowing any data.
This is primarily useful for trait bounds on functions.
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.