Struct cargo_tarpaulin::breakpoint::Breakpoint [] [src]

pub struct Breakpoint {
    pub pc: u64,
    // some fields omitted
}

Breakpoint construct used to monitor program execution. As tarpaulin is an automated process, this will likely have less functionality than most breakpoint implementations.

Fields

Program counter

Methods

impl Breakpoint
[src]

[src]

Creates a new breakpoint for the given process and program counter.

[src]

Attaches the current breakpoint.

[src]

Processes the breakpoint. This steps over the breakpoint

[src]

Call this when a ptrace thread is killed. Won't reenable the breakpoint so may lose the ability to instrument this line.

Trait Implementations

impl Debug for Breakpoint
[src]

[src]

Formats the value using the given formatter.