Trait SQLParamImpl

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

Source

fn stmt(&self) -> &str

Source

fn set_stmt(&mut self, stmt: &str) -> &mut Self

Source

fn tips(&self) -> &HashMap<String, String>

Source

fn add_tip(&mut self, k: &str, v: &str) -> &mut Self

Source

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.

Implementors§