17 #include <bsoncxx/document/view.hpp>
18 #include <bsoncxx/stdx/optional.hpp>
19 #include <bsoncxx/types/bson_value/view_or_value.hpp>
20 #include <mongocxx/stdx.hpp>
21 #include <mongocxx/write_concern.hpp>
23 #include <mongocxx/config/prelude.hpp>
26 inline namespace v_noabi {
130 const stdx::optional<bsoncxx::types::bson_value::view_or_value>&
comment()
const;
133 stdx::optional<class write_concern> _write_concern;
134 stdx::optional<bool> _ordered;
135 stdx::optional<bool> _bypass_document_validation;
136 stdx::optional<bsoncxx::types::bson_value::view_or_value> _comment;
143 #include <mongocxx/config/postlude.hpp>
Class representing a view-or-value variant type.
Definition: view_or_value.hpp:29
Class representing the optional arguments to a MongoDB insert operation.
Definition: insert.hpp:32
const stdx::optional< class write_concern > & write_concern() const
The current write_concern for this operation.
insert & comment(bsoncxx::types::bson_value::view_or_value comment)
Sets the comment for this operation.
const stdx::optional< bool > & bypass_document_validation() const
Gets the current value of the bypass_document_validation option.
insert & ordered(bool ordered)
const stdx::optional< bool > & ordered() const
The current ordered value for this operation.
const stdx::optional< bsoncxx::types::bson_value::view_or_value > & comment() const
The current comment for this operation.
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.
Class representing the server-side requirement for reporting the success of a write operation.
Definition: write_concern.hpp:59
The top-level namespace for mongocxx library entities.
Definition: bulk_write.hpp:24