| 23 | /// implementations for types that need custom PostgreSQL wire encoding. |
| 24 | #[derive(Debug)] |
| 25 | pub(crate) struct Postgres<T>(pub T); |
| 26 | |
| 27 | /// Newtype wrapper that provides [`Serialize`](serde::Serialize) |
| 28 | /// implementations for types that need custom JSON serialization. |
no outgoing calls