pub struct TurnCommit {
pub entry_ids: Vec<String>,
pub newly_committed: bool,
}Expand description
Result of an idempotent durable turn commit.
Fields§
§entry_ids: Vec<String>Stable IDs for model-visible entries committed by the turn.
newly_committed: boolWhether this call wrote the turn rather than returning a prior commit.
Trait Implementations§
Source§impl Clone for TurnCommit
impl Clone for TurnCommit
Source§fn clone(&self) -> TurnCommit
fn clone(&self) -> TurnCommit
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 TurnCommit
impl Debug for TurnCommit
impl Eq for TurnCommit
Source§impl PartialEq for TurnCommit
impl PartialEq for TurnCommit
impl StructuralPartialEq for TurnCommit
Auto Trait Implementations§
impl Freeze for TurnCommit
impl RefUnwindSafe for TurnCommit
impl Send for TurnCommit
impl Sync for TurnCommit
impl Unpin for TurnCommit
impl UnsafeUnpin for TurnCommit
impl UnwindSafe for TurnCommit
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