@@ -9,7 +9,7 @@ const DEFAULT_SCHEMA: &str = "public";
99/// mapped from the SDK's `DatabaseSummary` (see the `From` impl) so the
1010/// `-o json`/`-o yaml` contract stays decoupled from generated-model field
1111/// order and nullability.
12- #[ derive( Clone , Debug , Deserialize , Serialize , PartialEq , Eq ) ]
12+ #[ derive( Clone , Debug , Serialize , PartialEq , Eq ) ]
1313struct DatabaseSummary {
1414 id : String ,
1515 #[ serde( default ) ]
@@ -22,7 +22,7 @@ struct DatabaseSummary {
2222/// from the SDK's `DatabaseDetailResponse` (see the `From` impl), keeping the
2323/// `-o json`/`-o yaml` contract independent of the generated model's field order
2424/// and `Option<Option<_>>` nullability.
25- #[ derive( Clone , Debug , Deserialize , Serialize , PartialEq , Eq ) ]
25+ #[ derive( Clone , Debug , Serialize , PartialEq , Eq ) ]
2626pub struct Database {
2727 pub id : String ,
2828 #[ serde( default ) ]
@@ -36,7 +36,7 @@ pub struct Database {
3636 attachments : Vec < DatabaseAttachment > ,
3737}
3838
39- #[ derive( Clone , Debug , Deserialize , Serialize , PartialEq , Eq ) ]
39+ #[ derive( Clone , Debug , Serialize , PartialEq , Eq ) ]
4040struct DatabaseAttachment {
4141 connection_id : String ,
4242 alias : Option < String > ,
0 commit comments