pub trait ExecWithParamaters {
    fn bind_raw(self, param: Vec<u8>) -> Result<Self>
    where
        Self: Sized
; fn bind_named_ref<T: Serialize, T1: Into<String>>(
        self,
        name: T1,
        param: &T
    ) -> Result<Self>
    where
        Self: Sized
, { ... } fn bind_ref<T: Serialize>(self, param: &T) -> Result<Self>
    where
        Self: Sized
, { ... } fn bind_named<T, T1>(self, name: T1, param: T) -> Result<Self>
    where
        T: Serialize,
        Self: Sized,
        T1: Into<String>
, { ... } fn bind<T>(self, param: T) -> Result<Self>
    where
        T: Serialize,
        Self: Sized
, { ... } fn bind_null(self) -> Result<Self>
    where
        Self: Sized
, { ... } fn bind_named_null<T1>(self, name: T1) -> Result<Self>
    where
        Self: Sized,
        T1: Into<String>
, { ... } }

Required Methods

Provided Methods

bind named parameter

bind parameter

bind named parameter

bind parameter

bind null

bind named null as parameter

Implementors