schemars 1.2.1

Generate JSON Schemas from Rust code
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use crate::prelude::*;
use bytes1::{Bytes, BytesMut};

#[test]
fn bytes() {
    test!(Bytes)
        .assert_snapshot()
        .assert_allows_ser_roundtrip([Bytes::new(), Bytes::from_iter([12; 34])])
        .assert_matches_de_roundtrip(arbitrary_values());
}

#[test]
fn bytes_mut() {
    test!(BytesMut).assert_identical::<Bytes>();
}