pub struct LazyLoadStats {
pub domain_loads: usize,
pub predicate_loads: usize,
pub cache_hits: usize,
pub cache_misses: usize,
pub batch_loads: usize,
}Expand description
Statistics about lazy loading behavior.
Fields§
§domain_loads: usizeNumber of domain loads.
predicate_loads: usizeNumber of predicate loads.
cache_hits: usizeNumber of cache hits.
cache_misses: usizeNumber of cache misses.
batch_loads: usizeNumber of batch loads.
Implementations§
Trait Implementations§
Source§impl Clone for LazyLoadStats
impl Clone for LazyLoadStats
Source§fn clone(&self) -> LazyLoadStats
fn clone(&self) -> LazyLoadStats
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 LazyLoadStats
impl Debug for LazyLoadStats
Source§impl Default for LazyLoadStats
impl Default for LazyLoadStats
Source§fn default() -> LazyLoadStats
fn default() -> LazyLoadStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LazyLoadStats
impl RefUnwindSafe for LazyLoadStats
impl Send for LazyLoadStats
impl Sync for LazyLoadStats
impl Unpin for LazyLoadStats
impl UnwindSafe for LazyLoadStats
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