Trait IntoActiveModel   
pub trait IntoActiveModel<A>where
    A: ActiveModelTrait,{
    // Required method
    fn into_active_model(self) -> A;
}Expand description
A Trait for any type that can be converted into an ActiveModel
Required Methods§
fn into_active_model(self) -> A
fn into_active_model(self) -> A
Method to call to perform the conversion