simple-mongo 0.1.4

A simple MongoDB wrapper for Rust
Documentation
1
2
3
4
5
6
pub trait MongoObject {
    fn new(name: &str) -> Self;
    fn id(&self) -> String;
    fn set_id(&mut self, id: &str);
    fn from_same(&self) -> &Self;
}