pub trait MongoCollection {
    const NAME: &'static str;
    const SCHEMA_VERSION: i32;
}
Expand description

Trait that is implemented automatically on each collection struct by mongo_db.

Associated Constants

The collection’s name.

The collection’s schema version.

Change that in your mongo_db! invocation every time you change your schema.

You do not actually need to use this in your schema, but it is implemented for your convinience.

Implementors