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
impl From<AsciiString> for Cow<'static, AsciiStr>
impl<'a> From<AsciiString> for Cow<'a, AsciiStr>
This would likely broaden the conversion abilities and would be a just patch release
The text was updated successfully, but these errors were encountered:
fix: impl<'a> From<AsciiString> for Cow<'a, AsciiStr>
07c8e8e
Fixes tomprogrammer#110 Modify the implementation of `From<AsciiString>` for `Cow<'a, AsciiStr>`. * Change `impl From<AsciiString> for Cow<'static, AsciiStr>` to `impl<'a> From<AsciiString> for Cow<'a, AsciiStr>` in `src/ascii_string.rs` * Broaden the conversion abilities by making it generic over any lifetime `'a` --- For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/tomprogrammer/rust-ascii/issues/110?shareId=XXXX-XXXX-XXXX-XXXX).
Successfully merging a pull request may close this issue.
This would likely broaden the conversion abilities and would be a just patch release
The text was updated successfully, but these errors were encountered: