pub trait IntoParam {
    fn into_param(self) -> SqlType;
}
Expand description

Implemented for types that can be sent as parameters

Required Methods

Implementations on Foreign Types

Implements IntoParam for all nullable variants

Implements IntoParam for all borrowed variants (&str, Cow and etc)

Implementors