about summary refs log tree commit diff
path: root/library/std/src/io/stdio.rs
AgeCommit message (Expand)AuthorLines
2021-10-10Add #[must_use] to conversions that move selfJohn Kugelman-0/+1
2021-10-08Add #[must_use] to stdin/stdout/stderr locksJohn Kugelman-0/+3
2021-08-06Replace read_to_string with read_line in Stdin exampleElichai Turkel-14/+14
2021-07-12add Stdin::lines, Stdin::split forwarder methodsTaylor Yu-1/+44
2021-07-03stdio_locked: add tracking issueTaylor Yu-6/+6
2021-07-02stdio_locked: updates based on feedbackTaylor Yu-54/+11
2021-07-01add owned locked stdio handlesTaylor Yu-1/+259
2021-04-22Rework `at_exit` to `cleanup`Christiaan Dirkx-23/+18
2021-04-21Replace all `fmt.pad` with `debug_struct`Christiaan Dirkx-6/+6
2021-02-22Add missing "see its documentation for more" stdioIvan Tham-2/+2
2021-02-20Rollup merge of #82244 - pickfire:patch-6, r=dtolnayGuillaume Gomez-2/+2
2021-02-18Keep consistency in example for Stdin StdinLockIvan Tham-2/+2
2021-02-18Add missing link from stdio docIvan Tham-4/+4
2020-12-08Use Pin for the 'don't move' requirement of ReentrantMutex.Mara Bos-25/+29
2020-12-08Fix outdated comment about not needing to flush stderr.Mara Bos-7/+3
2020-11-16Rollup merge of #78714 - m-ou-se:simplify-local-streams, r=KodrAusMara Bos-133/+44
2020-11-14Auto merge of #75272 - the8472:spec-copy, r=KodrAusbors-0/+8
2020-11-13hide unused exports on other platformsThe8472-0/+2
2020-11-13specialize io::copy to use copy_file_range, splice or sendfileThe8472-0/+6
2020-11-10Merge set_panic and set_print into set_output_capture.Mara Bos-85/+27
2020-11-10Use Cell instead of RefCell for LOCAL_{STDOUT,STDERR}.Mara Bos-15/+16
2020-11-10Use Vec<u8> for LOCAL_STD{OUT,ERR} instead of dyn Write.Mara Bos-38/+23
2020-11-10Remove io::LocalOutput and use Arc<Mutex<dyn>> for local streams.Mara Bos-37/+20
2020-10-22Only load LOCAL_STREAMS if they are being usedSergio Benitez-0/+5
2020-10-22Capture output from threads spawned in testsTyler Mandry-5/+28
2020-09-27Optimize set_{panic,print}(None).Mara Bos-0/+8
2020-09-27Relax memory ordering of LOCAL_STREAMS and document it.Mara Bos-5/+17
2020-09-27Only use LOCAL_{STDOUT,STDERR} when set_{print/panic} is used.Mara Bos-23/+40
2020-09-27Auto merge of #77154 - fusion-engineering-forks:lazy-stdio, r=dtolnaybors-36/+40
2020-09-24Call ReentrantMutex::init() in stdout().Mara Bos-1/+3
2020-09-24Drop use of Arc from Stdin and Stdout.Mara Bos-27/+23
2020-09-24Remove std::io::lazy::Lazy in favour of SyncOnceCellMara Bos-34/+40
2020-09-21Rollup merge of #76275 - FedericoPonzi:immutable-write-impl-73836, r=dtolnayecstatic-morse-0/+54
2020-09-21Updates stability attributes to the current nightly versionFederico Ponzi-2/+2
2020-09-11Deduplicates io::Write implementationsFederico Ponzi-14/+14
2020-09-03More implementations of Write for immutable refsFederico Ponzi-0/+54
2020-08-31std: move "mod tests/benches" to separate filesLzu Tao-51/+3
2020-08-21Remove wrapper type handling absent raw standard streamsTomasz Miąsko-100/+33
2020-08-21Make raw standard stream constructors constTomasz Miąsko-3/+6
2020-08-21Remove result type from raw standard streams constructorsTomasz Miąsko-18/+10
2020-08-18Move to intra doc links for std::ioAlexis Bourget-24/+5
2020-07-27mv std libs to library/mark-0/+1064