pub struct PatchGraph {
pub nodes: Vec<PatchNode>,
pub edges: Vec<PatchEdge>,
}Expand description
Structure representing the entire patch graph. A collection of nodes (Max objects) and edges (patch cords).
Fields§
§nodes: Vec<PatchNode>§edges: Vec<PatchEdge>Implementations§
Trait Implementations§
Source§impl Clone for PatchGraph
impl Clone for PatchGraph
Source§fn clone(&self) -> PatchGraph
fn clone(&self) -> PatchGraph
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 PatchGraph
impl Debug for PatchGraph
Auto Trait Implementations§
impl Freeze for PatchGraph
impl RefUnwindSafe for PatchGraph
impl Send for PatchGraph
impl Sync for PatchGraph
impl Unpin for PatchGraph
impl UnsafeUnpin for PatchGraph
impl UnwindSafe for PatchGraph
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