Debouncer
A simple debouncer for Rust, using Tokio for async timing. This crate provides a mechanism to debounce function calls, ensuring that only the last call within a specified delay is executed.
Installation
Add this to your Cargo.toml:
[]
= "0.1.0"
= { = "1", = ["full"] }
Usage
Here’s a basic example demonstrating how to use the Debouncer:
use Duration;
use Debouncer;
async
Contributing
Contributions are welcome! Please open an issue or submit a pull request on GitHub.
1. Fork the repository
2. Create your feature branch (git checkout -b feature/your-feature)
3. Commit your changes (git commit -am 'Add some feature')
4. Push to the branch (git push origin feature/your-feature)
5. Create a new Pull Request
License
This project is licensed under the MIT or Apache-2.0 License. See the LICENSE file for details.