pub struct ParameterDescription {
pub name: String,
pub id: ParameterId,
pub minimum: f32,
pub maximum: f32,
pub defaultvalue: f32,
pub type_: ParameterType,
pub flags: FMOD_STUDIO_PARAMETER_FLAGS,
pub guid: Guid,
}Fields§
§name: String§id: ParameterId§minimum: f32§maximum: f32§defaultvalue: f32§type_: ParameterType§flags: FMOD_STUDIO_PARAMETER_FLAGS§guid: GuidTrait Implementations§
Source§impl Clone for ParameterDescription
impl Clone for ParameterDescription
Source§fn clone(&self) -> ParameterDescription
fn clone(&self) -> ParameterDescription
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 ParameterDescription
impl Debug for ParameterDescription
Source§impl Into<FMOD_STUDIO_PARAMETER_DESCRIPTION> for ParameterDescription
impl Into<FMOD_STUDIO_PARAMETER_DESCRIPTION> for ParameterDescription
Source§fn into(self) -> FMOD_STUDIO_PARAMETER_DESCRIPTION
fn into(self) -> FMOD_STUDIO_PARAMETER_DESCRIPTION
Converts this type into the (usually inferred) input type.
Auto Trait Implementations§
impl Freeze for ParameterDescription
impl RefUnwindSafe for ParameterDescription
impl Send for ParameterDescription
impl Sync for ParameterDescription
impl Unpin for ParameterDescription
impl UnwindSafe for ParameterDescription
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