Struct lldb::SBVariablesOptions
[−]
[src]
pub struct SBVariablesOptions {
pub raw: SBVariablesOptionsRef,
}Fields
raw: SBVariablesOptionsRef
The underlying raw SBVariablesOptionsRef.
Methods
impl SBVariablesOptions[src]
pub fn new() -> SBVariablesOptions[src]
Construct a new SBVariablesOptions.
pub fn wrap(raw: SBVariablesOptionsRef) -> SBVariablesOptions[src]
Construct a new SBVariablesOptions.
pub fn maybe_wrap(raw: SBVariablesOptionsRef) -> Option<SBVariablesOptions>[src]
Construct a new Some(SBVariablesOptions) or None.
pub fn is_valid(&self) -> bool[src]
Check whether or not this is a valid SBVariablesOptions value.
pub fn include_arguments(&self) -> bool[src]
pub fn set_include_arguments(&self, arguments: bool)[src]
pub fn include_locals(&self) -> bool[src]
pub fn set_include_locals(&self, locals: bool)[src]
pub fn include_statics(&self) -> bool[src]
pub fn set_include_statics(&self, statics: bool)[src]
pub fn in_scope_only(&self) -> bool[src]
pub fn set_in_scope_only(&self, in_scope_only: bool)[src]
pub fn include_runtime_support_values(&self) -> bool[src]
pub fn set_include_runtime_support_values(&self, include: bool)[src]
pub fn use_dynamic(&self) -> DynamicValueType[src]
pub fn set_use_dynamic(&self, use_dynamic: DynamicValueType)[src]
Trait Implementations
impl Debug for SBVariablesOptions[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more