40 lines
1.7 KiB
Go
40 lines
1.7 KiB
Go
/*
|
|
Copyright 2020 The Qmgo Authors.
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package qmgo
|
|
|
|
// InsertOneResult is the result type returned by an InsertOne operation.
|
|
type InsertOneResult struct {
|
|
// The _id of the inserted document. A value generated by the driver will be of type primitive.ObjectID.
|
|
InsertedID interface{}
|
|
}
|
|
|
|
// InsertManyResult is a result type returned by an InsertMany operation.
|
|
type InsertManyResult struct {
|
|
// The _id values of the inserted documents. Values generated by the driver will be of type primitive.ObjectID.
|
|
InsertedIDs []interface{}
|
|
}
|
|
|
|
// UpdateResult is the result type returned from UpdateOne, UpdateMany, and ReplaceOne operations.
|
|
type UpdateResult struct {
|
|
MatchedCount int64 // The number of documents matched by the filter.
|
|
ModifiedCount int64 // The number of documents modified by the operation.
|
|
UpsertedCount int64 // The number of documents upsert by the operation.
|
|
UpsertedID interface{} // The _id field of the upsert document, or nil if no upsert was done.
|
|
}
|
|
|
|
// DeleteResult is the result type returned by DeleteOne and DeleteMany operations.
|
|
type DeleteResult struct {
|
|
DeletedCount int64 // The number of documents deleted.
|
|
}
|