pub trait SQLParamImpl {
// Required methods
fn stmt(&self) -> &str;
fn set_stmt(&mut self, stmt: &str) -> &mut Self;
fn tips(&self) -> &HashMap<String, String>;
fn add_tip(&mut self, k: &str, v: &str) -> &mut Self;
fn set_tips(&mut self, tips: HashMap<String, String>) -> &mut Self;
}
Required Methods§
fn stmt(&self) -> &str
fn set_stmt(&mut self, stmt: &str) -> &mut Self
fn tips(&self) -> &HashMap<String, String>
fn add_tip(&mut self, k: &str, v: &str) -> &mut Self
fn set_tips(&mut self, tips: HashMap<String, String>) -> &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.