Struct debugserver_types::StoppedEventBody [] [src]

pub struct StoppedEventBody {
    pub all_threads_stopped: Option<bool>,
    pub reason: String,
    pub text: Option<String>,
    pub thread_id: Option<i64>,
}

Fields

If allThreadsStopped is true, a debug adapter can announce that all threads have stopped. * The client should use this information to enable that all threads can be expanded to access their stacktraces. * If the attribute is missing or false, only the thread with the given threadId can be expanded.

The reason for the event (such as: 'step', 'breakpoint', 'exception', 'pause'). This string is shown in the UI.

Additional information. E.g. if reason is 'exception', text contains the exception name. This string is shown in the UI.

The thread which was stopped.

Trait Implementations

impl Clone for StoppedEventBody
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

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

[src]

Formats the value using the given formatter.