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