Skip to content

Commit

Permalink
Comment indicating blueprints aren't available in 0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
jleibs committed May 25, 2023
1 parent eca0fe4 commit b6c0577
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion crates/re_log_types/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,14 +95,19 @@ macro_rules! impl_into_enum {
/// What type of `Recording` this is.
///
/// `Data` recordings contain user-data logged via `log_` API calls.
/// `Blueprint` recordings describe how that data is laid out.
///
/// In the future, `Blueprint` recordings describe how that data is laid out
/// in the viewer, though this is not currently supported.
///
/// Both of these types can go over the same stream and be stored in the
/// same datastore, but the viewer wants to treat them very differently.
#[derive(Copy, Clone, Debug, Hash, PartialEq, Eq, PartialOrd, Ord)]
#[cfg_attr(feature = "serde", derive(serde::Deserialize, serde::Serialize))]
pub enum RecordingType {
/// A recording of user-data.
Data,

/// Not currently used: recording data associated with the blueprint state.
Blueprint,
}

Expand Down

0 comments on commit b6c0577

Please sign in to comment.