File: bytes.rs

package info (click to toggle)
rust-schemars 0.8.22-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,312 kB
  • sloc: makefile: 2
file content (8 lines) | stat: -rw-r--r-- 155 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
mod util;
use bytes::{Bytes, BytesMut};
use util::*;

#[test]
fn bytes() -> TestResult {
    test_default_generated_schema::<(Bytes, BytesMut)>("bytes")
}