Enum tune::scala::KbmBuildError[][src]

pub enum KbmBuildError {
    FormalOctaveMissing,
    MappingTooLarge,
}
Expand description

Error reported when building a Kbm fails.

Variants

FormalOctaveMissing

No formal octave parameter has been set.

The formal octave parameter is mandatory if at least one key is pushed.

Examples

// No key pushed. The mapping is linear and the formal octave parameter is optional.
let optional = Kbm::builder(Note::from_midi_number(0));
assert!(optional.build().is_ok());

// At least one key pushed. The formal octave parameter is mandatory.
let mandatory = Kbm::builder(Note::from_midi_number(0)).push_mapped_key(0);
assert_eq!(mandatory.build().unwrap_err(), KbmBuildError::FormalOctaveMissing);
MappingTooLarge

There are too many items in this mapping.

// The number of items is below the threshold.
let mut below = Kbm::builder(Note::from_midi_number(62)).formal_octave(0);
for _ in 0..65535 {
    below = below.push_mapped_key(0);
}
assert!(below.build().is_ok());

// The number of items is above the threshold.
let mut above = Kbm::builder(Note::from_midi_number(62)).formal_octave(0);
for _ in 0..65536 {
    above = above.push_mapped_key(0);
}
assert_eq!(above.build().unwrap_err(), KbmBuildError::MappingTooLarge);

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Performs the conversion.

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.