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

Extend the lifetime of `Utf8String::as_bytes`

Open JoJoJet opened this issue 1 year ago • 0 comments

Utf8String::as_bytes currently has the lifetime of a reference to a reference, which makes it more restrictive than it needs to be. Since immutable references are Copy, we can return a reference with the original lifetime.

JoJoJet avatar Jul 22 '23 20:07 JoJoJet