pub trait RegisterDualAxisProcessorExt {
// Required method
fn register_dual_axis_processor<'de, T>(&mut self) -> &mut Self
where T: RegisterTypeTag<'de, dyn CustomDualAxisProcessor> + GetTypeRegistration;
}Expand description
A trait for registering a specific CustomDualAxisProcessor.
Required Methods§
sourcefn register_dual_axis_processor<'de, T>(&mut self) -> &mut Self
fn register_dual_axis_processor<'de, T>(&mut self) -> &mut Self
Registers the specified CustomDualAxisProcessor.
Object Safety§
This trait is not object safe.