re_types_blueprint/lib.rs
1//! The core types and traits that power Rerun's Blueprint sub-system.
2
3/// Auto-generated blueprint-related types.
4///
5/// They all implement the [`re_types_core::Component`] trait.
6///
7/// Unstable. Used for the ongoing blueprint experimentation.
8pub mod blueprint;
9
10// TODO(andreas): Workaround for referencing non-blueprint components from blueprint archetypes.
11pub(crate) use re_types::datatypes;
12pub(crate) mod components {
13 pub use re_types::components::Name;
14}