about summary refs log tree commit diff
path: root/library/std/src/io/mod.rs
AgeCommit message (Expand)AuthorLines
2023-06-18Rollup merge of #107200 - mina86:c, r=AmanieuMatthias Krüger-5/+6
2023-06-16Rollup merge of #111074 - WaffleLapkin:🌟unsizes_your_buf_reader🌟, r=Ama...Michael Goulet-1/+1
2023-05-25Clarify safety concern of `io::Read::read` is only relevant in unsafe codeZiru Niu-3/+4
2023-05-01Relax implicit `R: Sized` bound on `BufReader<R>`Maybe Waffle-1/+1
2023-04-28replace version placeholdersPietro Albini-1/+1
2023-04-23Auto merge of #110655 - ChrisDenton:read-to-end, r=joshtriplettbors-5/+19
2023-04-21Limit read size in `File::read_to_end` loopChris Denton-5/+19
2023-04-20More `mem::take` in `library`Scott McMurray-3/+3
2023-04-10Stabilize IsTerminalJosh Triplett-1/+1
2023-03-11read_buf_exact: on error, all read bytes are appended to the bufferTomasz Miąsko-2/+16
2023-03-03Update library/std/src/io/mod.rsMichal Nazarewicz-1/+1
2023-03-01Update library/std/src/io/mod.rsMichal Nazarewicz-3/+3
2023-02-08std: add tracking issue for `RawOsError`joboet-1/+1
2023-02-03Update library/std/src/io/mod.rsMichal Nazarewicz-4/+4
2023-01-31std: add type alias for raw OS errorsjoboet-0/+2
2023-01-24io: soften ‘at most one write attempt’ requirement in io::Write::writeMichal Nazarewicz-5/+6
2023-01-01Document a way to limit read_line lengthKornel-2/+3
2023-01-01Document read_line gotchaKornel-2/+5
2022-10-24Fix grammar in docs for std::io::ReadJesse Ruderman-2/+2
2022-10-15Add `IsTerminal` trait to determine if a descriptor or handle is a terminalJosh Triplett-0/+2
2022-10-07Make tests capture the error printed by a Result returnDavid Tolnay-0/+1
2022-09-26replace stabilization placeholdersPietro Albini-1/+1
2022-08-28Stabilize `std::io::read_to_string`Noah Lev-3/+1
2022-08-28Rollup merge of #100520 - jakubdabek:patch-1, r=thomccMatthias Krüger-1/+6
2022-08-18Address reviewer commentsNick Cameron-8/+8
2022-08-14Add mention of `BufReader` in `Read::bytes` docsJakub Dąbek-1/+6
2022-08-05non-linux platformsNick Cameron-11/+10
2022-08-04std::io: migrate ReadBuf to BorrowBuf/BorrowCursorNick Cameron-40/+43
2022-07-26Rollup merge of #99716 - sourcelliu:iomut, r=Mark-SimulacrumMatthias Krüger-4/+4
2022-07-25Rollup merge of #95040 - frank-king:fix/94981, r=Mark-SimulacrumYuki Okushi-0/+1
2022-07-25remove useless mut from examplessourcelliu-4/+4
2022-06-21update ioslice docs to use shared slicesConrad Ludgate-6/+6
2022-06-20Rollup merge of #94855 - m-ou-se:advance-slice-panic-docs, r=kennytmDylan DPC-16/+34
2022-05-29protect `std::io::Take::limit` from overflow in `read`Frank King-0/+1
2022-05-09Use Rust 2021 prelude in std itself.Mara Bos-1/+0
2022-03-16changed wordingDylan DPC-1/+2
2022-03-15Improve the explanation about the behaviour of read_linezed.zy-1/+1
2022-03-11Update advance and advance_slices docs.Mara Bos-14/+28
2022-03-11Panic when advance_slices()'ing too far.Mara Bos-2/+6
2022-03-10Use implicit capture syntax in format_argsT-O-R-U-S-6/+6
2022-02-13Make default stdio lock() return 'static handlesMark Rousskov-2/+0
2022-02-04Hide Repr details from io::Error, and rework `io::Error::new_const`.Thom Chiovoloni-7/+11
2022-01-13Remove `&mut` from `io::read_to_string` signatureNoah Lev-2/+2
2022-01-09Compute most of Public/Exported access level in rustc_resolveLamb-17/+10
2021-12-14Fix a bunch of typosFrank Steffahn-2/+2
2021-11-02formattingDrMeepster-1/+1
2021-11-02fix change clobbered by rebaseDrMeepster-7/+23
2021-11-02implement review suggestionsDrMeepster-3/+13
2021-11-02more efficent File::read_buf impl for windows and unixDrMeepster-3/+10
2021-11-02read_bufDrMeepster-133/+103