pub struct DisposeTerminalParams {
pub channel: Uri,
}Expand description
Disposes a terminal and kills its process if still running.
The server dispatches root/terminalsChanged to remove the terminal from
the root terminal list.
Fields§
§channel: UriChannel URI this command targets.
Trait Implementations§
Source§impl Clone for DisposeTerminalParams
impl Clone for DisposeTerminalParams
Source§fn clone(&self) -> DisposeTerminalParams
fn clone(&self) -> DisposeTerminalParams
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 DisposeTerminalParams
impl Debug for DisposeTerminalParams
Source§impl<'de> Deserialize<'de> for DisposeTerminalParams
impl<'de> Deserialize<'de> for DisposeTerminalParams
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 DisposeTerminalParams
impl PartialEq for DisposeTerminalParams
Source§fn eq(&self, other: &DisposeTerminalParams) -> bool
fn eq(&self, other: &DisposeTerminalParams) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DisposeTerminalParams
impl Serialize for DisposeTerminalParams
impl StructuralPartialEq for DisposeTerminalParams
Auto Trait Implementations§
impl Freeze for DisposeTerminalParams
impl RefUnwindSafe for DisposeTerminalParams
impl Send for DisposeTerminalParams
impl Sync for DisposeTerminalParams
impl Unpin for DisposeTerminalParams
impl UnsafeUnpin for DisposeTerminalParams
impl UnwindSafe for DisposeTerminalParams
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