#[repr(C)]pub struct playdate_sound_instrument {Show 13 fields
pub newInstrument: Option<unsafe extern "C" fn() -> *mut PDSynthInstrument>,
pub freeInstrument: Option<unsafe extern "C" fn(inst: *mut PDSynthInstrument)>,
pub addVoice: Option<unsafe extern "C" fn(inst: *mut PDSynthInstrument, synth: *mut PDSynth, rangeStart: MIDINote, rangeEnd: MIDINote, transpose: f32) -> c_int>,
pub playNote: Option<unsafe extern "C" fn(inst: *mut PDSynthInstrument, frequency: f32, vel: f32, len: f32, when: u32) -> *mut PDSynth>,
pub playMIDINote: Option<unsafe extern "C" fn(inst: *mut PDSynthInstrument, note: MIDINote, vel: f32, len: f32, when: u32) -> *mut PDSynth>,
pub setPitchBend: Option<unsafe extern "C" fn(inst: *mut PDSynthInstrument, bend: f32)>,
pub setPitchBendRange: Option<unsafe extern "C" fn(inst: *mut PDSynthInstrument, halfSteps: f32)>,
pub setTranspose: Option<unsafe extern "C" fn(inst: *mut PDSynthInstrument, halfSteps: f32)>,
pub noteOff: Option<unsafe extern "C" fn(inst: *mut PDSynthInstrument, note: MIDINote, when: u32)>,
pub allNotesOff: Option<unsafe extern "C" fn(inst: *mut PDSynthInstrument, when: u32)>,
pub setVolume: Option<unsafe extern "C" fn(inst: *mut PDSynthInstrument, left: f32, right: f32)>,
pub getVolume: Option<unsafe extern "C" fn(inst: *mut PDSynthInstrument, left: *mut f32, right: *mut f32)>,
pub activeVoiceCount: Option<unsafe extern "C" fn(inst: *mut PDSynthInstrument) -> c_int>,
}Fields§
§newInstrument: Option<unsafe extern "C" fn() -> *mut PDSynthInstrument>§freeInstrument: Option<unsafe extern "C" fn(inst: *mut PDSynthInstrument)>§addVoice: Option<unsafe extern "C" fn(inst: *mut PDSynthInstrument, synth: *mut PDSynth, rangeStart: MIDINote, rangeEnd: MIDINote, transpose: f32) -> c_int>§playNote: Option<unsafe extern "C" fn(inst: *mut PDSynthInstrument, frequency: f32, vel: f32, len: f32, when: u32) -> *mut PDSynth>§playMIDINote: Option<unsafe extern "C" fn(inst: *mut PDSynthInstrument, note: MIDINote, vel: f32, len: f32, when: u32) -> *mut PDSynth>§setPitchBend: Option<unsafe extern "C" fn(inst: *mut PDSynthInstrument, bend: f32)>§setPitchBendRange: Option<unsafe extern "C" fn(inst: *mut PDSynthInstrument, halfSteps: f32)>§setTranspose: Option<unsafe extern "C" fn(inst: *mut PDSynthInstrument, halfSteps: f32)>§noteOff: Option<unsafe extern "C" fn(inst: *mut PDSynthInstrument, note: MIDINote, when: u32)>§allNotesOff: Option<unsafe extern "C" fn(inst: *mut PDSynthInstrument, when: u32)>§setVolume: Option<unsafe extern "C" fn(inst: *mut PDSynthInstrument, left: f32, right: f32)>§getVolume: Option<unsafe extern "C" fn(inst: *mut PDSynthInstrument, left: *mut f32, right: *mut f32)>§activeVoiceCount: Option<unsafe extern "C" fn(inst: *mut PDSynthInstrument) -> c_int>Trait Implementations§
Source§impl Clone for playdate_sound_instrument
impl Clone for playdate_sound_instrument
Source§fn clone(&self) -> playdate_sound_instrument
fn clone(&self) -> playdate_sound_instrument
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 playdate_sound_instrument
impl Debug for playdate_sound_instrument
impl Copy for playdate_sound_instrument
Auto Trait Implementations§
impl Freeze for playdate_sound_instrument
impl RefUnwindSafe for playdate_sound_instrument
impl Send for playdate_sound_instrument
impl Sync for playdate_sound_instrument
impl Unpin for playdate_sound_instrument
impl UnwindSafe for playdate_sound_instrument
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