[][src]Struct fluidlite_sys::_fluid_preset_t

#[repr(C)]
pub struct _fluid_preset_t {
    pub data: *mut c_void,
    pub sfont: *mut fluid_sfont_t,
    pub free: Option<unsafe extern "C" fn(preset: *mut fluid_preset_t) -> c_int>,
    pub get_name: Option<unsafe extern "C" fn(preset: *mut fluid_preset_t) -> *mut c_char>,
    pub get_banknum: Option<unsafe extern "C" fn(preset: *mut fluid_preset_t) -> c_int>,
    pub get_num: Option<unsafe extern "C" fn(preset: *mut fluid_preset_t) -> c_int>,
    pub noteon: Option<unsafe extern "C" fn(preset: *mut fluid_preset_t, synth: *mut fluid_synth_t, chan: c_int, key: c_int, vel: c_int) -> c_int>,
    pub notify: Option<unsafe extern "C" fn(preset: *mut fluid_preset_t, reason: c_int, chan: c_int) -> c_int>,
}

Fields

data: *mut c_voidsfont: *mut fluid_sfont_tfree: Option<unsafe extern "C" fn(preset: *mut fluid_preset_t) -> c_int>get_name: Option<unsafe extern "C" fn(preset: *mut fluid_preset_t) -> *mut c_char>get_banknum: Option<unsafe extern "C" fn(preset: *mut fluid_preset_t) -> c_int>get_num: Option<unsafe extern "C" fn(preset: *mut fluid_preset_t) -> c_int>noteon: Option<unsafe extern "C" fn(preset: *mut fluid_preset_t, synth: *mut fluid_synth_t, chan: c_int, key: c_int, vel: c_int) -> c_int>

handle a noteon event. Returns 0 if no error occured.

notify: Option<unsafe extern "C" fn(preset: *mut fluid_preset_t, reason: c_int, chan: c_int) -> c_int>

Implement this function if the preset needs to be notified about preset select and unselect events.

Trait Implementations

impl Clone for _fluid_preset_t[src]

impl Copy for _fluid_preset_t[src]

impl Debug for _fluid_preset_t[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.