Struct debugserver_types::OutputEventBody
[−]
[src]
pub struct OutputEventBody {
pub category: Option<String>,
pub data: Option<Value>,
pub output: String,
}Fields
category: Option<String>
The category of output (such as: 'console', 'stdout', 'stderr', 'telemetry'). If not specified, 'console' is assumed.
data: Option<Value>
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.
output: String
The output to report.
Trait Implementations
impl Clone for OutputEventBody[src]
fn clone(&self) -> OutputEventBody[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl PartialEq for OutputEventBody[src]
fn eq(&self, __arg_0: &OutputEventBody) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &OutputEventBody) -> bool[src]
This method tests for !=.