pub enum MapError {
ImageLengthMismatch {
domain_len: usize,
image_len: usize,
},
DomainMismatch {
left_len: u16,
right_len: u16,
},
NoMappedEntries,
Unmapped {
class: u16,
},
UnsupportedPitchDomain {
divisions: u16,
},
TargetOutOfRange {
value: i64,
},
}Expand description
Error returned by partial pitch map construction, application, or composition.
Variants§
ImageLengthMismatch
A map image length did not match its octave-space domain.
DomainMismatch
Two composed maps used different octave spaces.
NoMappedEntries
A map with a nudge policy had no mapped entries to nudge toward.
Unmapped
A reject policy encountered an unmapped source class.
UnsupportedPitchDomain
The map can be composed as an integer map but cannot be applied to
octave-aware Pitch values.
TargetOutOfRange
A mapped absolute value cannot be represented as a Pitch semitone.
Trait Implementations§
impl Eq for MapError
Source§impl Error for MapError
impl Error for MapError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
impl StructuralPartialEq for MapError
Auto Trait Implementations§
impl Freeze for MapError
impl RefUnwindSafe for MapError
impl Send for MapError
impl Sync for MapError
impl Unpin for MapError
impl UnsafeUnpin for MapError
impl UnwindSafe for MapError
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