Allocate with box instead of ~
This commit is contained in:
parent
e1ebf3a953
commit
ec43eb86a6
@ -564,7 +564,7 @@ impl InnerPostgresConnection {
|
|||||||
let mut conn = InnerPostgresConnection {
|
let mut conn = InnerPostgresConnection {
|
||||||
stream: BufferedStream::new(stream),
|
stream: BufferedStream::new(stream),
|
||||||
next_stmt_id: 0,
|
next_stmt_id: 0,
|
||||||
notice_handler: ~DefaultNoticeHandler,
|
notice_handler: box DefaultNoticeHandler,
|
||||||
notifications: RingBuf::new(),
|
notifications: RingBuf::new(),
|
||||||
cancel_data: PostgresCancelData { process_id: 0, secret_key: 0 },
|
cancel_data: PostgresCancelData { process_id: 0, secret_key: 0 },
|
||||||
unknown_types: HashMap::new(),
|
unknown_types: HashMap::new(),
|
||||||
|
Loading…
Reference in New Issue
Block a user