You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/results.rs
-36Lines changed: 0 additions & 36 deletions
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,6 @@ use std::collections::{HashMap, VecDeque};
5
5
usecrate::{
6
6
bson::{Bson,Document},
7
7
bson_util,
8
-
coll::options::CommitQuorum,
9
8
db::options::CreateCollectionOptions,
10
9
};
11
10
@@ -84,21 +83,6 @@ pub struct DeleteResult {
84
83
pubstructCreateIndexResult{
85
84
/// The name of the index created in the `createIndex` command.
86
85
pubindex_name:String,
87
-
88
-
/// Whether or not the collection was created implicitly by the command.
89
-
pubcreated_collection_automatically:Option<bool>,
90
-
91
-
/// The number of indexes on the collection prior to running the command.
92
-
pubnum_indexes_before:u32,
93
-
94
-
/// The number of indexes on the collection after the command was run.
95
-
pubnum_indexes_after:u32,
96
-
97
-
/// Any information pertinent to the creation of the indexes. For more information, see the [documentation](https://docs.mongodb.com/manual/reference/command/createIndexes/#output).
98
-
pubnote:Option<String>,
99
-
100
-
/// The commit quorum for the operation.
101
-
pubcommit_quorum:Option<CommitQuorum>,
102
86
}
103
87
104
88
/// Information about the indexes created as a result of a
/// The list containing the names of all indexes created in the `createIndexes` command.
110
94
pubindex_names:Vec<String>,
111
-
112
-
/// Whether or not the collection was created implicitly by the command.
113
-
pubcreated_collection_automatically:Option<bool>,
114
-
115
-
/// The number of indexes on the collection prior to running the command.
116
-
pubnum_indexes_before:u32,
117
-
118
-
/// The number of indexes on the collection after the command was run.
119
-
pubnum_indexes_after:u32,
120
-
121
-
/// Any information pertinent to the creation of the indexes. For more information, see the [documentation](https://docs.mongodb.com/manual/reference/command/createIndexes/#output).
0 commit comments