Type Alias rerun::dataframe::ViewContentsSelector
source · pub type ViewContentsSelector = BTreeMap<EntityPath, Option<BTreeSet<ComponentName>>>;
Expand description
The view contents specify which subset of the database (i.e., which columns) the query runs on,
expressed as a set of EntityPath
s and their associated ComponentName
s.
Setting an entity’s components to None
means: everything.
Aliased Type§
struct ViewContentsSelector {
root: Option<NodeRef<Owned, EntityPath, Option<BTreeSet<ComponentName>>, LeafOrInternal>>,
length: usize,
pub(super) alloc: ManuallyDrop<Global>,
_marker: PhantomData<Box<(EntityPath, Option<BTreeSet<ComponentName>>)>>,
}
Fields§
§root: Option<NodeRef<Owned, EntityPath, Option<BTreeSet<ComponentName>>, LeafOrInternal>>
§length: usize
§alloc: ManuallyDrop<Global>
§_marker: PhantomData<Box<(EntityPath, Option<BTreeSet<ComponentName>>)>>