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.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".