re_viewer_context 0.37.2

Rerun viewer state that is shared with the viewer's code components.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// Range & type of chunk store query.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
pub enum QueryRange {
    /// Use a time range on the currently active timeline.
    ///
    /// This is also known as "visible time range"
    TimeRange(re_sdk_types::encodings::TimeRange),

    /// Use latest-at semantics.
    #[default]
    LatestAt,
}