Search results

There are no results.

std.io

Types for core IO functionality.

The IO module provides the basic building blocks for IO operations such as reading from and writing to a file.

Methods

start_blocking

Signals the start of a C function call that may perform blocking IO operations.

stop_blocking

Signals the end of a C function call that may perform blocking IO operations.

Traits

BufferedRead

A Read type using an internal buffer, allowing more efficient reading and additional operations.

Read

A type data can be read from (e.g. a File).

Seek

Trait for seeking to a given offset in a stream of bytes.

Write

A type data can be written to (e.g. a File).

Classes

Buffer

An in-memory buffer that supports reads and seeks.

BufferedReader

A type for performing buffered reads from a Read type.

BufferedWriter

A type that wraps a Write type and buffers the output.

Error

An error type for I/O operations.