[][src]Struct debugserver_types::ProcessEventBody

pub struct ProcessEventBody {
    pub is_local_process: Option<bool>,
    pub name: String,
    pub start_method: Option<String>,
    pub system_process_id: Option<i64>,
}

Fields

is_local_process: Option<bool>

If true, the process is running on the same computer as the debug adapter.

name: String

The logical name of the process. This is usually the full path to process's executable file. Example: /home/example/myproj/program.js.

start_method: Option<String>

Describes how the debug engine started debugging this process.

system_process_id: Option<i64>

The system process id of the debugged process. This property will be missing for non-system processes.

Trait Implementations

impl PartialEq<ProcessEventBody> for ProcessEventBody[src]

impl Clone for ProcessEventBody[src]

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

Performs copy-assignment from source. Read more

impl Debug for ProcessEventBody[src]

impl Serialize for ProcessEventBody[src]

impl<'de> Deserialize<'de> for ProcessEventBody[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]