pub type AnyRenderObject = Arc<dyn Any + Send + Sync>;Expand description
A type-erased render object stored alongside IR nodes.
Downstream crates (e.g. fission-core) store concrete trait objects here
(typically Arc<dyn CustomRenderObject>). fission-ir itself never
inspects these values – it only provides the storage.
Aliased Type§
pub struct AnyRenderObject { /* private fields */ }