Tracking Issue for `read_le_be`
Open
Nobody has claimed this yet.
A-io
C-tracking-issue
T-libs
- Dominant language
- Rust
- Stars
- 119k
- Forks
- 16.1k
- PR merge metrics
- PR metrics pending
Description
Feature gate: #![feature(read_le_be)]
This is a tracking issue for the read_le_be feature, which provides the functions std::io::Read::read_le and std::io::Read::read_be.
Public API
// std::io
trait Read {
fn read_le<T: FromEndianBytes>(&mut self) -> Result<T>
where
Self: Sized
{ ... }
fn read_be<T: FromEndianBytes>(&mut self) -> Result<T>
where
Self: Sized
{ ... }
}
Steps / History
- Implementation: https://github.com/rust-lang/rust/pull/156983
- Final comment period (FCP)^1
- Stabilization PR
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Review implementation PR #156983 and the stabilization procedure linked in the issue. Check the remaining FCP and stabilization steps rather than starting implementation work. Done means the final comment period is complete and a stabilization PR has been prepared or merged.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- rust
- Domain
- tooling
- Issue type
- Feature
- Difficulty
- 5/5
- Estimated time
- Over a week
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 25/100