Skip to main content

QueryBuilderExt

Trait QueryBuilderExt 

Source
pub trait QueryBuilderExt: Send + Sync {
    type Model: Model;

    // Required method
    fn and_where(&mut self, condition: &str);
}
Expand description

查询构造器扩展 trait

Required Associated Types§

Source

type Model: Model

关联的模型类型

Required Methods§

Source

fn and_where(&mut self, condition: &str)

添加 AND WHERE 条件

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§