[][src]Struct debugserver_types::OutputEventBody

pub struct OutputEventBody {
    pub category: Option<String>,
    pub column: Option<i64>,
    pub data: Option<Value>,
    pub line: Option<i64>,
    pub output: String,
    pub source: Option<Source>,
    pub variables_reference: Option<f64>,
}

Fields

category: Option<String>

The output category. If not specified, 'console' is assumed.

column: Option<i64>

An optional source location column where the output was produced.

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.

line: Option<i64>

An optional source location line where the output was produced.

output: String

The output to report.

source: Option<Source>

An optional source location where the output was produced.

variables_reference: Option<f64>

If an attribute 'variablesReference' exists and its value is > 0, the output contains objects which can be retrieved by passing 'variablesReference' to the 'variables' request.

Trait Implementations

impl PartialEq<OutputEventBody> for OutputEventBody[src]

impl Clone for OutputEventBody[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for OutputEventBody[src]

impl Serialize for OutputEventBody[src]

impl<'de> Deserialize<'de> for OutputEventBody[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]