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