File: arrayvec.rs

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

#[test]
fn arrayvec07() -> TestResult {
    test_default_generated_schema::<arrayvec07::ArrayVec<i32, 16>>("arrayvec")
}

#[test]
fn arrayvec07_string() -> TestResult {
    test_default_generated_schema::<arrayvec07::ArrayString<16>>("arrayvec_string")
}