enum GenTreeJob<N: BlockASTNode> {
Node {
node: N,
out: N,
},
Output {
area_id: usize,
x: i64,
y: i64,
in_port: String,
out: N,
},
Sink {
area_id: usize,
x: i64,
y: i64,
out: N,
},
Area {
area_id: usize,
out: N,
},
}
Variants
Node
Output
Sink
Area
Trait Implementations
sourceimpl<N: Debug + BlockASTNode> Debug for GenTreeJob<N>
impl<N: Debug + BlockASTNode> Debug for GenTreeJob<N>
Auto Trait Implementations
impl<N> RefUnwindSafe for GenTreeJob<N>where
N: RefUnwindSafe,
impl<N> Send for GenTreeJob<N>where
N: Send,
impl<N> Sync for GenTreeJob<N>where
N: Sync,
impl<N> Unpin for GenTreeJob<N>where
N: Unpin,
impl<N> UnwindSafe for GenTreeJob<N>where
N: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more