Struct lldb::SBSection
[−]
[src]
pub struct SBSection { pub raw: SBSectionRef, }
Fields
raw: SBSectionRef
The underlying raw SBSectionRef
.
Methods
impl SBSection
[src]
fn wrap(raw: SBSectionRef) -> SBSection
[src]
Construct a new SBSection
.
fn maybe_wrap(raw: SBSectionRef) -> Option<SBSection>
[src]
Construct a new Some(SBSection)
or None
.
fn is_valid(&self) -> bool
[src]
Check whether or not this is a valid SBSection
value.
fn name(&self) -> &str
[src]
The section name.
fn parent(&self) -> Option<SBSection>
[src]
The section parent, if there is one.
fn find_subsection(&self, name: &str) -> Option<SBSection>
[src]
fn subsections(&self) -> SBSectionSubSectionIter
[src]
Get an iterator over the subsections known to this section instance.