[][src]Struct mongodb::options::CreateCollectionOptions

pub struct CreateCollectionOptions {
    pub capped: Option<bool>,
    pub size: Option<i64>,
    pub max: Option<i64>,
    pub storage_engine: Option<Document>,
    pub validation: Option<Document>,
    pub validation_level: Option<ValidationLevel>,
    pub validation_action: Option<ValidationAction>,
    pub view_on: Option<String>,
    pub pipeline: Option<Vec<Document>>,
    pub collation: Option<Collation>,
    pub write_concern: Option<WriteConcern>,
}

These are the valid options for creating a collection with Database::create_collection.

Fields

capped: Option<bool>

Whether the collection should be capped. If true, size must also be set.

size: Option<i64>

The maximum size (in bytes) for a capped collection. This option is ignored if capped is not set to true.

max: Option<i64>

The maximum number of documents in a capped collection. The size limit takes precedence over this option. If a capped collection reaches the size limit before it reaches the maximum number of documents, MongoDB removes old documents.

storage_engine: Option<Document>

The storage engine that the collection should use. The value should take the following form:

{ <storage-engine-name>: <options> }

validation: Option<Document>

Specifies a validator to restrict the schema of documents which can exist in the collection. Expressions can be specified using any query operators except $near, $nearSphere, $text, and $where.

validation_level: Option<ValidationLevel>

Specifies how strictly the database should apply the validation rules to existing documents during an update.

validation_action: Option<ValidationAction>

Specifies whether the database should return an error or simply raise a warning if inserted documents do not pass the validation.

view_on: Option<String>

The name of the source collection or view to base this view on. If specified, this will cause a view to be created rather than a collection.

pipeline: Option<Vec<Document>>

An array that consists of the aggregation pipeline stages to run against view_on to determine the contents of the view.

collation: Option<Collation>

The default collation for the collection or view.

write_concern: Option<WriteConcern>

The write concern for the operation.

Methods

impl CreateCollectionOptions[src]

pub fn builder(
) -> TypedBuilder_BuilderFor_CreateCollectionOptions<(), (), (), (), (), (), (), (), (), (), ()>
[src]

Create a builder for building CreateCollectionOptions. On the builder, call .capped(...)(optional), .size(...)(optional), .max(...)(optional), .storage_engine(...)(optional), .validation(...)(optional), .validation_level(...)(optional), .validation_action(...)(optional), .view_on(...)(optional), .pipeline(...)(optional), .collation(...)(optional), .write_concern(...)(optional) to set the values of the fields(they accept Into values). Finally, call .build() to create the instance of CreateCollectionOptions.

Trait Implementations

impl Debug for CreateCollectionOptions[src]

impl Default for CreateCollectionOptions[src]

impl Serialize for CreateCollectionOptions[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,