pub struct ProcessKillParams {
pub process_handle: String,
}Expand description
Terminate a running process/spawn session.
JSON schema
{
"title": "ProcessKillParams",
"description": "Terminate a running `process/spawn` session.",
"type": "object",
"required": [
"processHandle"
],
"properties": {
"processHandle": {
"description": "Client-supplied, connection-scoped `processHandle` from `process/spawn`.",
"type": "string"
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}Fields§
§process_handle: StringClient-supplied, connection-scoped processHandle from process/spawn.
Trait Implementations§
Source§impl Clone for ProcessKillParams
impl Clone for ProcessKillParams
Source§fn clone(&self) -> ProcessKillParams
fn clone(&self) -> ProcessKillParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ProcessKillParams
impl Debug for ProcessKillParams
Source§impl<'de> Deserialize<'de> for ProcessKillParams
impl<'de> Deserialize<'de> for ProcessKillParams
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
Auto Trait Implementations§
impl Freeze for ProcessKillParams
impl RefUnwindSafe for ProcessKillParams
impl Send for ProcessKillParams
impl Sync for ProcessKillParams
impl Unpin for ProcessKillParams
impl UnsafeUnpin for ProcessKillParams
impl UnwindSafe for ProcessKillParams
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