Struct mongodb::options::IndexOptions
source · #[non_exhaustive]pub struct IndexOptions {Show 20 fields
pub background: Option<bool>,
pub expire_after: Option<Duration>,
pub name: Option<String>,
pub sparse: Option<bool>,
pub storage_engine: Option<Document>,
pub unique: Option<bool>,
pub version: Option<IndexVersion>,
pub default_language: Option<String>,
pub language_override: Option<String>,
pub text_index_version: Option<TextIndexVersion>,
pub weights: Option<Document>,
pub sphere_2d_index_version: Option<Sphere2DIndexVersion>,
pub bits: Option<u32>,
pub max: Option<f64>,
pub min: Option<f64>,
pub bucket_size: Option<u32>,
pub partial_filter_expression: Option<Document>,
pub collation: Option<Collation>,
pub wildcard_projection: Option<Document>,
pub hidden: Option<bool>,
/* private fields */
}
Expand description
These are the valid options for specifying an IndexModel
.
For more information on these properties, see the documentation.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.background: Option<bool>
Tells the server to build the index in the background and not block other tasks. Starting in MongoDB 4.2, this option is deprecated and ignored by the server.
expire_after: Option<Duration>
Specifies a TTL to control how long MongoDB retains documents in this collection.
See the documentation for more information on how to use this option.
name: Option<String>
Specifies a name outside the default generated name.
sparse: Option<bool>
If true, the index only references documents with the specified field. The default value is false.
See the documentation for more information on how to use this option.
storage_engine: Option<Document>
Allows users to configure the storage engine on a per-index basis when creating an index.
unique: Option<bool>
Forces the index to be unique so the collection will not accept documents where the index key value matches an existing value in the index. The default value is false.
version: Option<IndexVersion>
Specify the version number of the index. Starting in MongoDB 3.2, Version 0 indexes are not allowed.
default_language: Option<String>
For text indexes, the language that determines the list of stop words and the rules for the stemmer and tokenizer.
language_override: Option<String>
For text
indexes, the name of the field, in the collection’s documents, that
contains the override language for the document.
text_index_version: Option<TextIndexVersion>
The text
index version number. Users can use this option to override the default
version number.
weights: Option<Document>
For text
indexes, a document that contains field and weight pairs.
sphere_2d_index_version: Option<Sphere2DIndexVersion>
The 2dsphere
index version number.
As of MongoDB 3.2, version 3 is the default. Version 2 is the default in MongoDB 2.6 and
3.0 series.
bits: Option<u32>
For 2dsphere
indexes, the number of precision of the stored geohash value of the
location data. The bits value ranges from 1 to 32 inclusive.
max: Option<f64>
For 2dsphere
indexes, the upper inclusive boundary for the longitude and latitude
values.
min: Option<f64>
For 2dsphere
indexes, the lower inclusive boundary for the longitude and latitude
values.
bucket_size: Option<u32>
For geoHaystack
indexes, specify the number of units within which to group the location
values.
partial_filter_expression: Option<Document>
If specified, the index only references documents that match the filter expression. See Partial Indexes for more information.
collation: Option<Collation>
Specifies the collation for the index.
wildcard_projection: Option<Document>
Allows users to include or exclude specific field paths from a wildcard index.
A flag that determines whether the index is hidden from the query planner. A hidden index is not evaluated as part of the query plan selection.
Implementations§
source§impl IndexOptions
impl IndexOptions
sourcepub fn builder(
) -> IndexOptionsBuilder<((), (), (), (), (), (), (), (), (), (), (), (), (), (), (), (), (), (), (), ())>
pub fn builder( ) -> IndexOptionsBuilder<((), (), (), (), (), (), (), (), (), (), (), (), (), (), (), (), (), (), (), ())>
Create a builder for building IndexOptions
.
On the builder, call .background(...)
(optional), .expire_after(...)
(optional), .name(...)
(optional), .sparse(...)
(optional), .storage_engine(...)
(optional), .unique(...)
(optional), .version(...)
(optional), .default_language(...)
(optional), .language_override(...)
(optional), .text_index_version(...)
(optional), .weights(...)
(optional), .sphere_2d_index_version(...)
(optional), .bits(...)
(optional), .max(...)
(optional), .min(...)
(optional), .bucket_size(...)
(optional), .partial_filter_expression(...)
(optional), .collation(...)
(optional), .wildcard_projection(...)
(optional), .hidden(...)
(optional) to set the values of the fields.
Finally, call .build()
to create the instance of IndexOptions
.
source§impl IndexOptions
impl IndexOptions
sourcepub fn clustered(&self) -> Option<bool>
pub fn clustered(&self) -> Option<bool>
Optionally specifies that this index is clustered. This is not a valid option to provide to ‘create_indexes’, but can appear in the options returned for an index via ‘list_indexes’. To create a clustered index, create a new collection using the ‘clustered_index’ option.
This options is only supported by servers >= 6.0.
Trait Implementations§
source§impl Clone for IndexOptions
impl Clone for IndexOptions
source§fn clone(&self) -> IndexOptions
fn clone(&self) -> IndexOptions
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for IndexOptions
impl Debug for IndexOptions
source§impl Default for IndexOptions
impl Default for IndexOptions
source§fn default() -> IndexOptions
fn default() -> IndexOptions
source§impl<'de> Deserialize<'de> for IndexOptions
impl<'de> Deserialize<'de> for IndexOptions
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Auto Trait Implementations§
impl RefUnwindSafe for IndexOptions
impl Send for IndexOptions
impl Sync for IndexOptions
impl Unpin for IndexOptions
impl UnwindSafe for IndexOptions
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> FmtForward for T
impl<T> FmtForward for T
source§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where Self: Binary,
self
to use its Binary
implementation when Debug
-formatted.source§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where Self: Display,
self
to use its Display
implementation when
Debug
-formatted.source§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where Self: LowerExp,
self
to use its LowerExp
implementation when
Debug
-formatted.source§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where Self: LowerHex,
self
to use its LowerHex
implementation when
Debug
-formatted.source§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where Self: Octal,
self
to use its Octal
implementation when Debug
-formatted.source§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where Self: Pointer,
self
to use its Pointer
implementation when
Debug
-formatted.source§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where Self: UpperExp,
self
to use its UpperExp
implementation when
Debug
-formatted.source§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where Self: UpperHex,
self
to use its UpperHex
implementation when
Debug
-formatted.source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere T: ?Sized,
source§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere Self: Sized,
source§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere R: 'a,
self
and passes that borrow into the pipe function. Read moresource§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere R: 'a,
self
and passes that borrow into the pipe function. Read moresource§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> Rwhere
Self: Borrow<B>,
B: 'a + ?Sized,
R: 'a,
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> Rwhere Self: Borrow<B>, B: 'a + ?Sized, R: 'a,
source§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R
) -> Rwhere
Self: BorrowMut<B>,
B: 'a + ?Sized,
R: 'a,
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R ) -> Rwhere Self: BorrowMut<B>, B: 'a + ?Sized, R: 'a,
source§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> Rwhere
Self: AsRef<U>,
U: 'a + ?Sized,
R: 'a,
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> Rwhere Self: AsRef<U>, U: 'a + ?Sized, R: 'a,
self
, then passes self.as_ref()
into the pipe function.source§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> Rwhere
Self: AsMut<U>,
U: 'a + ?Sized,
R: 'a,
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> Rwhere Self: AsMut<U>, U: 'a + ?Sized, R: 'a,
self
, then passes self.as_mut()
into the pipe
function.source§impl<T> Tap for T
impl<T> Tap for T
source§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Selfwhere
Self: Borrow<B>,
B: ?Sized,
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Selfwhere Self: Borrow<B>, B: ?Sized,
Borrow<B>
of a value. Read moresource§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere
Self: BorrowMut<B>,
B: ?Sized,
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere Self: BorrowMut<B>, B: ?Sized,
BorrowMut<B>
of a value. Read moresource§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Selfwhere
Self: AsRef<R>,
R: ?Sized,
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Selfwhere Self: AsRef<R>, R: ?Sized,
AsRef<R>
view of a value. Read moresource§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere
Self: AsMut<R>,
R: ?Sized,
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere Self: AsMut<R>, R: ?Sized,
AsMut<R>
view of a value. Read moresource§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Selfwhere
Self: Deref<Target = T>,
T: ?Sized,
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Selfwhere Self: Deref<Target = T>, T: ?Sized,
Deref::Target
of a value. Read moresource§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Selfwhere
Self: DerefMut<Target = T> + Deref,
T: ?Sized,
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Selfwhere Self: DerefMut<Target = T> + Deref, T: ?Sized,
Deref::Target
of a value. Read moresource§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap()
only in debug builds, and is erased in release builds.source§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut()
only in debug builds, and is erased in release
builds.source§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Selfwhere
Self: Borrow<B>,
B: ?Sized,
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Selfwhere Self: Borrow<B>, B: ?Sized,
.tap_borrow()
only in debug builds, and is erased in release
builds.source§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere
Self: BorrowMut<B>,
B: ?Sized,
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere Self: BorrowMut<B>, B: ?Sized,
.tap_borrow_mut()
only in debug builds, and is erased in release
builds.source§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Selfwhere
Self: AsRef<R>,
R: ?Sized,
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Selfwhere Self: AsRef<R>, R: ?Sized,
.tap_ref()
only in debug builds, and is erased in release
builds.source§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere
Self: AsMut<R>,
R: ?Sized,
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere Self: AsMut<R>, R: ?Sized,
.tap_ref_mut()
only in debug builds, and is erased in release
builds.