pub struct CqrsWorkQueueRecipeBundle<TCommand> {
pub attempts: Node<CqrsWorkQueueAttempt<TCommand>>,
pub dispatches: Node<CqrsCommand<TCommand>>,
pub commands: Node<WorkQueueCommand<CqrsQueuedCommandPayload<TCommand>>>,
pub issues: Node<DataIssue>,
}Expand description
CqrsWorkQueueRecipeBundle data container.
Fields§
§attempts: Node<CqrsWorkQueueAttempt<TCommand>>attempts field for attempts.
dispatches: Node<CqrsCommand<TCommand>>dispatches field for dispatches.
commands: Node<WorkQueueCommand<CqrsQueuedCommandPayload<TCommand>>>commands field for commands.
issues: Node<DataIssue>issues field for issues.
Trait Implementations§
Source§impl<TCommand: Clone> Clone for CqrsWorkQueueRecipeBundle<TCommand>
impl<TCommand: Clone> Clone for CqrsWorkQueueRecipeBundle<TCommand>
Source§fn clone(&self) -> CqrsWorkQueueRecipeBundle<TCommand>
fn clone(&self) -> CqrsWorkQueueRecipeBundle<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 moreAuto Trait Implementations§
impl<TCommand> Freeze for CqrsWorkQueueRecipeBundle<TCommand>
impl<TCommand> !RefUnwindSafe for CqrsWorkQueueRecipeBundle<TCommand>
impl<TCommand> !Send for CqrsWorkQueueRecipeBundle<TCommand>
impl<TCommand> !Sync for CqrsWorkQueueRecipeBundle<TCommand>
impl<TCommand> Unpin for CqrsWorkQueueRecipeBundle<TCommand>where
TCommand: Unpin,
impl<TCommand> UnsafeUnpin for CqrsWorkQueueRecipeBundle<TCommand>
impl<TCommand> !UnwindSafe for CqrsWorkQueueRecipeBundle<TCommand>
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