16 lines
194 B
Rust
16 lines
194 B
Rust
use postgres_types::{FromSql, ToSql};
|
|
|
|
#[derive(FromSql)]
|
|
#[postgres(foo = "bar")]
|
|
struct Foo {
|
|
a: i32,
|
|
}
|
|
|
|
#[derive(ToSql)]
|
|
#[postgres(foo = "bar")]
|
|
struct Bar {
|
|
a: i32,
|
|
}
|
|
|
|
fn main() {}
|