pub struct EntityCounters {
pub load_calls: u64,
pub exists_calls: u64,
pub save_calls: u64,
pub delete_calls: u64,
pub rows_loaded: u64,
pub rows_scanned: u64,
pub rows_deleted: u64,
pub index_inserts: u64,
pub index_removes: u64,
pub unique_violations: u64,
}Expand description
EntityOps
Fields§
§load_calls: u64§exists_calls: u64§save_calls: u64§delete_calls: u64§rows_loaded: u64§rows_scanned: u64§rows_deleted: u64§index_inserts: u64§index_removes: u64§unique_violations: u64Trait Implementations§
Source§impl CandidType for EntityCounters
impl CandidType for EntityCounters
Source§impl Clone for EntityCounters
impl Clone for EntityCounters
Source§fn clone(&self) -> EntityCounters
fn clone(&self) -> EntityCounters
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 EntityCounters
impl Debug for EntityCounters
Source§impl Default for EntityCounters
impl Default for EntityCounters
Source§fn default() -> EntityCounters
fn default() -> EntityCounters
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EntityCounters
impl<'de> Deserialize<'de> for EntityCounters
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for EntityCounters
impl RefUnwindSafe for EntityCounters
impl Send for EntityCounters
impl Sync for EntityCounters
impl Unpin for EntityCounters
impl UnwindSafe for EntityCounters
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