6#include "../collection.hpp"
7#include "../result.hpp"
38 data = std::move(data_);
50 struct Loggable<datatypes::Blob> {
51 static constexpr const char Name[] =
"rerun.datatypes.Blob";
54 static const std::shared_ptr<arrow::DataType>& arrow_datatype();
57 static Result<std::shared_ptr<arrow::Array>> to_arrow(
58 const datatypes::Blob* instances,
size_t num_instances
63 arrow::ListBuilder* builder,
const datatypes::Blob* elements,
size_t num_elements
Generic collection of elements that are roughly contiguous in memory.
Definition collection.hpp:49
size_t size() const
Returns the number of instances in this collection.
Definition collection.hpp:291
Status outcome object (success or error) returned for fallible operations.
Definition error.hpp:95
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
Datatype: A binary blob of data.
Definition blob.hpp:21
size_t size() const
Number of bytes.
Definition blob.hpp:26