re_viewer_context 0.24.1

Rerun viewer state that is shared with the viewer's code components.
Documentation
1
2
3
4
5
6
7
8
use crate::{StoreHub, TableStores};

/// Provides read-only references over the different kinds of storage used throughout the viewer.
pub struct StorageContext<'a> {
    pub hub: &'a StoreHub,
    pub bundle: &'a re_entity_db::StoreBundle,
    pub tables: &'a TableStores,
}