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