pub struct CommitReceipt {
pub transaction: TransactionId,
pub operations: usize,
pub verified_paths: usize,
pub cleanup_pending: bool,
}Expand description
Compact proof that an exact transaction reached verified durable state.
Fields§
§transaction: TransactionIdCommitted transaction identity.
operations: usizeNumber of journaled host operations.
verified_paths: usizeNumber of changed paths verified after apply.
cleanup_pending: boolWhether harmless internal cleanup remains for recovery.
Trait Implementations§
Source§impl Clone for CommitReceipt
impl Clone for CommitReceipt
Source§fn clone(&self) -> CommitReceipt
fn clone(&self) -> CommitReceipt
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 CommitReceipt
impl Debug for CommitReceipt
impl Eq for CommitReceipt
Source§impl PartialEq for CommitReceipt
impl PartialEq for CommitReceipt
impl StructuralPartialEq for CommitReceipt
Auto Trait Implementations§
impl Freeze for CommitReceipt
impl RefUnwindSafe for CommitReceipt
impl Send for CommitReceipt
impl Sync for CommitReceipt
impl Unpin for CommitReceipt
impl UnsafeUnpin for CommitReceipt
impl UnwindSafe for CommitReceipt
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