Windowed Vector (TTL) Collection for Rust
```rust fn main() { let mut winvec = WinVec::withduration(Duration::fromsecs(5));
winvec.push("Hello!"); winvec.push("World!");
winvec.iter().for_each(|e| println!("{}", e)); }