6#include "../result.hpp"
25 const char* c_str()
const {
34 Utf8(std::string value_) : value(std::move(value_)) {}
36 Utf8& operator=(std::string value_) {
37 value = std::move(value_);
50 static constexpr const char Name[] =
"rerun.datatypes.Utf8";
53 static const std::shared_ptr<arrow::DataType>& arrow_datatype();
62 arrow::StringBuilder* builder,
const datatypes::Utf8* elements,
size_t num_elements
Status outcome object (success or error) returned for fallible operations.
Definition error.hpp:95
A class for representing either a usable value, or an error.
Definition result.hpp:14
All built-in datatypes. See Types in the Rerun manual.
Definition rerun.hpp:82
All Rerun C++ types and functions are in the rerun namespace or one of its nested namespaces.
Definition rerun.hpp:22
The Loggable trait is used by all built-in implementation of rerun::AsComponents to serialize a colle...
Definition loggable.hpp:11
Datatype: A string of text, encoded as UTF-8.
Definition utf8.hpp:21