File tree 4 files changed +4
-0
lines changed
postgres-protocol/src/message
4 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -524,6 +524,7 @@ impl CopyOutResponseBody {
524
524
}
525
525
}
526
526
527
+ #[ derive( Debug ) ]
527
528
pub struct DataRowBody {
528
529
storage : Bytes ,
529
530
len : u16 ,
Original file line number Diff line number Diff line change @@ -239,6 +239,7 @@ pub enum AsyncMessage {
239
239
}
240
240
241
241
/// Message returned by the `SimpleQuery` stream.
242
+ #[ derive( Debug ) ]
242
243
#[ non_exhaustive]
243
244
pub enum SimpleQueryMessage {
244
245
/// A row of data.
Original file line number Diff line number Diff line change @@ -196,6 +196,7 @@ impl AsName for SimpleColumn {
196
196
}
197
197
198
198
/// A row of data returned from the database by a simple query.
199
+ #[ derive( Debug ) ]
199
200
pub struct SimpleQueryRow {
200
201
columns : Arc < [ SimpleColumn ] > ,
201
202
body : DataRowBody ,
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ use std::sync::Arc;
15
15
use std:: task:: { Context , Poll } ;
16
16
17
17
/// Information about a column of a single query row.
18
+ #[ derive( Debug ) ]
18
19
pub struct SimpleColumn {
19
20
name : String ,
20
21
}
You can’t perform that action at this time.
0 commit comments