use cratestmt;
/// A named, typed argument used in query parameterization.
///
/// `Arg` represents a single parameter that can be passed into a query
/// statement. Each argument has a name for identification and a type that
/// determines what values it accepts.
///
/// # Examples
///
/// ```
/// use toasty_core::schema::app::Arg;
/// use toasty_core::stmt::Type;
///
/// let arg = Arg {
/// name: "user_id".to_string(),
/// ty: Type::String,
/// };
/// assert_eq!(arg.name, "user_id");
/// ```