## Description
## Type of Change
- [ ] 🐛 Bug fix (non-breaking change which fixes an issue)
- [ ] ✨ New feature (non-breaking change which adds functionality)
- [ ] 💥 Breaking change (fix or feature that would cause existing functionality to not work as expected)
- [ ] 📝 Documentation update
- [ ] 🎨 Style/formatting change (no functional changes)
- [ ] ♻️ Refactoring (no functional changes)
- [ ] ⚡ Performance improvement
- [ ] ✅ Test update
- [ ] 🔧 Build/infrastructure change
- [ ] 🔒 Security fix
## Related Issues
Fixes #
Relates to #
## Changes Made
-
-
-
## Testing
- [ ] All existing tests pass (`cargo test`)
- [ ] Added new tests for new functionality
- [ ] Tested manually with examples
- [ ] Tested on multiple platforms (if applicable)
### Test Results
```bash
# Paste relevant test output here
cargo test --all-features
```
## Examples
```rust
// Before (if applicable)
// After
```
## Screenshots
| | |
## Checklist
### Code Quality
- [ ] My code follows the project's style guidelines
- [ ] I have performed a self-review of my code
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] My changes generate no new warnings
- [ ] I have run `cargo fmt` and `cargo clippy`
### Documentation
- [ ] I have updated the documentation accordingly
- [ ] I have added/updated doc comments for new/modified public APIs
- [ ] I have added examples in doc comments where appropriate
- [ ] I have updated the CHANGELOG.md (if applicable)
### Testing
- [ ] I have added tests that prove my fix is effective or that my feature works
- [ ] New and existing unit tests pass locally with my changes
- [ ] I have tested the examples affected by my changes
### Commits
- [ ] My commits follow the [Conventional Commits](https://www.conventionalcommits.org/) specification
- [ ] Each commit message clearly describes the change
### Breaking Changes
- [ ] This PR includes breaking changes (if yes, describe below)
**Breaking changes description:**
## Additional Notes
## Post-Merge Actions
- [ ] Update documentation site
- [ ] Announce in discussions
- [ ] Update related examples
- [ ] Other:
---
By submitting this pull request, I confirm that my contribution is made under the terms of the MIT license and I agree to the [Code of Conduct](CODE_OF_CONDUCT.md).