File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 99- Added ` proto::media::block::BlockIO2 ` .
1010
1111## Changed
12+ - export all ` text::{input, output}::* ` types
1213- Changed ordering of ` proto::pci::PciIoAddress ` to (bus -> dev -> fun -> reg -> ext_reg).
1314- Return request with status as error data object for ` proto::ata::pass_thru::AtaDevice ` .
1415- ** Breaking:** ` SimpleNetwork::wait_for_packet `
Original file line number Diff line number Diff line change 33//! Text I/O.
44
55mod input;
6- pub use input:: { Input , Key , ScanCode } ;
7-
86mod output;
9- pub use output:: { Color , Output , OutputMode } ;
7+
8+ pub use input:: * ;
9+ pub use output:: * ;
Original file line number Diff line number Diff line change @@ -72,7 +72,6 @@ impl Output {
7272 }
7373
7474 /// Returns an iterator of all supported text modes.
75- // TODO: Bring back impl Trait once the story around bounds improves
7675 pub const fn modes ( & mut self ) -> OutputModeIter < ' _ > {
7776 let max = self . data ( ) . max_mode as usize ;
7877 OutputModeIter {
You can’t perform that action at this time.
0 commit comments