Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 232 Bytes

README.md

File metadata and controls

15 lines (12 loc) · 232 Bytes

Diesel As JSONB (for PG)

Usage

#[derive(AsJsonb)]
struct Something {
    thing: String,
}

struct Wrapper {
    things: Vec<Something> // For field type Array<Jsonb>
    thing: Something // For field type Jsonb
}