Struct debugserver_types::OutputEventBody [] [src]

pub struct OutputEventBody {
    pub category: Option<String>,
    pub data: Option<Value>,
    pub output: String,
}

Fields

The category of output (such as: 'console', 'stdout', 'stderr', 'telemetry'). If not specified, 'console' is assumed.

Optional data to report. For the 'telemetry' category the data will be sent to telemetry, for the other categories the data is shown in JSON format.

The output to report.

Trait Implementations

impl Clone for OutputEventBody
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for OutputEventBody
[src]

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

This method tests for !=.

impl Debug for OutputEventBody
[src]

Formats the value using the given formatter.