#[repr(i8)]pub enum MidiChannel {
Show 17 variants
Disabled = -1,
One = 1,
Two = 2,
Three = 3,
Four = 4,
Five = 5,
Six = 6,
Seven = 7,
Eight = 8,
Nine = 9,
Ten = 10,
Eleven = 11,
Twelve = 12,
Thirteen = 13,
Fourteen = 14,
Fifteen = 15,
Sixteen = 16,
}Expand description
MIDI Channel options in Project Settings Menu
(should only be use where Disabled is an option in the menu!).
Variants§
Disabled = -1
No MIDI Channel selected – Project Menu -> Control -> Midi -> Sync
One = 1
MIDI CH 1
Two = 2
MIDI CH 2
Three = 3
MIDI CH 3
Four = 4
MIDI CH 4
Five = 5
MIDI CH 5
Six = 6
MIDI CH 6
Seven = 7
MIDI CH 7
Eight = 8
MIDI CH 8
Nine = 9
MIDI CH 9
Ten = 10
MIDI CH 10
Eleven = 11
MIDI CH 11
Twelve = 12
MIDI CH 12
Thirteen = 13
MIDI CH 13
Fourteen = 14
MIDI CH 14
Fifteen = 15
MIDI CH 15
Sixteen = 16
MIDI CH 16
Trait Implementations§
Source§impl Clone for MidiChannel
impl Clone for MidiChannel
Source§fn clone(&self) -> MidiChannel
fn clone(&self) -> MidiChannel
Returns a duplicate of the value. Read more
1.0.0 · 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 MidiChannel
impl Debug for MidiChannel
Source§impl Default for MidiChannel
impl Default for MidiChannel
Source§fn default() -> MidiChannel
fn default() -> MidiChannel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MidiChannel
impl<'de> Deserialize<'de> for MidiChannel
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
Source§impl Into<i16> for MidiChannel
impl Into<i16> for MidiChannel
Source§impl Into<i32> for MidiChannel
impl Into<i32> for MidiChannel
Source§impl Into<i8> for MidiChannel
impl Into<i8> for MidiChannel
Source§impl PartialEq for MidiChannel
impl PartialEq for MidiChannel
Source§impl Serialize for MidiChannel
impl Serialize for MidiChannel
Source§impl TryFrom<&i16> for MidiChannel
impl TryFrom<&i16> for MidiChannel
Source§impl TryFrom<&i32> for MidiChannel
impl TryFrom<&i32> for MidiChannel
Source§impl TryFrom<&i8> for MidiChannel
impl TryFrom<&i8> for MidiChannel
Source§impl TryFrom<i16> for MidiChannel
impl TryFrom<i16> for MidiChannel
Source§impl TryFrom<i32> for MidiChannel
impl TryFrom<i32> for MidiChannel
Source§impl TryFrom<i8> for MidiChannel
impl TryFrom<i8> for MidiChannel
impl Copy for MidiChannel
impl StructuralPartialEq for MidiChannel
Auto Trait Implementations§
impl Freeze for MidiChannel
impl RefUnwindSafe for MidiChannel
impl Send for MidiChannel
impl Sync for MidiChannel
impl Unpin for MidiChannel
impl UnwindSafe for MidiChannel
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more