Trait sea_orm::entity::ActiveModelTrait[][src]

pub trait ActiveModelTrait: Clone + Debug {
    type Entity: EntityTrait;
    fn take(
        &mut self,
        c: <Self::Entity as EntityTrait>::Column
    ) -> ActiveValue<Value>;
fn get(
        &self,
        c: <Self::Entity as EntityTrait>::Column
    ) -> ActiveValue<Value>;
fn set(&mut self, c: <Self::Entity as EntityTrait>::Column, v: Value);
fn unset(&mut self, c: <Self::Entity as EntityTrait>::Column);
fn is_unset(&self, c: <Self::Entity as EntityTrait>::Column) -> bool;
fn default() -> Self; }

Associated Types

Required methods

Implementors