From bece000346642e34df9ee151bedd4cf74723dd17 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Mon, 29 Dec 2014 09:38:30 -0800 Subject: [PATCH] Add a missing Send impl --- src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index 02462127..4e67f05e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -777,6 +777,8 @@ pub struct Connection { conn: RefCell } +unsafe impl Send for Connection {} + impl Connection { /// Creates a new connection to a Postgres database. ///