Move privacy trait down to others
This commit is contained in:
parent
60eaaad08f
commit
834d7c139b
@ -432,10 +432,6 @@ struct CachedStatement {
|
|||||||
columns: Vec<Column>,
|
columns: Vec<Column>,
|
||||||
}
|
}
|
||||||
|
|
||||||
trait SessionInfoNew<'a> {
|
|
||||||
fn new(conn: &'a InnerConnection) -> SessionInfo<'a>;
|
|
||||||
}
|
|
||||||
|
|
||||||
struct InnerConnection {
|
struct InnerConnection {
|
||||||
stream: BufStream<Box<StreamWrapper>>,
|
stream: BufStream<Box<StreamWrapper>>,
|
||||||
notice_handler: Box<HandleNotice>,
|
notice_handler: Box<HandleNotice>,
|
||||||
@ -1785,3 +1781,7 @@ trait LazyRowsNew<'trans, 'stmt> {
|
|||||||
finished: bool,
|
finished: bool,
|
||||||
trans: &'trans Transaction<'trans>) -> LazyRows<'trans, 'stmt>;
|
trans: &'trans Transaction<'trans>) -> LazyRows<'trans, 'stmt>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
trait SessionInfoNew<'a> {
|
||||||
|
fn new(conn: &'a InnerConnection) -> SessionInfo<'a>;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user