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.

Implementors§

source§

impl<T> FromSqlOwned for Twhere T: for<'a> FromSql<'a>,