pub enum InletSpec {
Fixed(Vec<PortDef>),
Variable {
defaults: Vec<PortDef>,
min_inlets: u32,
},
}Expand description
Inlet configuration (fixed or variable count)
Variants§
Fixed(Vec<PortDef>)
Fixed number of inlets (e.g., cycle~ = 2, biquad~ = 6)
Variable
Variable inlets depending on argument count (e.g., pack)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for InletSpec
impl RefUnwindSafe for InletSpec
impl Send for InletSpec
impl Sync for InletSpec
impl Unpin for InletSpec
impl UnsafeUnpin for InletSpec
impl UnwindSafe for InletSpec
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