re_viewer_context/
storage_context.rs

1
2
3
4
5
6
7
8
use crate::{StoreBundle, 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 StoreBundle,
    pub tables: &'a TableStores,
}