pub struct EntitySummary {Show 13 fields
pub path: String,
pub load_calls: u64,
pub exists_calls: u64,
pub delete_calls: u64,
pub rows_loaded: u64,
pub rows_scanned: u64,
pub rows_deleted: u64,
pub avg_rows_per_load: f64,
pub avg_rows_scanned_per_load: f64,
pub avg_rows_per_delete: f64,
pub index_inserts: u64,
pub index_removes: u64,
pub unique_violations: u64,
}Expand description
EntitySummary
Fields§
§path: String§load_calls: u64§exists_calls: u64§delete_calls: u64§rows_loaded: u64§rows_scanned: u64§rows_deleted: u64§avg_rows_per_load: f64§avg_rows_scanned_per_load: f64§avg_rows_per_delete: f64§index_inserts: u64§index_removes: u64§unique_violations: u64Trait Implementations§
Source§impl CandidType for EntitySummary
impl CandidType for EntitySummary
Source§impl Clone for EntitySummary
impl Clone for EntitySummary
Source§fn clone(&self) -> EntitySummary
fn clone(&self) -> EntitySummary
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 EntitySummary
impl Debug for EntitySummary
Source§impl Default for EntitySummary
impl Default for EntitySummary
Source§fn default() -> EntitySummary
fn default() -> EntitySummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EntitySummary
impl<'de> Deserialize<'de> for EntitySummary
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 EntitySummary
impl RefUnwindSafe for EntitySummary
impl Send for EntitySummary
impl Sync for EntitySummary
impl Unpin for EntitySummary
impl UnsafeUnpin for EntitySummary
impl UnwindSafe for EntitySummary
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