pub struct ControlPreviewConfig {
pub port_name: String,
pub history_length: Option<u32>,
}Expand description
Control signal preview configuration
Displays a real-time visualization of control output signals. Used in ParamCompute nodes to show LFO waveforms, envelopes, etc.
Fields§
§port_name: StringOutput port name to preview (must match a control output port)
history_length: Option<u32>History length in samples (default: 60 = 1 second at 60fps)
Trait Implementations§
Source§impl Clone for ControlPreviewConfig
impl Clone for ControlPreviewConfig
Source§fn clone(&self) -> ControlPreviewConfig
fn clone(&self) -> ControlPreviewConfig
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 moreAuto Trait Implementations§
impl Freeze for ControlPreviewConfig
impl RefUnwindSafe for ControlPreviewConfig
impl Send for ControlPreviewConfig
impl Sync for ControlPreviewConfig
impl Unpin for ControlPreviewConfig
impl UnwindSafe for ControlPreviewConfig
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