pub struct AbortedTransaction {
pub producer_id: i64,
pub first_offset: i64,
pub unknown_tagged_fields: Vec<RawTaggedField>,
}
Fields§
§producer_id: i64
The producer id associated with the aborted transaction.
first_offset: i64
The first offset in the aborted transaction.
unknown_tagged_fields: Vec<RawTaggedField>
Unknown tagged fields.
Trait Implementations§
Source§impl Clone for AbortedTransaction
impl Clone for AbortedTransaction
Source§fn clone(&self) -> AbortedTransaction
fn clone(&self) -> AbortedTransaction
Returns a copy 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 Debug for AbortedTransaction
impl Debug for AbortedTransaction
Source§impl Default for AbortedTransaction
impl Default for AbortedTransaction
Source§fn default() -> AbortedTransaction
fn default() -> AbortedTransaction
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AbortedTransaction
impl RefUnwindSafe for AbortedTransaction
impl Send for AbortedTransaction
impl Sync for AbortedTransaction
impl Unpin for AbortedTransaction
impl UnwindSafe for AbortedTransaction
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