7#include <userver/utils/fast_pimpl.hpp>
24class CommandResultSet
final {
26 explicit CommandResultSet(impl::QueryResult&& mysql_result);
29 CommandResultSet(
const CommandResultSet& other) =
delete;
30 CommandResultSet(CommandResultSet&& other)
noexcept;
43 const std::string&
At(std::size_t row, std::size_t column)
const;
46 std::string&
At(std::size_t row, std::size_t column);
50 utils::FastPimpl<Impl, 24, 8> impl_;