[][src]Struct debugserver_types::EvaluateArguments

pub struct EvaluateArguments {
    pub context: Option<String>,
    pub expression: String,
    pub format: Option<ValueFormat>,
    pub frame_id: Option<i64>,
}

Arguments for 'evaluate' request.

Fields

context: Option<String>

The context in which the evaluate request is run.

expression: String

The expression to evaluate.

format: Option<ValueFormat>

Specifies details on how to format the Evaluate result.

frame_id: Option<i64>

Evaluate the expression in the scope of this stack frame. If not specified, the expression is evaluated in the global scope.

Trait Implementations

impl PartialEq<EvaluateArguments> for EvaluateArguments[src]

impl Clone for EvaluateArguments[src]

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

Performs copy-assignment from source. Read more

impl Debug for EvaluateArguments[src]

impl Serialize for EvaluateArguments[src]

impl<'de> Deserialize<'de> for EvaluateArguments[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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for 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]