Expand description
Trait for converting Rust types to SQL values.
Structs§
- Decimal
Param Info - Explicit precision and scale for a
decimal/numericparameter (seenumeric). - Numeric
- A
decimal/numericparameter with explicit precision and scale. - Typed
Null - A typed NULL parameter, created with
null.
Traits§
- SqlTyped
- Associates a Rust type with its SQL type name so a typed NULL can be
declared without a value (see
null). - ToSql
- Trait for types that can be converted to SQL values.