pub struct ParamFlags {
pub can_automate: bool,
pub is_readonly: bool,
pub is_bypass: bool,
pub is_list: bool,
pub is_hidden: bool,
}Expand description
Flags controlling parameter behavior.
Fields§
§can_automate: boolParameter can be automated by the host.
is_readonly: boolParameter is read-only (display only).
is_bypass: boolParameter is the bypass switch.
is_list: boolParameter should be displayed as a dropdown list (for enums). When true, host shows text labels from getParamStringByValue().
Parameter is hidden from the DAW’s parameter list. Used for internal parameters like MIDI CC emulation.
Trait Implementations§
Source§impl Clone for ParamFlags
impl Clone for ParamFlags
Source§fn clone(&self) -> ParamFlags
fn clone(&self) -> ParamFlags
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 ParamFlags
impl Debug for ParamFlags
Source§impl Default for ParamFlags
impl Default for ParamFlags
Source§impl PartialEq for ParamFlags
impl PartialEq for ParamFlags
impl Copy for ParamFlags
impl Eq for ParamFlags
impl StructuralPartialEq for ParamFlags
Auto Trait Implementations§
impl Freeze for ParamFlags
impl RefUnwindSafe for ParamFlags
impl Send for ParamFlags
impl Sync for ParamFlags
impl Unpin for ParamFlags
impl UnwindSafe for ParamFlags
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