fumble 0.6.1

an oxidized implementation of the original clumsy tool, designed to simulate adverse network conditions on Windows systems.
pub struct ThrottleStats {
    pub(crate) is_throttling: bool,
    pub(crate) dropped_count: usize,
}

impl Default for ThrottleStats {
    fn default() -> Self {
        Self::new()
    }
}

impl ThrottleStats {
    pub fn new() -> Self {
        ThrottleStats {
            is_throttling: false,
            dropped_count: 0,
        }
    }
}