[][src]Trait embedded_platform::gpio::OutputPin

pub trait OutputPin: Pin {
    fn poll_set(
        self: Pin<&mut Self>,
        cx: &mut Context,
        high: bool
    ) -> Poll<Result<(), Self::Error>>; }

A pin that can be written to.

Required methods

fn poll_set(
    self: Pin<&mut Self>,
    cx: &mut Context,
    high: bool
) -> Poll<Result<(), Self::Error>>

Polls a write operation of this pin to completion.

Loading content...

Implementors

impl OutputPin for NoConnect[src]

Loading content...