pub struct CqrsMessageAckOptions<TCommand> {
pub name: String,
pub delivered_commands: Node<CqrsDeliveredCommand<TCommand>>,
pub status: Node<CqrsStatus>,
pub issues: Option<Node<DataIssue>>,
pub ack_rejected: bool,
}Expand description
CqrsMessageAckOptions data container.
Fields§
§name: Stringname field for name.
delivered_commands: Node<CqrsDeliveredCommand<TCommand>>delivered_commands field for delivered commands.
status: Node<CqrsStatus>status field for status.
issues: Option<Node<DataIssue>>issues field for issues.
ack_rejected: boolack_rejected field for ack rejected.
Auto Trait Implementations§
impl<TCommand> Freeze for CqrsMessageAckOptions<TCommand>
impl<TCommand> !RefUnwindSafe for CqrsMessageAckOptions<TCommand>
impl<TCommand> !Send for CqrsMessageAckOptions<TCommand>
impl<TCommand> !Sync for CqrsMessageAckOptions<TCommand>
impl<TCommand> Unpin for CqrsMessageAckOptions<TCommand>where
TCommand: Unpin,
impl<TCommand> UnsafeUnpin for CqrsMessageAckOptions<TCommand>
impl<TCommand> !UnwindSafe for CqrsMessageAckOptions<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