Rerun C++ SDK
Loading...
Searching...
No Matches
blob.hpp
1// DO NOT EDIT! This file was auto-generated by crates/re_types_builder/src/codegen/cpp/mod.rs
2// Based on "crates/re_types/definitions/rerun/components/blob.fbs".
3
4#pragma once
5
6#include "../collection.hpp"
7#include "../result.hpp"
8
9#include <cstdint>
10#include <memory>
11#include <utility>
12
13namespace arrow {
14 class Array;
15 class DataType;
16 class ListBuilder;
17} // namespace arrow
18
19namespace rerun::components {
20 /// **Component**: A binary blob of data.
21 struct Blob {
23
24 public:
25 Blob() = default;
26
27 Blob(rerun::Collection<uint8_t> data_) : data(std::move(data_)) {}
28
29 Blob& operator=(rerun::Collection<uint8_t> data_) {
30 data = std::move(data_);
31 return *this;
32 }
33 };
34} // namespace rerun::components
35
36namespace rerun {
37 template <typename T>
38 struct Loggable;
39
40 /// \private
41 template <>
42 struct Loggable<components::Blob> {
43 static constexpr const char Name[] = "rerun.components.Blob";
44
45 /// Returns the arrow data type this type corresponds to.
46 static const std::shared_ptr<arrow::DataType>& arrow_datatype();
47
48 /// Serializes an array of `rerun::components::Blob` into an arrow array.
50 const components::Blob* instances, size_t num_instances
51 );
52
53 /// Fills an arrow array builder with an array of this type.
54 static rerun::Error fill_arrow_array_builder(
55 arrow::ListBuilder* builder, const components::Blob* elements, size_t num_elements
56 );
57 };
58} // namespace rerun
Generic collection of elements that are roughly contiguous in memory.
Definition collection.hpp:46
Status outcome object (success or error) returned for fallible operations.
Definition error.hpp:88
A class for representing either a usable value, or an error.
Definition result.hpp:14
All built-in components. See Types in the Rerun manual.
Definition rerun.hpp:75
All Rerun C++ types and functions are in the rerun namespace or one of its nested namespaces.
Definition rerun.hpp:21
The Loggable trait is used by all built-in implementation of rerun::AsComponents to serialize a colle...
Definition loggable.hpp:11
Component: A binary blob of data.
Definition blob.hpp:21