Trait IntoActiveModel

pub trait IntoActiveModel<A>{
    // 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

Method to call to perform the conversion

Implementations on Foreign Types§

§

impl IntoActiveModel<ActiveModel> for Model

§

fn into_active_model(self) -> ActiveModel

Implementors§

§

impl<A> IntoActiveModel<A> for A