mango-orm 0.1.0-pre-alpha.6

ORM-like API MongoDB for Rust
Documentation
//! # Models
//!
//! Abstract Model methods for creating collections and interacting with the database.

// MODELS ==========================================================================================
/// Metadata
pub struct Meta {
    pub collection: &'static str,
}
/// Abstract Model ---------------------------------------------------------------------------------
pub trait Model {
    fn meta() -> Meta;
}

// TESTS ===========================================================================================
#[cfg(test)]
mod tests {
    //
}