pub trait OutputPin: Pin { // Required method fn poll_set( self: Pin<&mut Self>, cx: &mut Context<'_>, high: bool, ) -> Poll<Result<(), Self::Error>>; }
A pin that can be written to.
Polls a write operation of this pin to completion.