Trait ToQuery

Source
pub trait ToQuery<'a, T>: PushChunk<'a> {
    // Provided method
    fn to_query(&mut self) -> Query<'a, T> { ... }
}
Expand description

A trait implemented by query builders

Provided Methods§

Source

fn to_query(&mut self) -> Query<'a, T>

A default implementation for building a query which can then be executed.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<'a> ToQuery<'a, u64> for Delete<'a>

Source§

impl<'a, T> ToQuery<'a, T> for Select<'a, T>