Add a missing Send impl

This commit is contained in:
Steven Fackler 2014-12-29 09:38:30 -08:00
parent 91c64b45ce
commit bece000346

View File

@ -777,6 +777,8 @@ pub struct Connection {
conn: RefCell<InnerConnection>
}
unsafe impl Send for Connection {}
impl Connection {
/// Creates a new connection to a Postgres database.
///