pub struct CommandResponseEvent {
pub event_name: String,
pub event_id: String,
}Expand description
Event identity returned by an accepted command.
Fields§
§event_name: StringRegistered event name.
event_id: StringUnique emitted event identity.
Trait Implementations§
Source§impl Clone for CommandResponseEvent
impl Clone for CommandResponseEvent
Source§fn clone(&self) -> CommandResponseEvent
fn clone(&self) -> CommandResponseEvent
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 CommandResponseEvent
impl Debug for CommandResponseEvent
Source§impl<'de> Deserialize<'de> for CommandResponseEvent
impl<'de> Deserialize<'de> for CommandResponseEvent
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
impl Eq for CommandResponseEvent
Source§impl PartialEq for CommandResponseEvent
impl PartialEq for CommandResponseEvent
Source§impl Serialize for CommandResponseEvent
impl Serialize for CommandResponseEvent
impl StructuralPartialEq for CommandResponseEvent
Auto Trait Implementations§
impl Freeze for CommandResponseEvent
impl RefUnwindSafe for CommandResponseEvent
impl Send for CommandResponseEvent
impl Sync for CommandResponseEvent
impl Unpin for CommandResponseEvent
impl UnsafeUnpin for CommandResponseEvent
impl UnwindSafe for CommandResponseEvent
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