Trait dojo_orm::UpdateModel

source ·
pub trait UpdateModel {
    const COLUMNS: &'static [&'static str];

    // Required methods
    fn columns(&self) -> Vec<&'static str>;
    fn params(&self) -> Vec<&(dyn ToSql + Sync)>;
}

Required Associated Constants§

source

const COLUMNS: &'static [&'static str]

Required Methods§

source

fn columns(&self) -> Vec<&'static str>

source

fn params(&self) -> Vec<&(dyn ToSql + Sync)>

Object Safety§

This trait is not object safe.

Implementors§