dependencies
```toml async_destruction = "0.1" tokio = { version = '1', features = ["full"] }
chrono = "0.4" ```
demo
```rust use async_destruction::AsyncDestruction; use chrono::Utc; use std::{thread::sleep, time::Duration};
struct S; impl Drop for S { fn drop(&mut self) { sleep(Duration::from_millis(1)); println!("drop!"); } }
fn itworks() { let a = vec![S; 10]; let t1 = Utc::now().timestampmillis(); drop(a); let t2 = Utc::now().timestamp_millis(); // will print 'drop cost time: 12ms' println!("drop cost time: {}ms", t2 - t1); }
async fn asyncworks() { let a = AsyncDestruction::new(vec![S; 10]); let t1 = Utc::now().timestampmillis(); drop(a); let t2 = Utc::now().timestamp_millis(); // will print 'drop cost time: 0ms' println!("drop cost time: {}ms", t2 - t1); } ```
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions