[−][src]Struct mongodb::options::CreateCollectionOptions
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]
) -> TypedBuilder_BuilderFor_CreateCollectionOptions<(), (), (), (), (), (), (), (), (), (), ()>
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]
fn default() -> CreateCollectionOptions[src]
impl Serialize for CreateCollectionOptions[src]
Auto Trait Implementations
impl RefUnwindSafe for CreateCollectionOptions
impl Send for CreateCollectionOptions
impl Sync for CreateCollectionOptions
impl Unpin for CreateCollectionOptions
impl UnwindSafe for CreateCollectionOptions
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
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]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,