#[repr(C)]pub struct ParameterMetaDataEntry {
pub parameter_id: u32,
pub name: DataHandle,
pub value_type: ValueType,
pub semantic: ParameterSemantic,
pub size_semantic_data_entry: u32,
pub semantic_data: DataHandle,
}Expand description
Struct describing a specific parameter of a component.
Fields§
§parameter_id: u32§name: DataHandle§value_type: ValueType§semantic: ParameterSemantic§size_semantic_data_entry: u32§semantic_data: DataHandleTrait Implementations§
Source§impl Clone for ParameterMetaDataEntry
impl Clone for ParameterMetaDataEntry
Source§fn clone(&self) -> ParameterMetaDataEntry
fn clone(&self) -> ParameterMetaDataEntry
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 ParameterMetaDataEntry
impl Debug for ParameterMetaDataEntry
impl Copy for ParameterMetaDataEntry
Auto Trait Implementations§
impl Freeze for ParameterMetaDataEntry
impl RefUnwindSafe for ParameterMetaDataEntry
impl Send for ParameterMetaDataEntry
impl Sync for ParameterMetaDataEntry
impl Unpin for ParameterMetaDataEntry
impl UnwindSafe for ParameterMetaDataEntry
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