pub struct RunInTerminalResponseBody {
pub process_id: Option<i32>,
pub shell_process_id: Option<i32>,
/* private fields */
}
Fields§
§process_id: Option<i32>
The process ID. The value should be less than or equal to 2147483647 (2^31-1).
shell_process_id: Option<i32>
The process ID of the terminal shell. The value should be less than or equal to 2147483647 (2^31-1).
Implementations§
Source§impl RunInTerminalResponseBody
impl RunInTerminalResponseBody
Sourcepub fn builder() -> RunInTerminalResponseBodyBuilder<((), ())>
pub fn builder() -> RunInTerminalResponseBodyBuilder<((), ())>
Create a builder for building RunInTerminalResponseBody
.
On the builder, call .process_id(...)
(optional), .shell_process_id(...)
(optional) to set the values of the fields.
Finally, call .build()
to create the instance of RunInTerminalResponseBody
.
Trait Implementations§
Source§impl Clone for RunInTerminalResponseBody
impl Clone for RunInTerminalResponseBody
Source§fn clone(&self) -> RunInTerminalResponseBody
fn clone(&self) -> RunInTerminalResponseBody
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RunInTerminalResponseBody
impl Debug for RunInTerminalResponseBody
Source§impl<'de> Deserialize<'de> for RunInTerminalResponseBody
impl<'de> Deserialize<'de> for RunInTerminalResponseBody
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 From<RunInTerminalResponseBody> for SuccessResponse
impl From<RunInTerminalResponseBody> for SuccessResponse
Source§fn from(args: RunInTerminalResponseBody) -> Self
fn from(args: RunInTerminalResponseBody) -> Self
Converts to this type from the input type.
Source§impl PartialEq for RunInTerminalResponseBody
impl PartialEq for RunInTerminalResponseBody
Source§fn eq(&self, other: &RunInTerminalResponseBody) -> bool
fn eq(&self, other: &RunInTerminalResponseBody) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for RunInTerminalResponseBody
impl StructuralPartialEq for RunInTerminalResponseBody
Auto Trait Implementations§
impl Freeze for RunInTerminalResponseBody
impl RefUnwindSafe for RunInTerminalResponseBody
impl Send for RunInTerminalResponseBody
impl Sync for RunInTerminalResponseBody
impl Unpin for RunInTerminalResponseBody
impl UnwindSafe for RunInTerminalResponseBody
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.