#[repr(C)]pub struct ParameterID {
pub data_1: c_uint,
pub data_2: c_uint,
}
Available on crate feature
studio
only.Expand description
Describes an event parameter identifier.
ParameterID
can be retrieved from the ParameterDescription
.
Fields§
§data_1: c_uint
First half of the ID.
data_2: c_uint
Second half of the ID.
Trait Implementations§
Source§impl Clone for ParameterID
impl Clone for ParameterID
Source§fn clone(&self) -> ParameterID
fn clone(&self) -> ParameterID
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ParameterID
impl Debug for ParameterID
Source§impl From<FMOD_STUDIO_PARAMETER_ID> for ParameterID
impl From<FMOD_STUDIO_PARAMETER_ID> for ParameterID
Source§fn from(value: FMOD_STUDIO_PARAMETER_ID) -> Self
fn from(value: FMOD_STUDIO_PARAMETER_ID) -> Self
Converts to this type from the input type.
Source§impl From<ParameterID> for FMOD_STUDIO_PARAMETER_ID
impl From<ParameterID> for FMOD_STUDIO_PARAMETER_ID
Source§fn from(value: ParameterID) -> Self
fn from(value: ParameterID) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ParameterID
impl PartialEq for ParameterID
impl Copy for ParameterID
impl Eq for ParameterID
impl StructuralPartialEq for ParameterID
Auto Trait Implementations§
impl Freeze for ParameterID
impl RefUnwindSafe for ParameterID
impl Send for ParameterID
impl Sync for ParameterID
impl Unpin for ParameterID
impl UnwindSafe for ParameterID
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