struct GetConnectionResult<T> {
connection: Arc<T>,
cache_hit: bool,
report_stats: bool,
map_timing_ms: u64,
lock_timing_ms: u64,
connection_cache_stats: Arc<ConnectionCacheStats>,
num_evictions: u64,
eviction_timing_ms: u64,
}
Fields§
§connection: Arc<T>
§cache_hit: bool
§report_stats: bool
§map_timing_ms: u64
§lock_timing_ms: u64
§connection_cache_stats: Arc<ConnectionCacheStats>
§num_evictions: u64
§eviction_timing_ms: u64
Auto Trait Implementations§
impl<T> RefUnwindSafe for GetConnectionResult<T>where T: RefUnwindSafe,
impl<T> Send for GetConnectionResult<T>where T: Send + Sync,
impl<T> Sync for GetConnectionResult<T>where T: Send + Sync,
impl<T> Unpin for GetConnectionResult<T>
impl<T> UnwindSafe for GetConnectionResult<T>where T: RefUnwindSafe,
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