pub trait EnableDirectionControl<Resources> {
    type WithDirectionControl: SetDirection;

    fn enable_direction_control(
        self,
        res: Resources
    ) -> Self::WithDirectionControl; }
Expand description

Enable direction control for a driver

The Resources type parameter defines the hardware resources required for direction control.

Required Associated Types

The type of the driver after direction control has been enabled

Required Methods

Enable direction control

Implementors