pub struct DspParameterDesc {
pub type_: DspParameterType,
pub name: [c_char; 16],
pub label: [c_char; 16],
pub description: String,
pub union: FMOD_DSP_PARAMETER_DESC_UNION,
}Fields§
§type_: DspParameterType§name: [c_char; 16]§label: [c_char; 16]§description: String§union: FMOD_DSP_PARAMETER_DESC_UNIONTrait Implementations§
Source§impl Clone for DspParameterDesc
impl Clone for DspParameterDesc
Source§fn clone(&self) -> DspParameterDesc
fn clone(&self) -> DspParameterDesc
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 Into<FMOD_DSP_PARAMETER_DESC> for DspParameterDesc
impl Into<FMOD_DSP_PARAMETER_DESC> for DspParameterDesc
Source§fn into(self) -> FMOD_DSP_PARAMETER_DESC
fn into(self) -> FMOD_DSP_PARAMETER_DESC
Converts this type into the (usually inferred) input type.
Auto Trait Implementations§
impl Freeze for DspParameterDesc
impl RefUnwindSafe for DspParameterDesc
impl !Send for DspParameterDesc
impl !Sync for DspParameterDesc
impl Unpin for DspParameterDesc
impl UnwindSafe for DspParameterDesc
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