#[non_exhaustive]pub struct Index {
pub name: String,
pub query_scope: QueryScope,
pub api_scope: ApiScope,
pub fields: Vec<IndexField>,
pub state: State,
pub density: Density,
pub multikey: bool,
pub shard_count: i32,
/* private fields */
}Expand description
Cloud Firestore indexes enable simple and complex queries against documents in a database.
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.name: StringOutput only. A server defined name for this index.
The form of this name for composite indexes will be:
projects/{project_id}/databases/{database_id}/collectionGroups/{collection_id}/indexes/{composite_index_id}
For single field indexes, this field will be empty.
query_scope: QueryScopeIndexes with a collection query scope specified allow queries against a collection that is the child of a specific document, specified at query time, and that has the same collection ID.
Indexes with a collection group query scope specified allow queries against all collections descended from a specific document, specified at query time, and that have the same collection ID as this index.
api_scope: ApiScopeThe API scope supported by this index.
fields: Vec<IndexField>The fields supported by this index.
For composite indexes, this requires a minimum of 2 and a maximum of 100
fields. The last field entry is always for the field path __name__. If,
on creation, __name__ was not specified as the last field, it will be
added automatically with the same direction as that of the last field
defined. If the final field in a composite index is not directional, the
__name__ will be ordered ASCENDING (unless explicitly specified).
For single field indexes, this will always be exactly one entry with a field path equal to the field path of the associated field.
state: StateOutput only. The serving state of the index.
density: DensityImmutable. The density configuration of the index.
multikey: boolOptional. Whether the index is multikey. By default, the index is not multikey. For non-multikey indexes, none of the paths in the index definition reach or traverse an array, except via an explicit array index. For multikey indexes, at most one of the paths in the index definition reach or traverse an array, except via an explicit array index. Violations will result in errors.
Note this field only applies to index with MONGODB_COMPATIBLE_API ApiScope.
shard_count: i32Optional. The number of shards for the index.
Implementations§
Source§impl Index
impl Index
pub fn new() -> Self
Sourcepub fn set_query_scope<T: Into<QueryScope>>(self, v: T) -> Self
pub fn set_query_scope<T: Into<QueryScope>>(self, v: T) -> Self
Sets the value of query_scope.
§Example
use google_cloud_firestore_admin_v1::model::index::QueryScope;
let x0 = Index::new().set_query_scope(QueryScope::Collection);
let x1 = Index::new().set_query_scope(QueryScope::CollectionGroup);
let x2 = Index::new().set_query_scope(QueryScope::CollectionRecursive);