pub enum MidiChannel {
Show 16 variants
One = 128,
Two = 129,
Three = 130,
Four = 131,
Five = 132,
Six = 133,
Seven = 134,
Eight = 135,
Nine = 136,
Ten = 137,
Eleven = 138,
Twelve = 139,
Thirteen = 140,
Fourteen = 141,
Fifteen = 142,
Sixteen = 143,
}
Expand description
Found at “MIXER > DJ SETTING > MIDI CH” of the “My Settings” page in the Rekordbox preferences.
Variants§
One = 128
Named “1” in the Rekordbox preferences.
Two = 129
Named “2” in the Rekordbox preferences.
Three = 130
Named “3” in the Rekordbox preferences.
Four = 131
Named “4” in the Rekordbox preferences.
Five = 132
Named “5” in the Rekordbox preferences.
Six = 133
Named “6” in the Rekordbox preferences.
Seven = 134
Named “7” in the Rekordbox preferences.
Eight = 135
Named “8” in the Rekordbox preferences.
Nine = 136
Named “9” in the Rekordbox preferences.
Ten = 137
Named “10” in the Rekordbox preferences.
Eleven = 138
Named “11” in the Rekordbox preferences.
Twelve = 139
Named “12” in the Rekordbox preferences.
Thirteen = 140
Named “13” in the Rekordbox preferences.
Fourteen = 141
Named “14” in the Rekordbox preferences.
Fifteen = 142
Named “15” in the Rekordbox preferences.
Sixteen = 143
Named “16” in the Rekordbox preferences.
Trait Implementations§
Source§impl BinRead for MidiChannel
impl BinRead for MidiChannel
Source§fn read_options<R: Read + Seek>(
__binrw_generated_var_reader: &mut R,
__binrw_generated_var_endian: Endian,
__binrw_generated_var_arguments: Self::Args<'_>,
) -> BinResult<Self>
fn read_options<R: Read + Seek>( __binrw_generated_var_reader: &mut R, __binrw_generated_var_endian: Endian, __binrw_generated_var_arguments: Self::Args<'_>, ) -> BinResult<Self>
§fn read<R>(reader: &mut R) -> Result<Self, Error>
fn read<R>(reader: &mut R) -> Result<Self, Error>
Read
Self
from the reader using default arguments. Read more§fn read_be<R>(reader: &mut R) -> Result<Self, Error>
fn read_be<R>(reader: &mut R) -> Result<Self, Error>
Read
Self
from the reader using default arguments and assuming
big-endian byte order. Read more§fn read_le<R>(reader: &mut R) -> Result<Self, Error>
fn read_le<R>(reader: &mut R) -> Result<Self, Error>
Read
Self
from the reader using default arguments and assuming
little-endian byte order. Read more§fn read_ne<R>(reader: &mut R) -> Result<Self, Error>
fn read_ne<R>(reader: &mut R) -> Result<Self, Error>
Read
T
from the reader assuming native-endian byte order. Read more§fn read_args<R>(reader: &mut R, args: Self::Args<'_>) -> Result<Self, Error>
fn read_args<R>(reader: &mut R, args: Self::Args<'_>) -> Result<Self, Error>
Read
Self
from the reader using the given arguments. Read more§fn read_be_args<R>(reader: &mut R, args: Self::Args<'_>) -> Result<Self, Error>
fn read_be_args<R>(reader: &mut R, args: Self::Args<'_>) -> Result<Self, Error>
Read
Self
from the reader, assuming big-endian byte order, using the
given arguments. Read more§fn read_le_args<R>(reader: &mut R, args: Self::Args<'_>) -> Result<Self, Error>
fn read_le_args<R>(reader: &mut R, args: Self::Args<'_>) -> Result<Self, Error>
Read
Self
from the reader, assuming little-endian byte order, using
the given arguments. Read moreSource§impl BinWrite for MidiChannel
impl BinWrite for MidiChannel
Source§fn write_options<W: Write + Seek>(
&self,
__binrw_generated_var_writer: &mut W,
__binrw_generated_var_endian: Endian,
__binrw_generated_var_arguments: Self::Args<'_>,
) -> BinResult<()>
fn write_options<W: Write + Seek>( &self, __binrw_generated_var_writer: &mut W, __binrw_generated_var_endian: Endian, __binrw_generated_var_arguments: Self::Args<'_>, ) -> BinResult<()>
§fn write<W>(&self, writer: &mut W) -> Result<(), Error>
fn write<W>(&self, writer: &mut W) -> Result<(), Error>
Write
Self
to the writer using default arguments. Read more§fn write_be<W>(&self, writer: &mut W) -> Result<(), Error>
fn write_be<W>(&self, writer: &mut W) -> Result<(), Error>
Write
Self
to the writer assuming big-endian byte order. Read more§fn write_le<W>(&self, writer: &mut W) -> Result<(), Error>
fn write_le<W>(&self, writer: &mut W) -> Result<(), Error>
Write
Self
to the writer assuming little-endian byte order. Read more§fn write_args<W>(
&self,
writer: &mut W,
args: Self::Args<'_>,
) -> Result<(), Error>
fn write_args<W>( &self, writer: &mut W, args: Self::Args<'_>, ) -> Result<(), Error>
Write
Self
to the writer using the given arguments. Read moreSource§impl Clone for MidiChannel
impl Clone for MidiChannel
Source§fn clone(&self) -> MidiChannel
fn clone(&self) -> MidiChannel
Returns a copy 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 Display for MidiChannel
impl Display for MidiChannel
Source§impl PartialEq for MidiChannel
impl PartialEq for MidiChannel
Source§impl ReadEndian for MidiChannel
impl ReadEndian for MidiChannel
Source§impl WriteEndian for MidiChannel
impl WriteEndian for MidiChannel
impl Copy for MidiChannel
impl Eq 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