pub trait IntoIdentity {
// Required method
fn into_identity(self) -> Identity;
}Expand description
Performs a conversion into an Identity
Required Methods§
Sourcefn into_identity(self) -> Identity
fn into_identity(self) -> Identity
Method to perform the conversion
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".