//! Database-value abstraction shared between repository code and the
//! identifier crate.
//!
//! [`DbValue`] carries a NULL marker per scalar type rather than one untyped
//! NULL so that a bound parameter keeps its SQL type when the Rust value is
//! absent; the conversion traits and [`JsonRow`] are built on that invariant.
//!
//! Copyright (c) systemprompt.io — Business Source License 1.1.
//! See <https://systemprompt.io> for licensing details.
pub use FromDbValue;
pub use ToDbValue;
pub use ;