We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60eaaad commit 834d7c1Copy full SHA for 834d7c1
src/lib.rs
@@ -432,10 +432,6 @@ struct CachedStatement {
432
columns: Vec<Column>,
433
}
434
435
-trait SessionInfoNew<'a> {
436
- fn new(conn: &'a InnerConnection) -> SessionInfo<'a>;
437
-}
438
-
439
struct InnerConnection {
440
stream: BufStream<Box<StreamWrapper>>,
441
notice_handler: Box<HandleNotice>,
@@ -1785,3 +1781,7 @@ trait LazyRowsNew<'trans, 'stmt> {
1785
1781
finished: bool,
1786
1782
trans: &'trans Transaction<'trans>) -> LazyRows<'trans, 'stmt>;
1787
1783
1784
+
+trait SessionInfoNew<'a> {
+ fn new(conn: &'a InnerConnection) -> SessionInfo<'a>;
+}
0 commit comments