pub struct ExecuteCommandOptions {
pub work_done_progress_options_mixin: WorkDoneProgressOptions,
pub commands: Vec<String>,
}Expand description
The server capabilities of a {@link ExecuteCommandRequest}.
Fields§
§work_done_progress_options_mixin: WorkDoneProgressOptions§commands: Vec<String>The commands to be executed on the server
Trait Implementations§
Source§impl Clone for ExecuteCommandOptions
impl Clone for ExecuteCommandOptions
Source§fn clone(&self) -> ExecuteCommandOptions
fn clone(&self) -> ExecuteCommandOptions
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 ExecuteCommandOptions
impl Debug for ExecuteCommandOptions
Source§impl<'de> Deserialize<'de> for ExecuteCommandOptions
impl<'de> Deserialize<'de> for ExecuteCommandOptions
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 ExecuteCommandOptions
impl PartialEq for ExecuteCommandOptions
Source§fn eq(&self, other: &ExecuteCommandOptions) -> bool
fn eq(&self, other: &ExecuteCommandOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ExecuteCommandOptions
impl Serialize for ExecuteCommandOptions
impl StructuralPartialEq for ExecuteCommandOptions
Auto Trait Implementations§
impl Freeze for ExecuteCommandOptions
impl RefUnwindSafe for ExecuteCommandOptions
impl Send for ExecuteCommandOptions
impl Sync for ExecuteCommandOptions
impl Unpin for ExecuteCommandOptions
impl UnsafeUnpin for ExecuteCommandOptions
impl UnwindSafe for ExecuteCommandOptions
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