pub struct EffectParameter {
pub name: String,
pub kind: ParameterKind,
pub default: f32,
pub min: f32,
pub max: f32,
}Fields§
§name: String§kind: ParameterKind§default: f32§min: f32§max: f32Implementations§
Trait Implementations§
Source§impl Clone for EffectParameter
impl Clone for EffectParameter
Source§fn clone(&self) -> EffectParameter
fn clone(&self) -> EffectParameter
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EffectParameter
impl Debug for EffectParameter
Source§impl PartialEq for EffectParameter
impl PartialEq for EffectParameter
Source§fn eq(&self, other: &EffectParameter) -> bool
fn eq(&self, other: &EffectParameter) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EffectParameter
Auto Trait Implementations§
impl Freeze for EffectParameter
impl RefUnwindSafe for EffectParameter
impl Send for EffectParameter
impl Sync for EffectParameter
impl Unpin for EffectParameter
impl UnsafeUnpin for EffectParameter
impl UnwindSafe for EffectParameter
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