pub struct Command {
name: String,
arguments: <List as Data>::Type,
response: <MultilineList as Data>::Type,
}Expand description
Abstract representation of a command that may be supported by an engine. Contains the name of the command as well as the argument and result type specifications.
Fields§
§name: String§arguments: <List as Data>::Type§response: <MultilineList as Data>::TypeTrait Implementations§
Auto Trait Implementations§
impl Freeze for Command
impl RefUnwindSafe for Command
impl Send for Command
impl Sync for Command
impl Unpin for Command
impl UnsafeUnpin for Command
impl UnwindSafe for Command
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