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§
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
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.