pub struct TestOutputNode { /* private fields */ }Implementations§
Source§impl TestOutputNode
impl TestOutputNode
pub fn with_data(test_data: &Vec<isize>) -> TestOutputNode
Trait Implementations§
Source§impl Debug for TestOutputNode
impl Debug for TestOutputNode
Source§impl Node for TestOutputNode
impl Node for TestOutputNode
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 TestOutputNode
impl RefUnwindSafe for TestOutputNode
impl Send for TestOutputNode
impl Sync for TestOutputNode
impl Unpin for TestOutputNode
impl UnwindSafe for TestOutputNode
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