pub struct InParts {
pub ports: Vec<PortSpec>,
pub connections: Vec<Connection>,
pub param_refs: Vec<String>,
}Expand description
What an InReader accumulated: scalar input ports (to append
after the node’s fixed ports), their connections, and the names of
$param references (returned from Node::param_refs).
Fields§
§ports: Vec<PortSpec>§connections: Vec<Connection>§param_refs: Vec<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for InParts
impl RefUnwindSafe for InParts
impl Send for InParts
impl Sync for InParts
impl Unpin for InParts
impl UnsafeUnpin for InParts
impl UnwindSafe for InParts
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