qubit-io 0.6.0

Small stream I/O trait utilities for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// =============================================================================
//    Copyright (c) 2026 Haixing Hu.
//
//    SPDX-License-Identifier: Apache-2.0
//
//    Licensed under the Apache License, Version 2.0.
// =============================================================================
mod buf_read_seek;
mod read_seek;
mod read_write;
mod read_write_seek;
mod write_seek;

pub use buf_read_seek::BufReadSeek;
pub use read_seek::ReadSeek;
pub use read_write::ReadWrite;
pub use read_write_seek::ReadWriteSeek;
pub use write_seek::WriteSeek;