pub trait CheckboxIndicatorTemplate {
// Required method
fn create(
&self,
sizing: Option<LabeledControlSizing>,
) -> Rc<dyn CheckboxIndicatorPresenter>;
}Required Methods§
fn create( &self, sizing: Option<LabeledControlSizing>, ) -> Rc<dyn CheckboxIndicatorPresenter>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".