pub trait HasDataType {
// Required method
fn data_type(&self) -> DataType;
}
Expand description
Can be bound to a single placeholder in an SQL statement.
Users usually will not utilize this trait directly.
pub trait HasDataType {
// Required method
fn data_type(&self) -> DataType;
}
Can be bound to a single placeholder in an SQL statement.
Users usually will not utilize this trait directly.