pub trait Primary: Sync {
    // Required methods
    fn get_table_name(&self) -> &'static str;
    fn get_primary_field_names(&self) -> &'static [&'static str];
    fn any_arguments(&self) -> AnyArguments<'_>;
}

Required Methods§

source

fn get_table_name(&self) -> &'static str

source

fn get_primary_field_names(&self) -> &'static [&'static str]

source

fn any_arguments(&self) -> AnyArguments<'_>

Implementors§