From 834d7c139b4b26407c3e0455995c5f27db08b5a9 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Mon, 1 Jun 2015 22:39:04 -0700 Subject: [PATCH] Move privacy trait down to others --- src/lib.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index df24cf9f..7a43a899 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -432,10 +432,6 @@ struct CachedStatement { columns: Vec, } -trait SessionInfoNew<'a> { - fn new(conn: &'a InnerConnection) -> SessionInfo<'a>; -} - struct InnerConnection { stream: BufStream>, notice_handler: Box, @@ -1785,3 +1781,7 @@ trait LazyRowsNew<'trans, 'stmt> { finished: bool, trans: &'trans Transaction<'trans>) -> LazyRows<'trans, 'stmt>; } + +trait SessionInfoNew<'a> { + fn new(conn: &'a InnerConnection) -> SessionInfo<'a>; +}