Skip to main content

FromSqlTextOwned

Trait FromSqlTextOwned 

Source
pub trait FromSqlTextOwned: for<'owned> FromSqlText<'owned> { }
Expand description

A trait for types which can be created from text Postgres values without borrowing any data.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T> FromSqlTextOwned for T
where T: for<'a> FromSqlText<'a>,