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]
pub fn wrap(raw: SBInstructionListRef) -> SBInstructionList[src]
Construct a new SBInstructionList.
pub fn maybe_wrap(raw: SBInstructionListRef) -> Option<SBInstructionList>[src]
Construct a new Some(SBInstructionList) or None.
pub fn is_valid(&self) -> bool[src]
Check whether or not this is a valid SBInstructionList value.
pub fn is_empty(&self) -> bool[src]
Is this instruction list empty?
pub fn clear(&self)[src]
Clear this instruction list.
pub fn append_instruction(&self, instruction: SBInstruction)[src]
Append an instruction to this list.
ⓘImportant traits for SBInstructionListIter<'d>pub fn iter(&self) -> SBInstructionListIter[src]
ⓘImportant traits for SBInstructionListIter<'d>
Iterate over this instruction list.
Trait Implementations
impl Debug for SBInstructionList[src]
fn fmt(&self, fmt: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more