pub trait OneWirePinExt {
    fn to_input(&mut self) -> &mut dyn InputPin<Error = Infallible>;
    fn to_output(&mut self) -> &mut dyn OutputPin<Error = Infallible>;
}

Required Methods§

Implementors§