Struct fuel_gql_client::schema::ProcessEventBody
source · [−]pub struct ProcessEventBody {
pub is_local_process: Option<bool>,
pub name: String,
pub pointer_size: Option<i64>,
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.
pointer_size: Option<i64>
The size of a pointer or address for this process, in bits. This value may be used by clients when formatting addresses for display.
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
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
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ProcessEventBody
impl Send for ProcessEventBody
impl Sync for ProcessEventBody
impl Unpin for ProcessEventBody
impl UnwindSafe for ProcessEventBody
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
pub fn vzip(self) -> V
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more