Trait quaint::ast::IntoRaw

source ·
pub trait IntoRaw<'a> {
    // Required method
    fn raw(self) -> Raw<'a>;
}
Expand description

Converts the value into a state to skip parameterization.

Must be used carefully to avoid SQL injections.

Required Methods§

source

fn raw(self) -> Raw<'a>

Implementors§

source§

impl<'a, T> IntoRaw<'a> for Twhere T: Into<Value<'a>>,