pub trait FromSqlTuple<'input>: Sized {
// Required method
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§
fn from_sql_tuple(s: &'input [u8]) -> IResult<'input, Self>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.