pub struct MessageMutation {
pub transaction: TransactionIdentity,
pub message_id: Option<InlineId>,
pub state: Option<TransactionState>,
pub failure: Option<ClientFailure>,
}Expand description
A message mutation acknowledgement.
Fields§
§transaction: TransactionIdentityTransaction identity for reconciliation.
message_id: Option<InlineId>Final message ID, when already known.
state: Option<TransactionState>Durable transaction state after this send attempt.
failure: Option<ClientFailure>Redacted terminal or retryable failure details, when present.
Trait Implementations§
Source§impl Clone for MessageMutation
impl Clone for MessageMutation
Source§fn clone(&self) -> MessageMutation
fn clone(&self) -> MessageMutation
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 MessageMutation
impl Debug for MessageMutation
Source§impl<'de> Deserialize<'de> for MessageMutation
impl<'de> Deserialize<'de> for MessageMutation
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 MessageMutation
Source§impl PartialEq for MessageMutation
impl PartialEq for MessageMutation
Source§impl Serialize for MessageMutation
impl Serialize for MessageMutation
impl StructuralPartialEq for MessageMutation
Auto Trait Implementations§
impl Freeze for MessageMutation
impl RefUnwindSafe for MessageMutation
impl Send for MessageMutation
impl Sync for MessageMutation
impl Unpin for MessageMutation
impl UnsafeUnpin for MessageMutation
impl UnwindSafe for MessageMutation
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