Struct lldb::SBBreakpointList
[−]
[src]
pub struct SBBreakpointList {
pub raw: SBBreakpointListRef,
}A list of breakpoints.
Fields
raw: SBBreakpointListRef
The underlying raw SBBreakpointListRef.
Methods
impl SBBreakpointList[src]
fn new(target: &SBTarget) -> SBBreakpointList[src]
Construct a new SBBreakpointList.
fn wrap(raw: SBBreakpointListRef) -> SBBreakpointList[src]
Construct a new SBBreakpointList.
fn find_breakpoint_by_id(&self, id: i32) -> Option<SBBreakpoint>[src]
fn append(&self, bkpt: &SBBreakpoint)[src]
fn append_by_id(&self, bkpt_id: i32)[src]
fn append_if_unique(&self, bkpt: &SBBreakpoint)[src]
fn is_empty(&self) -> bool[src]
Is this breakpoint list empty?
fn clear(&self)[src]
Clear this breakpoint list.
fn iter(&self) -> SBBreakpointListIter[src]
Iterate over this breakpoint list.