pub trait FromSqlTuple<'input>: Sized {
    fn from_sql_tuple(s: &'input [u8]) -> IResult<'input, Self>;
}
Expand description

Trait for converting from a SQL tuple to a Rust type, which can borrow from the string or not. Used by iterate_sql_insertions.

Required Methods

Implementors