pub struct StackFrameFormat {
pub hex: Option<bool>,
pub include_all: Option<bool>,
pub line: Option<bool>,
pub module: Option<bool>,
pub parameter_names: Option<bool>,
pub parameter_types: Option<bool>,
pub parameter_values: Option<bool>,
pub parameters: Option<bool>,
}
Fields§
§hex: Option<bool>
Display the value in hex.
include_all: Option<bool>
Includes all stack frames, including those the debug adapter might otherwise hide.
line: Option<bool>
Displays the line number of the stack frame.
module: Option<bool>
Displays the module of the stack frame.
parameter_names: Option<bool>
Displays the names of parameters for the stack frame.
parameter_types: Option<bool>
Displays the types of parameters for the stack frame.
parameter_values: Option<bool>
Displays the values of parameters for the stack frame.
parameters: Option<bool>
Displays parameters for the stack frame.
Trait Implementations§
Source§impl Clone for StackFrameFormat
impl Clone for StackFrameFormat
Source§fn clone(&self) -> StackFrameFormat
fn clone(&self) -> StackFrameFormat
Returns a copy 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 Default for StackFrameFormat
impl Default for StackFrameFormat
Source§fn default() -> StackFrameFormat
fn default() -> StackFrameFormat
Returns the “default value” for a type. Read more
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
Source§impl PartialEq for StackFrameFormat
impl PartialEq for StackFrameFormat
Source§impl Serialize for StackFrameFormat
impl Serialize for StackFrameFormat
impl StructuralPartialEq for StackFrameFormat
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