pub trait IntoIdentity {
// Required method
fn into_identity(self) -> Identity;
}Expand description
Conversion into an Identity. Implemented for &str/String, a single
column iden, and tuples of column idens (for composites up to 12 columns).
Required Methodsยง
Sourcefn into_identity(self) -> Identity
fn into_identity(self) -> Identity
Build the Identity.
Dyn Compatibilityยง
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".