pub struct SupportedCommandResult {
pub command_name: String,
pub input_arg_names: Vec<String>,
pub output_arg_names: Vec<String>,
pub command_type: CmdType,
}Fields§
§command_name: String§input_arg_names: Vec<String>§output_arg_names: Vec<String>§command_type: CmdTypeTrait Implementations§
Source§impl Clone for SupportedCommandResult
impl Clone for SupportedCommandResult
Source§fn clone(&self) -> SupportedCommandResult
fn clone(&self) -> SupportedCommandResult
Returns a duplicate of the value. Read more
1.0.0 · 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 SupportedCommandResult
impl Debug for SupportedCommandResult
Source§impl Default for SupportedCommandResult
impl Default for SupportedCommandResult
Source§fn default() -> SupportedCommandResult
fn default() -> SupportedCommandResult
Returns the “default value” for a type. Read more
Source§impl<'a> MessageRead<'a> for SupportedCommandResult
impl<'a> MessageRead<'a> for SupportedCommandResult
Source§fn from_reader(r: &mut BytesReader, bytes: &'a [u8]) -> Result<Self>
fn from_reader(r: &mut BytesReader, bytes: &'a [u8]) -> Result<Self>
Constructs an instance of
Self by reading from the given bytes
via the given reader. Read moreSource§impl MessageWrite for SupportedCommandResult
impl MessageWrite for SupportedCommandResult
Source§impl PartialEq for SupportedCommandResult
impl PartialEq for SupportedCommandResult
Source§impl Serialize for SupportedCommandResult
impl Serialize for SupportedCommandResult
impl StructuralPartialEq for SupportedCommandResult
Auto Trait Implementations§
impl Freeze for SupportedCommandResult
impl RefUnwindSafe for SupportedCommandResult
impl Send for SupportedCommandResult
impl Sync for SupportedCommandResult
impl Unpin for SupportedCommandResult
impl UnwindSafe for SupportedCommandResult
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