pub struct CommandsChangedData {
pub commands: Vec<CommandsChangedCommand>,
}Expand description
Session event “commands.changed”. SDK command registration change notification
Fields§
§commands: Vec<CommandsChangedCommand>Current list of registered SDK commands
Trait Implementations§
Source§impl Clone for CommandsChangedData
impl Clone for CommandsChangedData
Source§fn clone(&self) -> CommandsChangedData
fn clone(&self) -> CommandsChangedData
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 CommandsChangedData
impl Debug for CommandsChangedData
Source§impl Default for CommandsChangedData
impl Default for CommandsChangedData
Source§fn default() -> CommandsChangedData
fn default() -> CommandsChangedData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CommandsChangedData
impl<'de> Deserialize<'de> for CommandsChangedData
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
Auto Trait Implementations§
impl Freeze for CommandsChangedData
impl RefUnwindSafe for CommandsChangedData
impl Send for CommandsChangedData
impl Sync for CommandsChangedData
impl Unpin for CommandsChangedData
impl UnsafeUnpin for CommandsChangedData
impl UnwindSafe for CommandsChangedData
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