pub struct BuiltNode {
pub node: Box<dyn Node>,
pub connections: Vec<Connection>,
}Expand description
What a NodeFactory returns: the constructed node plus its
requested input wiring. The graph builder applies the connections
after every node has been constructed.
Fields§
§node: Box<dyn Node>§connections: Vec<Connection>Auto Trait Implementations§
impl Freeze for BuiltNode
impl !RefUnwindSafe for BuiltNode
impl Send for BuiltNode
impl Sync for BuiltNode
impl Unpin for BuiltNode
impl UnsafeUnpin for BuiltNode
impl !UnwindSafe for BuiltNode
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