14 template <
typename T2>
15 struct NoLoggableFor : std::false_type {};
18 NoLoggableFor<T>::value,
19 "Loggable is not implemented for this type. "
20 "It is implemented for all built-in datatypes and components. "
21 "To check ahead of template instantiation whether a type is loggable, use `is_loggable<T>`"
All Rerun C++ types and functions are in the rerun namespace or one of its nested namespaces.
Definition rerun.hpp:22
constexpr bool is_loggable
True for any type that implements the Loggable trait.
Definition loggable.hpp:53
The Loggable trait is used by all built-in implementation of rerun::AsComponents to serialize a colle...
Definition loggable.hpp:11