deadpool 0.12.3

Dead simple async pool
Documentation
#[cfg(not(target_arch = "wasm32"))]
use std::time::{Duration, Instant};

/// Statistics regarding an object returned by the pool
#[derive(Clone, Copy, Debug)]
#[must_use]
pub struct Metrics {
    #[cfg(not(target_arch = "wasm32"))]
    /// The instant when this object was created
    pub created: Instant,
    #[cfg(not(target_arch = "wasm32"))]
    /// The instant when this object was last used
    pub recycled: Option<Instant>,
    /// The number of times the objects was recycled
    pub recycle_count: usize,
}

impl Metrics {
    #[cfg(not(target_arch = "wasm32"))]
    /// Access the age of this object
    pub fn age(&self) -> Duration {
        self.created.elapsed()
    }
    #[cfg(not(target_arch = "wasm32"))]
    /// Get the time elapsed when this object was last used
    pub fn last_used(&self) -> Duration {
        self.recycled.unwrap_or(self.created).elapsed()
    }
}

impl Default for Metrics {
    fn default() -> Self {
        Self {
            #[cfg(not(target_arch = "wasm32"))]
            created: Instant::now(),
            #[cfg(not(target_arch = "wasm32"))]
            recycled: None,
            recycle_count: 0,
        }
    }
}