mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-10-03 07:45:30 +00:00
Implement Debug for statements
This commit is contained in:
parent
a4dc3dfbd7
commit
bfa29e521b
@ -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…
x
Reference in New Issue
Block a user