pub trait ItemInterface: ItemPropertiesContainerInterface {
// Required method
fn attributes(
&self,
config: Arc<dyn ConfigInterface>,
) -> Option<Arc<dyn ItemAttributesContainerInterface>>;
}Required Methods§
fn attributes( &self, config: Arc<dyn ConfigInterface>, ) -> Option<Arc<dyn ItemAttributesContainerInterface>>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".