pub struct CqrsDeliveredCommand<TCommand> {
pub command: CqrsCommand<TCommand>,
pub delivery: MessageBusDelivery,
}Expand description
CqrsDeliveredCommand data container.
Fields§
§command: CqrsCommand<TCommand>command field for command.
delivery: MessageBusDeliverydelivery field for delivery.
Trait Implementations§
Source§impl<TCommand: Clone> Clone for CqrsDeliveredCommand<TCommand>
impl<TCommand: Clone> Clone for CqrsDeliveredCommand<TCommand>
Source§fn clone(&self) -> CqrsDeliveredCommand<TCommand>
fn clone(&self) -> CqrsDeliveredCommand<TCommand>
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<TCommand: Debug> Debug for CqrsDeliveredCommand<TCommand>
impl<TCommand: Debug> Debug for CqrsDeliveredCommand<TCommand>
Source§impl<TCommand: PartialEq> PartialEq for CqrsDeliveredCommand<TCommand>
impl<TCommand: PartialEq> PartialEq for CqrsDeliveredCommand<TCommand>
Source§fn eq(&self, other: &CqrsDeliveredCommand<TCommand>) -> bool
fn eq(&self, other: &CqrsDeliveredCommand<TCommand>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<TCommand> StructuralPartialEq for CqrsDeliveredCommand<TCommand>
Auto Trait Implementations§
impl<TCommand> Freeze for CqrsDeliveredCommand<TCommand>where
TCommand: Freeze,
impl<TCommand> RefUnwindSafe for CqrsDeliveredCommand<TCommand>where
TCommand: RefUnwindSafe,
impl<TCommand> Send for CqrsDeliveredCommand<TCommand>where
TCommand: Send,
impl<TCommand> Sync for CqrsDeliveredCommand<TCommand>where
TCommand: Sync,
impl<TCommand> Unpin for CqrsDeliveredCommand<TCommand>where
TCommand: Unpin,
impl<TCommand> UnsafeUnpin for CqrsDeliveredCommand<TCommand>where
TCommand: UnsafeUnpin,
impl<TCommand> UnwindSafe for CqrsDeliveredCommand<TCommand>where
TCommand: UnwindSafe,
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