pub trait IntoActiveValue<V>{
// Required method
fn into_active_value(self) -> ActiveValue<V>;
}Expand description
Any type that can be converted into an ActiveValue
Required Methods§
Sourcefn into_active_value(self) -> ActiveValue<V>
fn into_active_value(self) -> ActiveValue<V>
Method to perform the conversion
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".