Trait QueryBuilderWithSet

Source
pub trait QueryBuilderWithSet {
    // Required methods
    fn set<T: 'static + ToSql + Sync + Clone>(
        &mut self,
        field: &str,
        value: T,
    ) -> &mut Self;
    fn set_computed(&mut self, field: &str, value: &str) -> &mut Self;
}

Required Methods§

Source

fn set<T: 'static + ToSql + Sync + Clone>( &mut self, field: &str, value: T, ) -> &mut Self

Source

fn set_computed(&mut self, field: &str, value: &str) -> &mut Self

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§