[][src]Struct debugserver_types::StackFrameFormat

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

impl PartialEq<StackFrameFormat> for StackFrameFormat[src]

impl Default for StackFrameFormat[src]

impl Clone for StackFrameFormat[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for StackFrameFormat[src]

impl Serialize for StackFrameFormat[src]

impl<'de> Deserialize<'de> for StackFrameFormat[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]