[][src]Struct fluidlite_sys::_fluid_sfont_t

#[repr(C)]
pub struct _fluid_sfont_t {
    pub data: *mut c_void,
    pub id: c_uint,
    pub free: Option<unsafe extern "C" fn(sfont: *mut fluid_sfont_t) -> c_int>,
    pub get_name: Option<unsafe extern "C" fn(sfont: *mut fluid_sfont_t) -> *mut c_char>,
    pub get_preset: Option<unsafe extern "C" fn(sfont: *mut fluid_sfont_t, bank: c_uint, prenum: c_uint) -> *mut fluid_preset_t>,
    pub iteration_start: Option<unsafe extern "C" fn(sfont: *mut fluid_sfont_t)>,
    pub iteration_next: Option<unsafe extern "C" fn(sfont: *mut fluid_sfont_t, preset: *mut fluid_preset_t) -> c_int>,
}

Fields

data: *mut c_voidid: c_uintfree: Option<unsafe extern "C" fn(sfont: *mut fluid_sfont_t) -> c_int>

The 'free' callback function should return 0 when it was able to free all resources. It should return a non-zero value if some of the samples could not be freed because they are still in use.

get_name: Option<unsafe extern "C" fn(sfont: *mut fluid_sfont_t) -> *mut c_char>

Return the name of the sfont

get_preset: Option<unsafe extern "C" fn(sfont: *mut fluid_sfont_t, bank: c_uint, prenum: c_uint) -> *mut fluid_preset_t>

Return the preset with the specified bank and preset number. All the fields, including the 'sfont' field, should * be filled in. If the preset cannot be found, the function returns NULL.

iteration_start: Option<unsafe extern "C" fn(sfont: *mut fluid_sfont_t)>iteration_next: Option<unsafe extern "C" fn(sfont: *mut fluid_sfont_t, preset: *mut fluid_preset_t) -> c_int>

Trait Implementations

impl Clone for _fluid_sfont_t[src]

impl Copy for _fluid_sfont_t[src]

impl Debug for _fluid_sfont_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.