pub struct CommandAccepted {
pub kind: String,
pub command_id: String,
pub command_kind: String,
pub client_id: Option<String>,
pub extra: Map<String, Value>,
}Expand description
runtime.command.accepted — the runtime took ownership of a submitted
command (command_kind, e.g. turn.submit).
Fields§
§kind: String§command_id: String§command_kind: String§client_id: Option<String>§extra: Map<String, Value>Trait Implementations§
Source§impl Clone for CommandAccepted
impl Clone for CommandAccepted
Source§fn clone(&self) -> CommandAccepted
fn clone(&self) -> CommandAccepted
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 CommandAccepted
impl Debug for CommandAccepted
Source§impl<'de> Deserialize<'de> for CommandAccepted
impl<'de> Deserialize<'de> for CommandAccepted
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 CommandAccepted
impl PartialEq for CommandAccepted
Source§impl Serialize for CommandAccepted
impl Serialize for CommandAccepted
impl StructuralPartialEq for CommandAccepted
Auto Trait Implementations§
impl Freeze for CommandAccepted
impl RefUnwindSafe for CommandAccepted
impl Send for CommandAccepted
impl Sync for CommandAccepted
impl Unpin for CommandAccepted
impl UnsafeUnpin for CommandAccepted
impl UnwindSafe for CommandAccepted
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