pub struct SBValueList {
pub raw: SBValueListRef,
}Expand description
A list of values.
Fields§
§raw: SBValueListRefThe underlying raw SBValueListRef.
Implementations§
Source§impl SBValueList
impl SBValueList
pub fn append(&self, value: &SBValue)
pub fn append_list(&self, values: &SBValueList)
pub fn find_value_by_uid(&self, uid: lldb_user_id_t) -> Option<SBValue>
pub fn get_first_value_by_name(&self, name: &str) -> Option<SBValue>
Sourcepub fn iter(&self) -> SBValueListIter<'_> ⓘ
pub fn iter(&self) -> SBValueListIter<'_> ⓘ
Iterate over this value list.
Trait Implementations§
Source§impl Clone for SBValueList
impl Clone for SBValueList
Source§fn clone(&self) -> SBValueList
fn clone(&self) -> SBValueList
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SBValueList
impl Debug for SBValueList
Source§impl Drop for SBValueList
impl Drop for SBValueList
Source§impl<'d> IntoIterator for &'d SBValueList
impl<'d> IntoIterator for &'d SBValueList
impl Send for SBValueList
impl Sync for SBValueList
Auto Trait Implementations§
impl Freeze for SBValueList
impl RefUnwindSafe for SBValueList
impl Unpin for SBValueList
impl UnwindSafe for SBValueList
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more