pub struct KillShellInput {
pub shell_id: String,
}Expand description
Input for the KillShell tool - kills a running background shell.
Fields§
§shell_id: StringThe ID of the background shell to kill
Trait Implementations§
Source§impl Clone for KillShellInput
impl Clone for KillShellInput
Source§fn clone(&self) -> KillShellInput
fn clone(&self) -> KillShellInput
Returns a duplicate 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 KillShellInput
impl Debug for KillShellInput
Source§impl<'de> Deserialize<'de> for KillShellInput
impl<'de> Deserialize<'de> for KillShellInput
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 KillShellInput
impl PartialEq for KillShellInput
Source§impl Serialize for KillShellInput
impl Serialize for KillShellInput
impl StructuralPartialEq for KillShellInput
Auto Trait Implementations§
impl Freeze for KillShellInput
impl RefUnwindSafe for KillShellInput
impl Send for KillShellInput
impl Sync for KillShellInput
impl Unpin for KillShellInput
impl UnsafeUnpin for KillShellInput
impl UnwindSafe for KillShellInput
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