use crate::{fixed_sized::FixedSizedCType, parameter::VarChar, InputParameter, Nullable};
pub trait IntoParameter {
type Parameter: InputParameter;
fn into_parameter(self) -> Self::Parameter;
}
impl<T> IntoParameter for T
where
T: InputParameter,
{
type Parameter = Self;
fn into_parameter(self) -> Self::Parameter {
self
}
}
impl<'a> IntoParameter for &'a str {
type Parameter = VarChar<'a>;
fn into_parameter(self) -> Self::Parameter {
VarChar::new(self.as_bytes())
}
}
impl<'a> IntoParameter for Option<&'a str> {
type Parameter = VarChar<'a>;
fn into_parameter(self) -> Self::Parameter {
match self {
Some(str) => str.into_parameter(),
None => VarChar::null(),
}
}
}
impl<T> IntoParameter for Option<T>
where
T: FixedSizedCType + InputParameter,
{
type Parameter = Nullable<T>;
fn into_parameter(self) -> Self::Parameter {
match self {
Some(value) => Nullable::new(value),
None => Nullable::null(),
}
}
}