(&self)
| 292 | impl<'ipt, IP: InputAPI + ?Sized> MouseModule<'ipt, IP> { |
| 293 | /// Create a mouse module around an input API borrow. |
| 294 | pub fn new(ipt: &'ipt IP) -> Self { |
| 295 | Self { ipt } |
| 296 | } |
| 297 | |
| 298 | /// Return `true` while the button is held. |
| 299 | #[inline] |