Struct lldb::SBWatchpoint [] [src]

pub struct SBWatchpoint {
    pub raw: SBWatchpointRef,
}

An instance of a watch point for a specific target program.

A watchpoint is determined by the address the byte size that resulted in this particular instantiation. Each watchpoint has its own settable options.

To Hit or Not

A watchpoint has multiple ways of controlling whether or not it should be considered active.

A count of how many times a watchpoint has been it is available via hit_count.

Fields

The underlying raw SBWatchpointRef.

Methods

impl SBWatchpoint
[src]

[src]

Construct a new SBWatchpoint.

[src]

Construct a new Some(SBWatchpoint) or None.

[src]

Check whether or not this is a valid SBWatchpoint value.

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

Trait Implementations

impl Debug for SBWatchpoint
[src]

[src]

Formats the value using the given formatter.

impl Drop for SBWatchpoint
[src]

[src]

Executes the destructor for this type. Read more