Make struct Conn public. (#419) r=rnewman
This commit is contained in:
parent
35d73d5541
commit
99b7e89116
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ impl Metadata {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// A mutable, safe reference to the current Mentat store.
|
/// 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
|
/// `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
|
/// 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
|
/// (schema) that we want to share across threads. A consuming thread may use a shared
|
||||||
|
|
Loading…
Reference in a new issue