pub trait SqlNamed {
    // Required method
    fn sql_name(&self) -> String;
}
Expand description

A named SQL statement.

Required Methods§

source

fn sql_name(&self) -> String

Return the SQL name of the SQL item.

Implementors§