mirror of
https://github.com/launchbadge/sqlx
synced 2024-11-10 14:34:19 +00:00
Implement Debug for statements
This commit is contained in:
parent
a4dc3dfbd7
commit
bfa29e521b
2 changed files with 2 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
|||
use super::MySqlColumn;
|
||||
|
||||
#[derive(Debug)]
|
||||
pub struct MySqlStatement {
|
||||
pub(crate) id: u32,
|
||||
pub(crate) columns: Vec<MySqlColumn>,
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
use super::{PgColumn, PgTypeInfo};
|
||||
|
||||
#[derive(Debug)]
|
||||
pub struct PgStatement {
|
||||
pub(crate) id: u32,
|
||||
pub(crate) columns: Vec<PgColumn>,
|
||||
|
|
Loading…
Reference in a new issue