Struct lsp_types::ExecuteCommandParams
source · [−]pub struct ExecuteCommandParams {
pub command: String,
pub arguments: Vec<Value>,
pub work_done_progress_params: WorkDoneProgressParams,
}
Fields
command: String
The identifier of the actual command handler.
arguments: Vec<Value>
Arguments that the command should be invoked with.
work_done_progress_params: WorkDoneProgressParams
Trait Implementations
sourceimpl Clone for ExecuteCommandParams
impl Clone for ExecuteCommandParams
sourcefn clone(&self) -> ExecuteCommandParams
fn clone(&self) -> ExecuteCommandParams
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ExecuteCommandParams
impl Debug for ExecuteCommandParams
sourceimpl Default for ExecuteCommandParams
impl Default for ExecuteCommandParams
sourcefn default() -> ExecuteCommandParams
fn default() -> ExecuteCommandParams
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for ExecuteCommandParams
impl<'de> Deserialize<'de> for ExecuteCommandParams
sourcefn 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
sourceimpl PartialEq<ExecuteCommandParams> for ExecuteCommandParams
impl PartialEq<ExecuteCommandParams> for ExecuteCommandParams
sourcefn eq(&self, other: &ExecuteCommandParams) -> bool
fn eq(&self, other: &ExecuteCommandParams) -> bool
sourceimpl Serialize for ExecuteCommandParams
impl Serialize for ExecuteCommandParams
impl StructuralPartialEq for ExecuteCommandParams
Auto Trait Implementations
impl RefUnwindSafe for ExecuteCommandParams
impl Send for ExecuteCommandParams
impl Sync for ExecuteCommandParams
impl Unpin for ExecuteCommandParams
impl UnwindSafe for ExecuteCommandParams
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more