Struct lldb::SBInstructionList
[−]
[src]
pub struct SBInstructionList { pub raw: SBInstructionListRef, }
A list of machine instructions.
Fields
raw: SBInstructionListRef
The underlying raw SBInstructionListRef
.
Methods
impl SBInstructionList
[src]
fn wrap(raw: SBInstructionListRef) -> SBInstructionList
[src]
Construct a new SBInstructionList
.
fn maybe_wrap(raw: SBInstructionListRef) -> Option<SBInstructionList>
[src]
Construct a new Some(SBInstructionList)
or None
.
fn is_valid(&self) -> bool
[src]
Check whether or not this is a valid SBInstructionList
value.
fn is_empty(&self) -> bool
[src]
Is this instruction list empty?
fn clear(&self)
[src]
Clear this instruction list.
fn append_instruction(&self, instruction: SBInstruction)
[src]
Append an instruction to this list.
fn iter(&self) -> SBInstructionListIter
[src]
Iterate over this instruction list.