pub trait ItemRendererFeatures {
const SUPPORTS_TRANSFORMATIONS: bool;
}Expand description
Helper trait to express the features of an item renderer.
Required Associated Constants§
Sourceconst SUPPORTS_TRANSFORMATIONS: bool
const SUPPORTS_TRANSFORMATIONS: bool
The renderer supports applying 2D transformations to items.
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.