From 99b7e89116bb8b65057da43fc67e75a5d576e8d7 Mon Sep 17 00:00:00 2001 From: Brian Grinstead Date: Tue, 18 Apr 2017 11:04:44 -0700 Subject: [PATCH] Make struct Conn public. (#419) r=rnewman --- src/conn.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/conn.rs b/src/conn.rs index a4037df1..0aa642f0 100644 --- a/src/conn.rs +++ b/src/conn.rs @@ -58,7 +58,7 @@ impl Metadata { } /// A mutable, safe reference to the current Mentat store. -struct Conn { +pub struct Conn { /// `Mutex` since all reads and writes need to be exclusive. Internally, owned data for the /// volatile parts (generation and partition map), and `Arc` for the infrequently changing parts /// (schema) that we want to share across threads. A consuming thread may use a shared