pub struct Cable {
pub from: PortUri,
pub to: PortUri,
}Expand description
A directed connection from one node’s output port to another’s input port.
Fields§
§from: PortUriSource port URI (an output port).
to: PortUriDestination port URI (an input port).
Implementations§
Trait Implementations§
impl Eq for Cable
impl StructuralPartialEq for Cable
Auto Trait Implementations§
impl Freeze for Cable
impl RefUnwindSafe for Cable
impl Send for Cable
impl Sync for Cable
impl Unpin for Cable
impl UnsafeUnpin for Cable
impl UnwindSafe for Cable
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