Module drone_core::io[][src]

Traits, helpers, and type definitions for core I/O functionality.

The module contains a number of common things you’ll need when doing input and output. The most core part of this module is the Read and Write traits, which provide the most general interface for reading and writing input and output.

Enums

SeekFrom

Enumeration of possible methods to seek within an I/O object.

Traits

Read

The Read trait allows for reading bytes from a source asynchronously.

Seek

The Seek trait provides a cursor which can be moved within a stream of bytes asynchronously.

Write

The Write trait allows for writing bytes to a source asynchronously.