#[repr(C)]pub struct FxPlugRustParameterSpec {
pub parameter_id: u32,
pub kind: u32,
pub flags: u32,
pub name: [c_char; 128],
pub default_value: f64,
pub parameter_min: f64,
pub parameter_max: f64,
pub slider_min: f64,
pub slider_max: f64,
pub delta: f64,
}Fields§
§parameter_id: u32§kind: u32§flags: u32§name: [c_char; 128]§default_value: f64§parameter_min: f64§parameter_max: f64§slider_min: f64§slider_max: f64§delta: f64Trait Implementations§
Source§impl Clone for FxPlugRustParameterSpec
impl Clone for FxPlugRustParameterSpec
Source§fn clone(&self) -> FxPlugRustParameterSpec
fn clone(&self) -> FxPlugRustParameterSpec
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 Debug for FxPlugRustParameterSpec
impl Debug for FxPlugRustParameterSpec
Source§impl Default for FxPlugRustParameterSpec
impl Default for FxPlugRustParameterSpec
Source§impl PartialEq for FxPlugRustParameterSpec
impl PartialEq for FxPlugRustParameterSpec
impl Copy for FxPlugRustParameterSpec
impl StructuralPartialEq for FxPlugRustParameterSpec
Auto Trait Implementations§
impl Freeze for FxPlugRustParameterSpec
impl RefUnwindSafe for FxPlugRustParameterSpec
impl Send for FxPlugRustParameterSpec
impl Sync for FxPlugRustParameterSpec
impl Unpin for FxPlugRustParameterSpec
impl UnsafeUnpin for FxPlugRustParameterSpec
impl UnwindSafe for FxPlugRustParameterSpec
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