Struct lldb::SBBreakpointLocation
[−]
[src]
pub struct SBBreakpointLocation { pub raw: SBBreakpointLocationRef, }
One unique instance (by address) of a logical breakpoint.
A breakpoint location is defined by the breakpoint that produces it, and the address that resulted in this particular instantiation. Each breakpoint location has its settable options.
SBBreakpoint
contains SBBreakpointLocation
(s).
See SBBreakpoint
for retrieval of an SBBreakpointLocation
from an SBBreakpoint
.
Fields
raw: SBBreakpointLocationRef
The underlying raw SBBreakpointLocationRef
.
Methods
impl SBBreakpointLocation
[src]
fn wrap(raw: SBBreakpointLocationRef) -> SBBreakpointLocation
[src]
Construct a new SBBreakpointLocation
.
fn maybe_wrap(raw: SBBreakpointLocationRef) -> Option<SBBreakpointLocation>
[src]
Construct a new Some(SBBreakpointLocation)
or None
.
fn is_valid(&self) -> bool
[src]
Check whether or not this is a valid SBBreakpointLocation
value.