//! ToParams trait for converting structs to query parameters
use crateValue;
/// Trait for types that can be converted to query parameters.
///
/// This trait is typically implemented via the `#[derive(ToParams)]` macro,
/// which generates the implementation automatically based on struct fields.
///
/// The trait provides two sets of methods:
/// - `insert_*` methods exclude fields marked with `#[rdbi(skip_insert)]`
/// - `all_*` methods include all fields