pub enum TickError {
Minus,
}Expand description
Error type for tick-related operations.
This error occurs when a tick calculation results in a negative value, which is not allowed in the MIDI timing system.
Variants§
Minus
Indicates that a tick calculation resulted in a negative value.
Trait Implementations§
impl Copy for TickError
impl Eq for TickError
impl StructuralPartialEq for TickError
Auto Trait Implementations§
impl Freeze for TickError
impl RefUnwindSafe for TickError
impl Send for TickError
impl Sync for TickError
impl Unpin for TickError
impl UnwindSafe for TickError
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