Struct lldb::SBValueList
[−]
[src]
pub struct SBValueList {
pub raw: SBValueListRef,
}A list of values.
Fields
raw: SBValueListRef
The underlying raw SBValueListRef.
Methods
impl SBValueList[src]
pub fn wrap(raw: SBValueListRef) -> SBValueList[src]
Construct a new SBValueList.
pub fn maybe_wrap(raw: SBValueListRef) -> Option<SBValueList>[src]
Construct a new Some(SBValueList) or None.
pub fn is_valid(&self) -> bool[src]
Check whether or not this is a valid SBValueList value.
pub fn append(&self, value: &SBValue)[src]
pub fn append_list(&self, values: &SBValueList)[src]
pub fn is_empty(&self) -> bool[src]
Is this value list empty?
pub fn clear(&self)[src]
Clear this value list.
pub fn find_value_by_uid(&self, uid: lldb_user_id_t) -> Option<SBValue>[src]
pub fn get_first_value_by_name(&self, name: &str) -> Option<SBValue>[src]
ⓘImportant traits for SBValueListIter<'d>pub fn iter(&self) -> SBValueListIter[src]
ⓘImportant traits for SBValueListIter<'d>
Iterate over this value list.
Trait Implementations
impl Debug for SBValueList[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more