pub trait CollectionConfig {
    fn collection_name() -> &'static str;

    fn collection_options() -> Option<CollectionOptions> { ... }
    fn indexes() -> Indexes { ... }
}
Expand description

Define collection name, configuration and associated indexes.

Required Methods

Collection name to use when creating a mongodb::Collection instance.

Provided Methods

mongodb::options::CollectionOptions to be used when creating a mongodb::Collection instance.

This method has a default implementation returning None. In such case configuration is defined by the mongodb::Database used on Repository creation.

Configure how indexes should be created and synchronized for the associated collection.

This method has a default implementation returning no index (only special _id index will be present).

Implementors