pub struct CommandDef {
pub id: String,
pub description: Option<String>,
pub schema: Option<CommandSchema>,
}Expand description
Description of a command as advertised across a channel.
Mirrors CommandDefinitionBaseSchema in the TypeScript protocol.
Fields§
§id: String§description: Option<String>§schema: Option<CommandSchema>Trait Implementations§
Source§impl Clone for CommandDef
impl Clone for CommandDef
Source§fn clone(&self) -> CommandDef
fn clone(&self) -> CommandDef
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CommandDef
impl Debug for CommandDef
Source§impl<'de> Deserialize<'de> for CommandDef
impl<'de> Deserialize<'de> for CommandDef
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 CommandDef
impl PartialEq for CommandDef
Source§fn eq(&self, other: &CommandDef) -> bool
fn eq(&self, other: &CommandDef) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CommandDef
impl Serialize for CommandDef
impl StructuralPartialEq for CommandDef
Auto Trait Implementations§
impl Freeze for CommandDef
impl RefUnwindSafe for CommandDef
impl Send for CommandDef
impl Sync for CommandDef
impl Unpin for CommandDef
impl UnsafeUnpin for CommandDef
impl UnwindSafe for CommandDef
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