6#include "../collection.hpp" 
    7#include "../component_batch.hpp" 
    8#include "../component_column.hpp" 
    9#include "../components/media_type.hpp" 
   10#include "../components/text.hpp" 
   11#include "../result.hpp" 
   78        std::optional<ComponentBatch> 
text;
 
   91        static constexpr const char ArchetypeName[] = 
"rerun.archetypes.TextDocument";
 
  125            return std::move(*
this);
 
  134            return std::move(*
this);
 
  147            return std::move(*
this);
 
  159            return std::move(*
this);
 
  183    template <
typename T>
 
Generic collection of elements that are roughly contiguous in memory.
Definition collection.hpp:49
A class for representing either a usable value, or an error.
Definition result.hpp:14
All built-in archetypes. See Types in the Rerun manual.
Definition rerun.hpp:76
All Rerun C++ types and functions are in the rerun namespace or one of its nested namespaces.
Definition rerun.hpp:23
Arrow-encoded data of a single batch of components together with a component descriptor.
Definition component_batch.hpp:28
static Result< ComponentBatch > from_loggable(const rerun::Collection< T > &components, const ComponentDescriptor &descriptor)
Creates a new component batch from a collection of component instances.
Definition component_batch.hpp:46
A ComponentDescriptor fully describes the semantics of a column of data.
Definition component_descriptor.hpp:16
The Loggable trait is used by all built-in implementation of rerun::AsComponents to serialize a colle...
Definition loggable.hpp:11
Archetype: A text element intended to be displayed in its own text box.
Definition text_document.hpp:76
static constexpr const char ArchetypeName[]
The name of the archetype as used in ComponentDescriptors.
Definition text_document.hpp:91
static TextDocument update_fields()
Update only some specific fields of a TextDocument.
Definition text_document.hpp:115
Collection< ComponentColumn > columns()
Partitions the component data into unit-length sub-batches.
std::optional< ComponentBatch > media_type
The Media Type of the text.
Definition text_document.hpp:87
static constexpr auto Descriptor_media_type
ComponentDescriptor for the media_type field.
Definition text_document.hpp:98
Collection< ComponentColumn > columns(const Collection< uint32_t > &lengths_)
Partitions the component data into multiple sub-batches.
static constexpr auto Descriptor_text
ComponentDescriptor for the text field.
Definition text_document.hpp:94
TextDocument with_text(const rerun::components::Text &_text) &&
Contents of the text document.
Definition text_document.hpp:123
std::optional< ComponentBatch > text
Contents of the text document.
Definition text_document.hpp:78
TextDocument with_many_text(const Collection< rerun::components::Text > &_text) &&
This method makes it possible to pack multiple text in a single component batch.
Definition text_document.hpp:132
TextDocument with_media_type(const rerun::components::MediaType &_media_type) &&
The Media Type of the text.
Definition text_document.hpp:144
static TextDocument clear_fields()
Clear all the fields of a TextDocument.
TextDocument with_many_media_type(const Collection< rerun::components::MediaType > &_media_type) &&
This method makes it possible to pack multiple media_type in a single component batch.
Definition text_document.hpp:154
Component: A string of text, e.g. for labels and text documents.
Definition text.hpp:16