pub struct MidiCC {
node_id: NodeId,
ops: Rc<RefCell<Vec<ConstructorOp>>>,
}
Expand description
Build API Struct for Node MidiCC
Fields
node_id: NodeId
ops: Rc<RefCell<Vec<ConstructorOp>>>
Implementations
sourceimpl MidiCC
impl MidiCC
sourcepub fn set(self) -> MidiCC
pub fn set(self) -> MidiCC
Returns a structure with all settable parameters and settings. See also Node MidiCC
sourcepub fn set_mod(self) -> MidiCC
pub fn set_mod(self) -> MidiCC
Returns a structure with all settable parameters with modulation amount. See also Node MidiCC
sourcepub fn input(self) -> MidiCC
pub fn input(self) -> MidiCC
Returns a structure with all input ports/parameters. See also Node MidiCC
sourcepub fn output(&self) -> MidiCC
pub fn output(&self) -> MidiCC
Returns a structure with all output ports/paramters. See also Node MidiCC
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for MidiCC
impl !Send for MidiCC
impl !Sync for MidiCC
impl Unpin for MidiCC
impl !UnwindSafe for MidiCC
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more