Trait Wrapper

Source
pub trait Wrapper<T>{
    // Required method
    fn generate_sql(&self) -> String;
}
Expand description

定义一个 Wrapper trait,用于生成 SQL 语句

Required Methods§

Implementors§

Source§

impl<'a, T> Wrapper<T> for QueryWrapper<'_, T>