pub struct PaneTransactionOutcome {
pub transaction_id: u64,
pub committed: bool,
pub tree: PaneTree,
pub journal: Vec<PaneOperationJournalEntry>,
}Expand description
Finalized transaction payload emitted by commit/rollback.
Fields§
§transaction_id: u64§committed: bool§tree: PaneTree§journal: Vec<PaneOperationJournalEntry>Trait Implementations§
Source§impl Clone for PaneTransactionOutcome
impl Clone for PaneTransactionOutcome
Source§fn clone(&self) -> PaneTransactionOutcome
fn clone(&self) -> PaneTransactionOutcome
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 moreSource§impl Debug for PaneTransactionOutcome
impl Debug for PaneTransactionOutcome
Source§impl PartialEq for PaneTransactionOutcome
impl PartialEq for PaneTransactionOutcome
impl Eq for PaneTransactionOutcome
impl StructuralPartialEq for PaneTransactionOutcome
Auto Trait Implementations§
impl Freeze for PaneTransactionOutcome
impl RefUnwindSafe for PaneTransactionOutcome
impl Send for PaneTransactionOutcome
impl Sync for PaneTransactionOutcome
impl Unpin for PaneTransactionOutcome
impl UnsafeUnpin for PaneTransactionOutcome
impl UnwindSafe for PaneTransactionOutcome
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