MongoDB C++ Driver 4.2.0
Loading...
Searching...
No Matches
mongocxx::v1::update_one_result Class Reference

#include <mongocxx/v1/update_one_result.hpp>

Description

The result of an "updateOne" operation.

Supported fields include:

See also
Attention
This feature is experimental! It is not ready for use!

Public Member Functions

 update_one_result (update_one_result &&other) noexcept
 Move constructor.
 update_one_result (update_one_result const &other)
 Copy construction.
 ~update_one_result ()
 Destroy this object.
std::int64_t matched_count () const
 Return the number of documents that matched the filter.
std::int64_t modified_count () const
 Return the number of documents that were modified.
update_one_resultoperator= (update_one_result &&other) noexcept
 Move assignment.
update_one_resultoperator= (update_one_result const &other)
 Copy assignment.
v1::bulk_write::result result () const
 Return the raw bulk write result.
std::int64_t upserted_count () const
 Return the number of documents that were upserted.
bsoncxx::v1::stdx::optional< bsoncxx::v1::types::viewupserted_id () const
 Return the upserted document ID.

Friends

bool operator== (update_one_result const &lhs, update_one_result const &rhs)
 Compare equal when all supported fields compare equal.
bool operator!= (update_one_result const &lhs, update_one_result const &rhs)
 Compare equal when all supported fields compare equal.

Constructor & Destructor Documentation

◆ ~update_one_result()

mongocxx::v1::update_one_result::~update_one_result ( )

Destroy this object.

Warning
Invalidates all associated views.

◆ update_one_result() [1/2]

mongocxx::v1::update_one_result::update_one_result ( update_one_result && other)
noexcept

Move constructor.

Postconditions:
  • other is in an assign-or-destroy-only state.

◆ update_one_result() [2/2]

mongocxx::v1::update_one_result::update_one_result ( update_one_result const & other)

Copy construction.

Member Function Documentation

◆ matched_count()

std::int64_t mongocxx::v1::update_one_result::matched_count ( ) const

Return the number of documents that matched the filter.

◆ modified_count()

std::int64_t mongocxx::v1::update_one_result::modified_count ( ) const

Return the number of documents that were modified.

◆ operator=() [1/2]

update_one_result & mongocxx::v1::update_one_result::operator= ( update_one_result && other)
noexcept

Move assignment.

Postconditions:
  • other is in an assign-or-destroy-only state.

◆ operator=() [2/2]

update_one_result & mongocxx::v1::update_one_result::operator= ( update_one_result const & other)

Copy assignment.

◆ result()

v1::bulk_write::result mongocxx::v1::update_one_result::result ( ) const

Return the raw bulk write result.

◆ upserted_count()

std::int64_t mongocxx::v1::update_one_result::upserted_count ( ) const

Return the number of documents that were upserted.

◆ upserted_id()

bsoncxx::v1::stdx::optional< bsoncxx::v1::types::view > mongocxx::v1::update_one_result::upserted_id ( ) const

Return the upserted document ID.

Returns
Empty when this->upserted_count() == 0.

◆ operator!=

bool operator!= ( update_one_result const & lhs,
update_one_result const & rhs )
friend

Compare equal when all supported fields compare equal.

◆ operator==

bool operator== ( update_one_result const & lhs,
update_one_result const & rhs )
friend

Compare equal when all supported fields compare equal.


The documentation for this class was generated from the following file: