pub enum TablatureValidationReason {
InvalidLineCount {
lines: u8,
},
TooManyTunings {
tuning_count: usize,
lines: u8,
},
TuningOutOfMidiRange {
index: usize,
midi: i16,
},
}Variants§
Trait Implementations§
Source§impl Clone for TablatureValidationReason
impl Clone for TablatureValidationReason
Source§fn clone(&self) -> TablatureValidationReason
fn clone(&self) -> TablatureValidationReason
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TablatureValidationReason
impl Debug for TablatureValidationReason
Source§impl<'de> Deserialize<'de> for TablatureValidationReason
impl<'de> Deserialize<'de> for TablatureValidationReason
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for TablatureValidationReason
impl RefUnwindSafe for TablatureValidationReason
impl Send for TablatureValidationReason
impl Sync for TablatureValidationReason
impl Unpin for TablatureValidationReason
impl UnsafeUnpin for TablatureValidationReason
impl UnwindSafe for TablatureValidationReason
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