// DO NOT EDIT! This file was auto-generated by crates/build/re_types_builder/src/codegen/cpp/mod.rs // Based on "crates/store/re_sdk_types/definitions/rerun/testing/components/fuzzy.fbs". #pragma once #include "../datatypes/affix_fuzzer1.hpp" #include #include #include #include #include namespace arrow { class Array; class DataType; class StructBuilder; } // namespace arrow namespace rerun::components { struct AffixFuzzer5 { std::optional single_optional; public: AffixFuzzer5() = default; AffixFuzzer5(std::optional single_optional_) : single_optional(std::move(single_optional_)) {} AffixFuzzer5& operator=(std::optional single_optional_) { single_optional = std::move(single_optional_); return *this; } /// Cast to the underlying AffixFuzzer1 datatype operator std::optional() const { return single_optional; } }; } // namespace rerun::components namespace rerun { template struct Loggable; /// \private template <> struct Loggable { static constexpr std::string_view ComponentType = "rerun.testing.components.AffixFuzzer5"; /// Returns the arrow data type this type corresponds to. static const std::shared_ptr& arrow_datatype(); /// Serializes an array of `rerun::components::AffixFuzzer5` into an arrow array. static Result> to_arrow( const components::AffixFuzzer5* instances, size_t num_instances ); /// Fills an arrow array builder with an array of this type. static rerun::Error fill_arrow_array_builder( arrow::StructBuilder* builder, const components::AffixFuzzer5* elements, size_t num_elements ); }; } // namespace rerun