pub struct SBExpressionOptions {
pub raw: SBExpressionOptionsRef,
}Fields§
§raw: SBExpressionOptionsRefThe underlying raw SBExpressionOptionsRef.
Implementations§
Source§impl SBExpressionOptions
impl SBExpressionOptions
Sourcepub fn new() -> SBExpressionOptions
pub fn new() -> SBExpressionOptions
Construct a new SBExpressionOptions.
Sourcepub fn unwind_on_error(&self) -> bool
pub fn unwind_on_error(&self) -> bool
Whether to unwind the expression stack on error.
Sourcepub fn set_unwind_on_error(&self, unwind: bool)
pub fn set_unwind_on_error(&self, unwind: bool)
Whether to unwind the expression stack on error.
Sourcepub fn ignore_breakpoints(&self) -> bool
pub fn ignore_breakpoints(&self) -> bool
Whether to ignore breakpoint hits while running expressions.
Sourcepub fn set_ignore_breakpoints(&self, ignore: bool)
pub fn set_ignore_breakpoints(&self, ignore: bool)
Whether to ignore breakpoint hits while running expressions.
Trait Implementations§
Source§impl Clone for SBExpressionOptions
impl Clone for SBExpressionOptions
Source§fn clone(&self) -> SBExpressionOptions
fn clone(&self) -> SBExpressionOptions
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 SBExpressionOptions
impl Debug for SBExpressionOptions
Source§impl Default for SBExpressionOptions
impl Default for SBExpressionOptions
Source§impl Drop for SBExpressionOptions
impl Drop for SBExpressionOptions
impl Send for SBExpressionOptions
impl Sync for SBExpressionOptions
Auto Trait Implementations§
impl Freeze for SBExpressionOptions
impl RefUnwindSafe for SBExpressionOptions
impl Unpin for SBExpressionOptions
impl UnwindSafe for SBExpressionOptions
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