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
Feature gate:
#![feature(read_le_be)]This is a tracking issue for the
read_le_befeature, which provides the functionsstd::io::Read::read_leandstd::io::Read::read_be.Public API
Steps / History
io::Read::read_leandio::Read::read_be#156983Footnotes
https://std-dev-guide.rust-lang.org/feature-lifecycle/stabilization.html ↩