pub struct ProcessMessagingRecipeBundle<TCommand, TEvent> {
pub delivered_commands: Node<ProcessDeliveredCommand<TCommand>>,
pub commands: Node<ProcessCommand<TCommand>>,
pub ack_commands: Node<MessageBusCommand<TCommand>>,
pub outbox_commands: Option<Node<MessageBusCommand<ProcessEvent<TEvent>>>>,
pub issues: Node<DataIssue>,
}Expand description
ProcessMessagingRecipeBundle data container.
Fields§
§delivered_commands: Node<ProcessDeliveredCommand<TCommand>>delivered_commands field for delivered commands.
commands: Node<ProcessCommand<TCommand>>commands field for commands.
ack_commands: Node<MessageBusCommand<TCommand>>ack_commands field for ack commands.
outbox_commands: Option<Node<MessageBusCommand<ProcessEvent<TEvent>>>>outbox_commands field for outbox commands.
issues: Node<DataIssue>issues field for issues.
Trait Implementations§
Source§impl<TCommand: Clone, TEvent: Clone> Clone for ProcessMessagingRecipeBundle<TCommand, TEvent>
impl<TCommand: Clone, TEvent: Clone> Clone for ProcessMessagingRecipeBundle<TCommand, TEvent>
Source§fn clone(&self) -> ProcessMessagingRecipeBundle<TCommand, TEvent>
fn clone(&self) -> ProcessMessagingRecipeBundle<TCommand, TEvent>
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 moreAuto Trait Implementations§
impl<TCommand, TEvent> Freeze for ProcessMessagingRecipeBundle<TCommand, TEvent>
impl<TCommand, TEvent> !RefUnwindSafe for ProcessMessagingRecipeBundle<TCommand, TEvent>
impl<TCommand, TEvent> !Send for ProcessMessagingRecipeBundle<TCommand, TEvent>
impl<TCommand, TEvent> !Sync for ProcessMessagingRecipeBundle<TCommand, TEvent>
impl<TCommand, TEvent> Unpin for ProcessMessagingRecipeBundle<TCommand, TEvent>
impl<TCommand, TEvent> UnsafeUnpin for ProcessMessagingRecipeBundle<TCommand, TEvent>
impl<TCommand, TEvent> !UnwindSafe for ProcessMessagingRecipeBundle<TCommand, TEvent>
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