Module sgx_tstd::io [−][src]
Modules
| prelude |
The I/O Prelude |
Structs
| BufReader |
The |
| BufWriter |
Wraps a writer and buffers its output. |
| Bytes |
An iterator over |
| Chain |
Adaptor to chain together two readers. |
| Chars |
An iterator over the |
| Cursor |
A |
| Empty |
A reader which is always at EOF. |
| Error |
The error type for I/O operations of the |
| Initializer |
A type used to conditionally initialize buffers passed to |
| IntoInnerError |
An error returned by |
| Lazy | |
| LineWriter |
Wraps a writer and buffers output to it, flushing whenever a newline
( |
| Lines |
An iterator over the lines of an instance of |
| Repeat |
A reader which yields one byte over and over and over and over and over and... |
| Sink |
A writer which will move data into the void. |
| Split |
An iterator over the contents of an instance of |
| Stderr |
A handle to the standard error stream of a process. |
| StderrLock |
A locked reference to the |
| Stdin |
A handle to the standard input stream of a process. |
| StdinLock |
A locked reference to the |
| Stdout |
A handle to the global standard output stream of the current process. |
| StdoutLock |
A locked reference to the |
| Take |
Reader adaptor which limits the bytes read from an underlying reader. |
Enums
| CharsError |
An enumeration of possible errors that can be generated from the |
| ErrorKind |
A list specifying general categories of I/O error. |
| SeekFrom |
Enumeration of possible methods to seek within an I/O object. |
Traits
| BufRead |
A |
| Read |
The |
| Seek |
The |
| Write |
A trait for objects which are byte-oriented sinks. |
Functions
| _print | |
| copy |
Copies the entire contents of a reader into a writer. |
| empty |
Constructs a new handle to an empty reader. |
| errno | |
| error_string | |
| repeat |
Creates an instance of a reader that infinitely repeats one byte. |
| set_errno | |
| sink |
Creates an instance of a writer which will successfully consume all data. |
| stderr |
Constructs a new handle to the standard error of the current process. |
| stdin |
Constructs a new handle to the standard input of the current process. |
| stdout |
Constructs a new handle to the standard output of the current process. |
Type Definitions
| Result |
A specialized |