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