#[repr(C)]pub struct playdate_sound_effect_delayline {
pub newDelayLine: Option<unsafe extern "C" fn(length: c_int, stereo: c_int) -> *mut DelayLine>,
pub freeDelayLine: Option<unsafe extern "C" fn(filter: *mut DelayLine)>,
pub setLength: Option<unsafe extern "C" fn(d: *mut DelayLine, frames: c_int)>,
pub setFeedback: Option<unsafe extern "C" fn(d: *mut DelayLine, fb: f32)>,
pub addTap: Option<unsafe extern "C" fn(d: *mut DelayLine, delay: c_int) -> *mut DelayLineTap>,
pub freeTap: Option<unsafe extern "C" fn(tap: *mut DelayLineTap)>,
pub setTapDelay: Option<unsafe extern "C" fn(t: *mut DelayLineTap, frames: c_int)>,
pub setTapDelayModulator: Option<unsafe extern "C" fn(t: *mut DelayLineTap, mod_: *mut PDSynthSignalValue)>,
pub getTapDelayModulator: Option<unsafe extern "C" fn(t: *mut DelayLineTap) -> *mut PDSynthSignalValue>,
pub setTapChannelsFlipped: Option<unsafe extern "C" fn(t: *mut DelayLineTap, flip: c_int)>,
}Fields§
§newDelayLine: Option<unsafe extern "C" fn(length: c_int, stereo: c_int) -> *mut DelayLine>§freeDelayLine: Option<unsafe extern "C" fn(filter: *mut DelayLine)>§setLength: Option<unsafe extern "C" fn(d: *mut DelayLine, frames: c_int)>§setFeedback: Option<unsafe extern "C" fn(d: *mut DelayLine, fb: f32)>§addTap: Option<unsafe extern "C" fn(d: *mut DelayLine, delay: c_int) -> *mut DelayLineTap>§freeTap: Option<unsafe extern "C" fn(tap: *mut DelayLineTap)>§setTapDelay: Option<unsafe extern "C" fn(t: *mut DelayLineTap, frames: c_int)>§setTapDelayModulator: Option<unsafe extern "C" fn(t: *mut DelayLineTap, mod_: *mut PDSynthSignalValue)>§getTapDelayModulator: Option<unsafe extern "C" fn(t: *mut DelayLineTap) -> *mut PDSynthSignalValue>§setTapChannelsFlipped: Option<unsafe extern "C" fn(t: *mut DelayLineTap, flip: c_int)>Trait Implementations§
Source§impl Clone for playdate_sound_effect_delayline
impl Clone for playdate_sound_effect_delayline
Source§fn clone(&self) -> playdate_sound_effect_delayline
fn clone(&self) -> playdate_sound_effect_delayline
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 Default for playdate_sound_effect_delayline
impl Default for playdate_sound_effect_delayline
Source§fn default() -> playdate_sound_effect_delayline
fn default() -> playdate_sound_effect_delayline
Returns the “default value” for a type. Read more
Source§impl PartialEq for playdate_sound_effect_delayline
impl PartialEq for playdate_sound_effect_delayline
Source§fn eq(&self, other: &playdate_sound_effect_delayline) -> bool
fn eq(&self, other: &playdate_sound_effect_delayline) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for playdate_sound_effect_delayline
impl Eq for playdate_sound_effect_delayline
impl StructuralPartialEq for playdate_sound_effect_delayline
Auto Trait Implementations§
impl Freeze for playdate_sound_effect_delayline
impl RefUnwindSafe for playdate_sound_effect_delayline
impl Send for playdate_sound_effect_delayline
impl Sync for playdate_sound_effect_delayline
impl Unpin for playdate_sound_effect_delayline
impl UnwindSafe for playdate_sound_effect_delayline
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