msgpack-rust
msgpack-rust copied to clipboard
Extend the lifetime of `Utf8String::as_bytes`
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.