pub struct StackFrameFormat {
pub hex: Option<bool>,
pub parameters: Option<bool>,
pub parameter_types: Option<bool>,
pub parameter_names: Option<bool>,
pub parameter_values: Option<bool>,
pub line: Option<bool>,
pub module: Option<bool>,
pub include_all: Option<bool>,
}
Expand description
Provides formatting information for a stack frame.
Fields§
§hex: Option<bool>
Display the value in hex.
parameters: Option<bool>
Displays parameters for the stack frame.
parameter_types: Option<bool>
Displays the types of parameters for the stack frame.
parameter_names: Option<bool>
Displays the names of parameters for the stack frame.
parameter_values: Option<bool>
Displays the values of parameters for the stack frame.
line: Option<bool>
Displays the line number of the stack frame.
module: Option<bool>
Displays the module of the stack frame.
include_all: Option<bool>
Includes all stack frames, including those the debug adapter might otherwise hide.
Trait Implementations§
Source§impl Clone for StackFrameFormat
impl Clone for StackFrameFormat
Source§fn clone(&self) -> StackFrameFormat
fn clone(&self) -> StackFrameFormat
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 StackFrameFormat
impl Debug for StackFrameFormat
Source§impl<'de> Deserialize<'de> for StackFrameFormat
impl<'de> Deserialize<'de> for StackFrameFormat
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for StackFrameFormat
impl RefUnwindSafe for StackFrameFormat
impl Send for StackFrameFormat
impl Sync for StackFrameFormat
impl Unpin for StackFrameFormat
impl UnwindSafe for StackFrameFormat
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