Skip to content

Tracking Issue for read_le_be #156984

Description

@joshtriplett

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

Footnotes

  1. https://std-dev-guide.rust-lang.org/feature-lifecycle/stabilization.html

Metadata

Metadata

Assignees

No one assigned

    Labels

    C-tracking-issueCategory: An issue tracking the progress of sth. like the implementation of an RFCS-tracking-unimplementedStatus: The feature has not been implemented.T-libs-apiRelevant to the library API team, which will review and decide on the PR/issue.

    Type

    No type

    Fields

    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions