Struct debugserver_types::CompletionsArguments [] [src]

pub struct CompletionsArguments {
    pub column: i64,
    pub frame_id: Option<i64>,
    pub line: Option<i64>,
    pub text: String,
}

Arguments for 'completions' request.

Fields

The character position for which to determine the completion proposals.

Returns completions in the scope of this stack frame. If not specified, the completions are returned for the global scope.

An optional line for which to determine the completion proposals. If missing the first line of the text is assumed.

One or more source lines. Typically this is the text a user has typed into the debug console before he asked for completion.

Trait Implementations

impl Clone for CompletionsArguments
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for CompletionsArguments
[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 CompletionsArguments
[src]

[src]

Formats the value using the given formatter.