rust-ascii icon indicating copy to clipboard operation
rust-ascii copied to clipboard

fix: `impl<'a> From<AsciiString> for Cow<'a, AsciiStr>`

Open DanikVitek opened this issue 10 months ago • 1 comments

Fixes #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.

DanikVitek avatar Jan 29 '25 19:01 DanikVitek

@tomprogrammer

DanikVitek avatar Jan 31 '25 20:01 DanikVitek