pub struct NodeEntry<N> {
pub id: NodeID,
pub num_inputs: u32,
pub num_outputs: u32,
pub weight: N,
/* private fields */
}Fields§
§id: NodeID§num_inputs: u32The number of input ports used by the node
num_outputs: u32The number of output ports used by the node
weight: NImplementations§
Auto Trait Implementations§
impl<N> Freeze for NodeEntry<N>where
N: Freeze,
impl<N> RefUnwindSafe for NodeEntry<N>where
N: RefUnwindSafe,
impl<N> Send for NodeEntry<N>where
N: Send,
impl<N> Sync for NodeEntry<N>where
N: Sync,
impl<N> Unpin for NodeEntry<N>where
N: Unpin,
impl<N> UnwindSafe for NodeEntry<N>where
N: UnwindSafe,
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