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§
Source§impl Clone for ProcessEventBody
impl Clone for ProcessEventBody
Source§fn clone(&self) -> ProcessEventBody
fn clone(&self) -> ProcessEventBody
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ProcessEventBody
impl Debug for ProcessEventBody
Source§impl<'de> Deserialize<'de> for ProcessEventBody
impl<'de> Deserialize<'de> for ProcessEventBody
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ProcessEventBody
impl PartialEq for ProcessEventBody
Source§impl Serialize for ProcessEventBody
impl Serialize for ProcessEventBody
impl StructuralPartialEq for ProcessEventBody
Auto Trait Implementations§
impl Freeze for ProcessEventBody
impl RefUnwindSafe for ProcessEventBody
impl Send for ProcessEventBody
impl Sync for ProcessEventBody
impl Unpin for ProcessEventBody
impl UnwindSafe for ProcessEventBody
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more