mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-10-05 08:45:14 +00:00
Implement Debug for statements
This commit is contained in:
parent
a4dc3dfbd7
commit
bfa29e521b
@ -1,5 +1,6 @@
|
|||||||
use super::MySqlColumn;
|
use super::MySqlColumn;
|
||||||
|
|
||||||
|
#[derive(Debug)]
|
||||||
pub struct MySqlStatement {
|
pub struct MySqlStatement {
|
||||||
pub(crate) id: u32,
|
pub(crate) id: u32,
|
||||||
pub(crate) columns: Vec<MySqlColumn>,
|
pub(crate) columns: Vec<MySqlColumn>,
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
use super::{PgColumn, PgTypeInfo};
|
use super::{PgColumn, PgTypeInfo};
|
||||||
|
|
||||||
|
#[derive(Debug)]
|
||||||
pub struct PgStatement {
|
pub struct PgStatement {
|
||||||
pub(crate) id: u32,
|
pub(crate) id: u32,
|
||||||
pub(crate) columns: Vec<PgColumn>,
|
pub(crate) columns: Vec<PgColumn>,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user