Trait rerun::external::re_types_core::Datatype

source ·
pub trait Datatype: Loggable<Name = DatatypeName> { }
Expand description

A Datatype describes plain old data that can be used by any number of Components.

Any Loggable with a Loggable::Name set to DatatypeName automatically implements Datatype.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<L> Datatype for L
where L: Loggable<Name = DatatypeName>,