pub struct TestInputNode { /* private fields */ }Implementations§
Source§impl TestInputNode
impl TestInputNode
pub fn with_data(test_data: &Vec<isize>) -> TestInputNode
Trait Implementations§
Source§impl Debug for TestInputNode
impl Debug for TestInputNode
Source§impl Node for TestInputNode
impl Node for TestInputNode
Source§fn sync(&mut self, io: &mut IoBusView<'_>)
fn sync(&mut self, io: &mut IoBusView<'_>)
Synchronize reads and writes after the last instruction cycle.
Source§fn is_stalled(&self) -> bool
fn is_stalled(&self) -> bool
Determine if a node is executing assembly code or if it is stalled on a read or write.
For all nodes except nodes which can execute assembly, this should always be
true.Auto Trait Implementations§
impl Freeze for TestInputNode
impl RefUnwindSafe for TestInputNode
impl Send for TestInputNode
impl Sync for TestInputNode
impl Unpin for TestInputNode
impl UnwindSafe for TestInputNode
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