Files
drone_core
drone_cortex_m
drone_ctypes
futures
futures_channel
futures_core
futures_io
futures_sink
futures_task
futures_util
pin_utils
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
//! 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 [`io::Read`] and
//! [`io::Write`] traits, which provide the most general interface for reading
//! and writing input and output.

mod read;
mod seek;
mod write;

pub use self::{
    read::Read,
    seek::{Seek, SeekFrom},
    write::Write,
};