Struct vst2_sys::AEffect[][src]

#[repr(C)]pub struct AEffect {
    pub magic: i32,
    pub dispatcher: extern "C" fn(_: *mut AEffect, _: i32, _: i32, _: isize, _: *mut c_void, _: f32) -> isize,
    pub process: extern "C" fn(_: *mut AEffect, _: *const *const f32, _: *mut *mut f32, _: i32),
    pub set_parameter: extern "C" fn(_: *mut AEffect, _: i32, _: f32),
    pub get_parameter: extern "C" fn(_: *mut AEffect, _: i32) -> f32,
    pub num_programs: i32,
    pub num_params: i32,
    pub num_inputs: i32,
    pub num_outputs: i32,
    pub flags: i32,
    pub ptr_1: *mut c_void,
    pub ptr_2: *mut c_void,
    pub initial_delay: i32,
    pub empty_2: [u8; 8],
    pub unknown_float: f32,
    pub object: *mut c_void,
    pub user: *mut c_void,
    pub unique_id: i32,
    pub version: i32,
    pub process_replacing: extern "C" fn(_: *mut AEffect, _: *const *const f32, _: *mut *mut f32, _: i32),
}

Fields

magic: i32dispatcher: extern "C" fn(_: *mut AEffect, _: i32, _: i32, _: isize, _: *mut c_void, _: f32) -> isizeprocess: extern "C" fn(_: *mut AEffect, _: *const *const f32, _: *mut *mut f32, _: i32)set_parameter: extern "C" fn(_: *mut AEffect, _: i32, _: f32)get_parameter: extern "C" fn(_: *mut AEffect, _: i32) -> f32num_programs: i32num_params: i32num_inputs: i32num_outputs: i32flags: i32ptr_1: *mut c_voidptr_2: *mut c_voidinitial_delay: i32empty_2: [u8; 8]unknown_float: f32object: *mut c_voiduser: *mut c_voidunique_id: i32version: i32process_replacing: extern "C" fn(_: *mut AEffect, _: *const *const f32, _: *mut *mut f32, _: i32)

Auto Trait Implementations

impl RefUnwindSafe for AEffect

impl !Send for AEffect

impl !Sync for AEffect

impl Unpin for AEffect

impl UnwindSafe for AEffect

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, 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.