pub struct ClickedQueueStatus {
pub buffer_empty: bool,
pub buffer_full: bool,
}
Expand description
The click queue is a 15 element buffer recording timestamps of button clicks.
Fields§
§buffer_empty: bool
Click queue empty.
buffer_full: bool
Click queue full.
Trait Implementations§
Source§impl Debug for ClickedQueueStatus
impl Debug for ClickedQueueStatus
Auto Trait Implementations§
impl Freeze for ClickedQueueStatus
impl RefUnwindSafe for ClickedQueueStatus
impl Send for ClickedQueueStatus
impl Sync for ClickedQueueStatus
impl Unpin for ClickedQueueStatus
impl UnwindSafe for ClickedQueueStatus
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more