Creates a new clearable for `pins`.
(pins: Rc<RefCell<dyn Pins>>)
| 127 | impl PinsClearable { |
| 128 | /// Creates a new clearable for `pins`. |
| 129 | pub(crate) fn new(pins: Rc<RefCell<dyn Pins>>) -> Box<Self> { |
| 130 | Box::from(Self { pins }) |
| 131 | } |
| 132 | } |
| 133 | |
| 134 | impl Clearable for PinsClearable { |
nothing calls this directly
no test coverage detected