[go: up one dir, main page]

mongodb 1.1.0-beta

The official MongoDB driver for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Contains the sync API. This is only available when the `sync` feature is enabled.

mod client;
mod coll;
mod cursor;
mod db;

#[cfg(test)]
mod test;

pub use client::Client;
pub use coll::Collection;
pub use cursor::Cursor;
pub use db::Database;