[][src]Struct debugserver_types::Capabilities

pub struct Capabilities {
    pub additional_module_columns: Option<Vec<ColumnDescriptor>>,
    pub exception_breakpoint_filters: Option<Vec<ExceptionBreakpointsFilter>>,
    pub support_terminate_debuggee: Option<bool>,
    pub supported_checksum_algorithms: Option<Vec<ChecksumAlgorithm>>,
    pub supports_completions_request: Option<bool>,
    pub supports_conditional_breakpoints: Option<bool>,
    pub supports_configuration_done_request: Option<bool>,
    pub supports_data_breakpoints: Option<bool>,
    pub supports_delayed_stack_trace_loading: Option<bool>,
    pub supports_evaluate_for_hovers: Option<bool>,
    pub supports_exception_info_request: Option<bool>,
    pub supports_exception_options: Option<bool>,
    pub supports_function_breakpoints: Option<bool>,
    pub supports_goto_targets_request: Option<bool>,
    pub supports_hit_conditional_breakpoints: Option<bool>,
    pub supports_loaded_sources_request: Option<bool>,
    pub supports_log_points: Option<bool>,
    pub supports_modules_request: Option<bool>,
    pub supports_restart_frame: Option<bool>,
    pub supports_restart_request: Option<bool>,
    pub supports_set_expression: Option<bool>,
    pub supports_set_variable: Option<bool>,
    pub supports_step_back: Option<bool>,
    pub supports_step_in_targets_request: Option<bool>,
    pub supports_terminate_request: Option<bool>,
    pub supports_terminate_threads_request: Option<bool>,
    pub supports_value_formatting_options: Option<bool>,
}

Information about the capabilities of a debug adapter.

Fields

additional_module_columns: Option<Vec<ColumnDescriptor>>

The set of additional module information exposed by the debug adapter.

exception_breakpoint_filters: Option<Vec<ExceptionBreakpointsFilter>>

Available filters or options for the setExceptionBreakpoints request.

support_terminate_debuggee: Option<bool>

The debug adapter supports the 'terminateDebuggee' attribute on the 'disconnect' request.

supported_checksum_algorithms: Option<Vec<ChecksumAlgorithm>>

Checksum algorithms supported by the debug adapter.

supports_completions_request: Option<bool>

The debug adapter supports the 'completions' request.

supports_conditional_breakpoints: Option<bool>

The debug adapter supports conditional breakpoints.

supports_configuration_done_request: Option<bool>

The debug adapter supports the 'configurationDone' request.

supports_data_breakpoints: Option<bool>

The debug adapter supports data breakpoints.

supports_delayed_stack_trace_loading: Option<bool>

The debug adapter supports the delayed loading of parts of the stack, which requires that both the 'startFrame' and 'levels' arguments and the 'totalFrames' result of the 'StackTrace' request are supported.

supports_evaluate_for_hovers: Option<bool>

The debug adapter supports a (side effect free) evaluate request for data hovers.

supports_exception_info_request: Option<bool>

The debug adapter supports the 'exceptionInfo' request.

supports_exception_options: Option<bool>

The debug adapter supports 'exceptionOptions' on the setExceptionBreakpoints request.

supports_function_breakpoints: Option<bool>

The debug adapter supports function breakpoints.

supports_goto_targets_request: Option<bool>

The debug adapter supports the 'gotoTargets' request.

supports_hit_conditional_breakpoints: Option<bool>

The debug adapter supports breakpoints that break execution after a specified number of hits.

supports_loaded_sources_request: Option<bool>

The debug adapter supports the 'loadedSources' request.

supports_log_points: Option<bool>

The debug adapter supports logpoints by interpreting the 'logMessage' attribute of the SourceBreakpoint.

supports_modules_request: Option<bool>

The debug adapter supports the 'modules' request.

supports_restart_frame: Option<bool>

The debug adapter supports restarting a frame.

supports_restart_request: Option<bool>

The debug adapter supports the 'restart' request. In this case a client should not implement 'restart' by terminating and relaunching the adapter but by calling the RestartRequest.

supports_set_expression: Option<bool>

The debug adapter supports the 'setExpression' request.

supports_set_variable: Option<bool>

The debug adapter supports setting a variable to a value.

supports_step_back: Option<bool>

The debug adapter supports stepping back via the 'stepBack' and 'reverseContinue' requests.

supports_step_in_targets_request: Option<bool>

The debug adapter supports the 'stepInTargets' request.

supports_terminate_request: Option<bool>

The debug adapter supports the 'terminate' request.

supports_terminate_threads_request: Option<bool>

The debug adapter supports the 'terminateThreads' request.

supports_value_formatting_options: Option<bool>

The debug adapter supports a 'format' attribute on the stackTraceRequest, variablesRequest, and evaluateRequest.

Trait Implementations

impl PartialEq<Capabilities> for Capabilities[src]

impl Default for Capabilities[src]

impl Clone for Capabilities[src]

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

Performs copy-assignment from source. Read more

impl Debug for Capabilities[src]

impl Serialize for Capabilities[src]

impl<'de> Deserialize<'de> for Capabilities[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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for 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]