Small struct reorder

This commit is contained in:
Steven Fackler 2015-01-28 21:08:20 -08:00
parent a616db0381
commit 118f0ba9b2

View File

@ -1153,8 +1153,8 @@ pub enum SslMode {
/// The transaction will roll back by default.
pub struct Transaction<'conn> {
conn: &'conn Connection,
commit: Cell<bool>,
depth: u32,
commit: Cell<bool>,
finished: bool,
}