Struct debugserver_types::InitializeRequestArguments [] [src]

pub struct InitializeRequestArguments {
    pub adapter_id: String,
    pub columns_start_at_1: Option<bool>,
    pub lines_start_at_1: Option<bool>,
    pub path_format: Option<String>,
    pub supports_run_in_terminal_request: Option<bool>,
    pub supports_variable_paging: Option<bool>,
    pub supports_variable_type: Option<bool>,
}

Arguments for 'initialize' request.

Fields

The ID of the debugger adapter. Used to select or verify debugger adapter.

If true all column numbers are 1-based (default).

If true all line numbers are 1-based (default).

Determines in what format paths are specified. Possible values are 'path' or 'uri'. The default is 'path', which is the native format.

Client supports the runInTerminal request.

Client supports the paging of variables.

Client supports the optional type attribute for variables.

Trait Implementations

impl Clone for InitializeRequestArguments
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for InitializeRequestArguments
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Debug for InitializeRequestArguments
[src]

[src]

Formats the value using the given formatter.