pub struct ChangeTrackingState {
pub last_insert_rowid: i64,
pub last_changes: i64,
pub total_changes: i64,
}Expand description
Connection-scoped change-tracking state projected into builtin execution context.
Fields§
§last_insert_rowid: i64§last_changes: i64§total_changes: i64Trait Implementations§
Source§impl Clone for ChangeTrackingState
impl Clone for ChangeTrackingState
Source§fn clone(&self) -> ChangeTrackingState
fn clone(&self) -> ChangeTrackingState
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 ChangeTrackingState
impl Debug for ChangeTrackingState
Source§impl PartialEq for ChangeTrackingState
impl PartialEq for ChangeTrackingState
impl Copy for ChangeTrackingState
impl Eq for ChangeTrackingState
impl StructuralPartialEq for ChangeTrackingState
Auto Trait Implementations§
impl Freeze for ChangeTrackingState
impl RefUnwindSafe for ChangeTrackingState
impl Send for ChangeTrackingState
impl Sync for ChangeTrackingState
impl Unpin for ChangeTrackingState
impl UnsafeUnpin for ChangeTrackingState
impl UnwindSafe for ChangeTrackingState
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