We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tag::read_from_path
Result<Box<dyn AudioTag + Send + Sync>>
All the tag types currently are Send and Sync, so it would be useful to also pass this down.
Send
Sync
The text was updated successfully, but these errors were encountered:
Change Tag::read_from_path return type to `Result<Box<dyn AudioTag …
339dcee
…+ Send + Sync>>` closes: TianyiShi2001#8
adfcc55
Fix remaining issues (#21)
2fa3f6c
* Remove `unwrap` in `Tag::read_from_path` closes: #7 * Fix `Id3v2Tag::{*year}` methods closes: #9 * Fix unused `Result` in `Tag` doc example * Reorder `FlagTag` and `Mp4Tag` impls to match `AudioTagEdit` * Change `Tag::read_from_path` return type to `Result<Box<dyn AudioTag + Send + Sync>>` closes: #8 * Fix doc test * Fix typos * Bump versions * fmt
Successfully merging a pull request may close this issue.
All the tag types currently are
Send
andSync
, so it would be useful to also pass this down.The text was updated successfully, but these errors were encountered: