pub struct StderrTracker { /* private fields */ }Expand description
Tracker that just outputs all its activity to stderr.
Implementations§
Source§impl StderrTracker
impl StderrTracker
Sourcepub fn new() -> Self
pub fn new() -> Self
Constructs a new empty StderrTracker, ready for use.
Trait Implementations§
Source§impl Clone for StderrTracker
impl Clone for StderrTracker
Source§fn clone(&self) -> StderrTracker
fn clone(&self) -> StderrTracker
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for StderrTracker
impl Debug for StderrTracker
Source§impl Default for StderrTracker
impl Default for StderrTracker
Source§fn default() -> StderrTracker
fn default() -> StderrTracker
Returns the “default value” for a type. Read more
Source§impl<J: Jet> ExecTracker<J> for StderrTracker
impl<J: Jet> ExecTracker<J> for StderrTracker
Source§fn visit_node(
&mut self,
node: &RedeemNode<J>,
input: FrameIter<'_>,
output: NodeOutput<'_>,
)
fn visit_node( &mut self, node: &RedeemNode<J>, input: FrameIter<'_>, output: NodeOutput<'_>, )
Called immediately after a specific node of the program is executed, but before
its children are executed. Read more
Source§impl<J: Jet> PruneTracker<J> for StderrTracker
impl<J: Jet> PruneTracker<J> for StderrTracker
Source§fn contains_left(&self, ihr: Ihr) -> bool
fn contains_left(&self, ihr: Ihr) -> bool
Returns true if the left branch of the of the
Case node with the IHR ihr was taken.Source§fn contains_right(&self, ihr: Ihr) -> bool
fn contains_right(&self, ihr: Ihr) -> bool
Returns true if the right branch of the of the
Case node with the IHR ihr was taken.Auto Trait Implementations§
impl Freeze for StderrTracker
impl RefUnwindSafe for StderrTracker
impl Send for StderrTracker
impl Sync for StderrTracker
impl Unpin for StderrTracker
impl UnwindSafe for StderrTracker
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