mirror of
https://github.com/Serial-ATA/lofty-rs
synced 2024-12-18 00:13:06 +00:00
22 lines
604 B
YAML
22 lines
604 B
YAML
|
name: "[API] Feature request"
|
||
|
description: Suggest how Lofty could better suit your use case
|
||
|
labels: ["enhancement"]
|
||
|
|
||
|
body:
|
||
|
- type: textarea
|
||
|
attributes:
|
||
|
label: Summary
|
||
|
description: A clear and concise description of what the feature is
|
||
|
validations:
|
||
|
required: true
|
||
|
- type: textarea
|
||
|
attributes:
|
||
|
label: API design
|
||
|
description: An example of the API that would best suit your use case
|
||
|
placeholder: |
|
||
|
```rust
|
||
|
impl Tag {
|
||
|
pub fn my_new_method(&self) -> ty;
|
||
|
pub fn my_other_new_method(&mut self) -> ty;
|
||
|
}
|
||
|
```
|