pub struct ExecuteCommandRegistrationOptions {
pub commands: Vec<String>,
pub execute_command_options: ExecuteCommandOptions,
}
Expand description
Execute command registration options.
Fields
commands: Vec<String>
The commands to be executed on the server
execute_command_options: ExecuteCommandOptions
Trait Implementations
sourceimpl Clone for ExecuteCommandRegistrationOptions
impl Clone for ExecuteCommandRegistrationOptions
sourcefn clone(&self) -> ExecuteCommandRegistrationOptions
fn clone(&self) -> ExecuteCommandRegistrationOptions
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<'de> Deserialize<'de> for ExecuteCommandRegistrationOptions
impl<'de> Deserialize<'de> for ExecuteCommandRegistrationOptions
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<ExecuteCommandRegistrationOptions> for ExecuteCommandRegistrationOptions
impl PartialEq<ExecuteCommandRegistrationOptions> for ExecuteCommandRegistrationOptions
sourcefn eq(&self, other: &ExecuteCommandRegistrationOptions) -> bool
fn eq(&self, other: &ExecuteCommandRegistrationOptions) -> bool
impl Eq for ExecuteCommandRegistrationOptions
impl StructuralEq for ExecuteCommandRegistrationOptions
impl StructuralPartialEq for ExecuteCommandRegistrationOptions
Auto Trait Implementations
impl RefUnwindSafe for ExecuteCommandRegistrationOptions
impl Send for ExecuteCommandRegistrationOptions
impl Sync for ExecuteCommandRegistrationOptions
impl Unpin for ExecuteCommandRegistrationOptions
impl UnwindSafe for ExecuteCommandRegistrationOptions
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