FuelLabs/fuel-core

Avoid cloning of vectors in `HexString`

Open

#2,657 opened on 2025年2月1日

GitHub で見る
 (2 comments) (0 reactions) (0 assignees)Rust (57,084 stars) (2,861 forks)batch import
good first issue

説明

The GraphQL server coverts bytes into the hex string to return it to the user. During this convert process, we take vector by value.

We have many cases where we clone vectors instead of passing it as a reference.

This issue is created to replace Vec<u8> with Cow<[u8]> or Cow<Vec<u8>> and allow usage of references.

コントリビューターガイド

Avoid cloning of vectors in `HexString` · FuelLabs/fuel-core#2657 | Good First Issue