logo
pub trait IntoActiveModel<A>where
    A: ActiveModelTrait,
{ fn into_active_model(self) -> A; }
Expand description

A Trait for any type that can be converted into an ActiveModel

Required Methods

Method to call to perform the conversion

Implementors