mongodb 2.0.0

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::{session::ClientSession, Client};
pub use coll::Collection;
pub use cursor::{Cursor, SessionCursor, SessionCursorIter};
pub use db::Database;