MongoDB C++ Driver
mongocxx-3.6.2
|
17 #include <bsoncxx/document/view.hpp>
18 #include <bsoncxx/stdx/optional.hpp>
19 #include <mongocxx/stdx.hpp>
20 #include <mongocxx/write_concern.hpp>
22 #include <mongocxx/config/prelude.hpp>
25 MONGOCXX_INLINE_NAMESPACE_BEGIN
109 stdx::optional<class write_concern> _write_concern;
110 stdx::optional<bool> _ordered;
111 stdx::optional<bool> _bypass_document_validation;
115 MONGOCXX_INLINE_NAMESPACE_END
118 #include <mongocxx/config/postlude.hpp>
Top level namespace for the MongoDB C++ driver.
Definition: bulk_write.hpp:24
const stdx::optional< bool > & bypass_document_validation() const
Gets the current value of the bypass_document_validation option.
Class representing the optional arguments to a MongoDB insert operation.
Definition: insert.hpp:31
const stdx::optional< bool > & ordered() const
The current ordered value for this operation.
Class representing the server-side requirement for reporting the success of a write operation.
Definition: write_concern.hpp:56
insert & bypass_document_validation(bool bypass_document_validation)
Sets the bypass_document_validation option.
insert & write_concern(class write_concern wc)
Sets the write_concern for this operation.
const stdx::optional< class write_concern > & write_concern() const
The current write_concern for this operation.
insert & ordered(bool ordered)