pub struct PatchNode {
pub id: String,
pub in_channels: u16,
pub out_channels: u16,
}Expand description
Portable description of one graph node: its id and channel counts.
Fields§
§id: StringNode id, unique within the patch.
in_channels: u16Number of input channels.
out_channels: u16Number of output channels.
Trait Implementations§
impl Eq for PatchNode
impl StructuralPartialEq for PatchNode
Auto Trait Implementations§
impl Freeze for PatchNode
impl RefUnwindSafe for PatchNode
impl Send for PatchNode
impl Sync for PatchNode
impl Unpin for PatchNode
impl UnsafeUnpin for PatchNode
impl UnwindSafe for PatchNode
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