pub struct SessionDebugInfo {
pub tracked: usize,
pub pending_new: usize,
pub pending_delete: usize,
pub pending_dirty: usize,
pub in_transaction: bool,
}Expand description
Debug information about session state.
Fields§
§tracked: usizeTotal tracked objects.
pending_new: usizeObjects pending INSERT.
pending_delete: usizeObjects pending DELETE.
pending_dirty: usizeObjects pending UPDATE.
in_transaction: boolWhether in a transaction.
Trait Implementations§
Source§impl Clone for SessionDebugInfo
impl Clone for SessionDebugInfo
Source§fn clone(&self) -> SessionDebugInfo
fn clone(&self) -> SessionDebugInfo
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 moreAuto Trait Implementations§
impl Freeze for SessionDebugInfo
impl RefUnwindSafe for SessionDebugInfo
impl Send for SessionDebugInfo
impl Sync for SessionDebugInfo
impl Unpin for SessionDebugInfo
impl UnsafeUnpin for SessionDebugInfo
impl UnwindSafe for SessionDebugInfo
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, _span: NoopSpan) -> Self
fn instrument(self, _span: NoopSpan) -> Self
Instruments this future with a span (no-op when disabled).
Source§fn in_current_span(self) -> Self
fn in_current_span(self) -> Self
Instruments this future with the current span (no-op when disabled).