#[repr(C)]pub struct playdate_sound_effect_twopolefilter {
pub newFilter: Option<unsafe extern "C" fn() -> *mut TwoPoleFilter>,
pub freeFilter: Option<unsafe extern "C" fn(filter: *mut TwoPoleFilter)>,
pub setType: Option<unsafe extern "C" fn(filter: *mut TwoPoleFilter, type_: TwoPoleFilterType)>,
pub setFrequency: Option<unsafe extern "C" fn(filter: *mut TwoPoleFilter, frequency: f32)>,
pub setFrequencyModulator: Option<unsafe extern "C" fn(filter: *mut TwoPoleFilter, signal: *mut PDSynthSignalValue)>,
pub getFrequencyModulator: Option<unsafe extern "C" fn(filter: *mut TwoPoleFilter) -> *mut PDSynthSignalValue>,
pub setGain: Option<unsafe extern "C" fn(filter: *mut TwoPoleFilter, gain: f32)>,
pub setResonance: Option<unsafe extern "C" fn(filter: *mut TwoPoleFilter, resonance: f32)>,
pub setResonanceModulator: Option<unsafe extern "C" fn(filter: *mut TwoPoleFilter, signal: *mut PDSynthSignalValue)>,
pub getResonanceModulator: Option<unsafe extern "C" fn(filter: *mut TwoPoleFilter) -> *mut PDSynthSignalValue>,
}Fields§
§newFilter: Option<unsafe extern "C" fn() -> *mut TwoPoleFilter>§freeFilter: Option<unsafe extern "C" fn(filter: *mut TwoPoleFilter)>§setType: Option<unsafe extern "C" fn(filter: *mut TwoPoleFilter, type_: TwoPoleFilterType)>§setFrequency: Option<unsafe extern "C" fn(filter: *mut TwoPoleFilter, frequency: f32)>§setFrequencyModulator: Option<unsafe extern "C" fn(filter: *mut TwoPoleFilter, signal: *mut PDSynthSignalValue)>§getFrequencyModulator: Option<unsafe extern "C" fn(filter: *mut TwoPoleFilter) -> *mut PDSynthSignalValue>§setGain: Option<unsafe extern "C" fn(filter: *mut TwoPoleFilter, gain: f32)>§setResonance: Option<unsafe extern "C" fn(filter: *mut TwoPoleFilter, resonance: f32)>§setResonanceModulator: Option<unsafe extern "C" fn(filter: *mut TwoPoleFilter, signal: *mut PDSynthSignalValue)>§getResonanceModulator: Option<unsafe extern "C" fn(filter: *mut TwoPoleFilter) -> *mut PDSynthSignalValue>Trait Implementations§
Source§impl Clone for playdate_sound_effect_twopolefilter
impl Clone for playdate_sound_effect_twopolefilter
Source§fn clone(&self) -> playdate_sound_effect_twopolefilter
fn clone(&self) -> playdate_sound_effect_twopolefilter
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 moreimpl Copy for playdate_sound_effect_twopolefilter
Auto Trait Implementations§
impl Freeze for playdate_sound_effect_twopolefilter
impl RefUnwindSafe for playdate_sound_effect_twopolefilter
impl Send for playdate_sound_effect_twopolefilter
impl Sync for playdate_sound_effect_twopolefilter
impl Unpin for playdate_sound_effect_twopolefilter
impl UnwindSafe for playdate_sound_effect_twopolefilter
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