# Diesel As JSONB (for PG) ## Usage ```rust #[derive(AsJsonb)]] struct Something { thing: String, } struct Wrapper { things: Vec // For field type Array thing: Something // For field type Jsonb } ```