pub trait IGraphicRegistry: IObject {
// Provided methods
fn m_graphics(self) -> Dictionary_2<Canvas, IndexedSet_1<Graphic>> { ... }
fn set_m_graphics(self, value: Dictionary_2<Canvas, IndexedSet_1<Graphic>>) { ... }
fn m_raycastable_graphics(
self,
) -> Dictionary_2<Canvas, IndexedSet_1<Graphic>> { ... }
fn set_m_raycastable_graphics(
self,
value: Dictionary_2<Canvas, IndexedSet_1<Graphic>>,
) { ... }
}Provided Methods§
fn m_graphics(self) -> Dictionary_2<Canvas, IndexedSet_1<Graphic>>
fn set_m_graphics(self, value: Dictionary_2<Canvas, IndexedSet_1<Graphic>>)
fn m_raycastable_graphics(self) -> Dictionary_2<Canvas, IndexedSet_1<Graphic>>
fn set_m_raycastable_graphics( self, value: Dictionary_2<Canvas, IndexedSet_1<Graphic>>, )
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.