Allow dropping old muters.

This commit is contained in:
Your Name
2023-02-21 23:12:46 -05:00
parent 671814fc81
commit 45f8d9bd26
6 changed files with 115 additions and 37 deletions

View File

@@ -46,3 +46,9 @@ impl IMMNotificationClient_Impl for DeviceNotificationClient {
Ok(())
}
}
impl Drop for DeviceNotificationClient {
fn drop(&mut self) {
println!("DNC Drop");
}
}