qubit-io 0.3.0

Small stream I/O trait utilities for Rust
Documentation
1
2
3
4
5
6
7
8
use qubit_io::Strict;

#[test]
fn test_strict_is_copyable_default_marker() {
    let marker = Strict;

    assert_eq!(marker, Strict);
}