pub trait EnableStepControl<Resources> {
type WithStepControl: Step;
// Required method
fn enable_step_control(self, res: Resources) -> Self::WithStepControl;
}
Expand description
Enable step control for a driver
The Resources
type parameter defines the hardware resources required for
step control.
Required Associated Types§
Sourcetype WithStepControl: Step
type WithStepControl: Step
The type of the driver after step control has been enabled
Required Methods§
Sourcefn enable_step_control(self, res: Resources) -> Self::WithStepControl
fn enable_step_control(self, res: Resources) -> Self::WithStepControl
Enable step control