pub trait _atsamd_hal_embedded_hal_digital_v2_ToggleableOutputPin {
    type Error;

    // Required method
    fn toggle(&mut self) -> Result<(), Self::Error>;
}
Expand description

Output pin that can be toggled

This trait is available if embedded-hal is built with the "unproven" feature.

See toggleable to use a software implementation if both OutputPin and StatefulOutputPin are implemented. Otherwise, implement this using hardware mechanisms.

Required Associated Types§

source

type Error

Error type

Required Methods§

source

fn toggle(&mut self) -> Result<(), Self::Error>

Toggle pin output.

Implementations on Foreign Types§

source§

impl ToggleableOutputPin for DynPin

source§

impl<I, C> ToggleableOutputPin for Pin<I, Output<C>>where I: PinId, C: OutputConfig,

§

type Error = Infallible

source§

fn toggle( &mut self ) -> Result<(), <Pin<I, Output<C>> as ToggleableOutputPin>::Error>

Implementors§

source§

impl<P> ToggleableOutputPin for Pwhere P: Default,

§

type Error = <P as OutputPin>::Error