pub trait ToggleableOutputPin: ErrorType {
    fn toggle(&mut self) -> Result<(), Self::Error>;
}
Expand description

Output pin that can be toggled

Required Methods

Toggle pin output.

Implementations on Foreign Types

Implementors