qubit-codec-binary 0.1.0

Buffer-oriented binary codecs for Rust
Documentation
1
2
3
4
5
6
7
8
use qubit_codec_binary::NonStrict;

#[test]
fn test_non_strict_is_copyable_default_marker() {
    let marker = NonStrict;

    assert_eq!(marker, NonStrict);
}