pub struct ExecuteCommandParams {
pub command: String,
pub arguments: Vec<Value>,
}
Fields§
§command: String
The identifier of the actual command handler.
arguments: Vec<Value>
Arguments that the command should be invoked with.
Trait Implementations§
Source§impl Debug for ExecuteCommandParams
impl Debug for ExecuteCommandParams
Source§impl<'de> Deserialize<'de> for ExecuteCommandParams
impl<'de> Deserialize<'de> for ExecuteCommandParams
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 ExecuteCommandParams
impl PartialEq for ExecuteCommandParams
Source§impl Serialize for ExecuteCommandParams
impl Serialize for ExecuteCommandParams
impl StructuralPartialEq for ExecuteCommandParams
Auto Trait Implementations§
impl Freeze for ExecuteCommandParams
impl RefUnwindSafe for ExecuteCommandParams
impl Send for ExecuteCommandParams
impl Sync for ExecuteCommandParams
impl Unpin for ExecuteCommandParams
impl UnwindSafe for ExecuteCommandParams
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