Skip to main content

Crate qubit_io

Crate qubit_io 

Source
Expand description

§Qubit IO

Small I/O trait utilities for Rust.

This crate provides named, object-safe composition traits for common std::io capability combinations. The concrete trait definitions live in dedicated modules and are re-exported from the crate root for ergonomic use.

Traits§

ReadSeek
Object-safe capability trait for values that can be read and repositioned.
ReadWrite
Object-safe capability trait for values that can be both read and written.
ReadWriteSeek
Object-safe capability trait for values that can be read, written, and repositioned.
WriteSeek
Object-safe capability trait for values that can be written and repositioned.