basic Rust knowledgeunderstanding of Cow<'static, >familiarity with rust prometheus codebase
新手友善度1-100 的估計分數,表示該議題對首次貢獻者的友善程度。
75
研究方向
First, examine the referenced issue (https://github.com/tikv/rust prometheus/issues/282) for specific discussion and examples. Then, search the rust prometheus source code for places where owned strings or byte slices can be replaced with Cow<'static, str> or Cow<'static, [u8]> to avoid allocations. Focus on metric types and labels. Finally, open a PR with the changes and ensure no breaking changes.