pub struct PressedQueueStatus {
pub buffer_empty: bool,
pub buffer_full: bool,
}
Expand description
The press queue is a 15 element buffer recording timestamps of button presses.
Fields§
§buffer_empty: bool
Press queue empty.
buffer_full: bool
Press queue full.
Trait Implementations§
Source§impl Debug for PressedQueueStatus
impl Debug for PressedQueueStatus
Auto Trait Implementations§
impl Freeze for PressedQueueStatus
impl RefUnwindSafe for PressedQueueStatus
impl Send for PressedQueueStatus
impl Sync for PressedQueueStatus
impl Unpin for PressedQueueStatus
impl UnwindSafe for PressedQueueStatus
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