Format project with rustfmt

This commit is contained in:
Graham Esau 2019-12-09 17:37:49 +00:00
parent e4d69f89e7
commit 1f021fa5ae
6 changed files with 13 additions and 9 deletions

View file

@ -1,7 +1,7 @@
mod util;
use schemars::JsonSchema;
use util::*;
use std::ffi::{OsStr, OsString};
use util::*;
#[derive(Debug, JsonSchema)]
struct OsStrings {

View file

@ -7,7 +7,7 @@ use util::*;
struct MyStruct {
range: Range<usize>,
inclusive: RangeInclusive<f64>,
bound: Bound<String>
bound: Bound<String>,
}
#[test]

View file

@ -1,7 +1,7 @@
mod util;
use schemars::JsonSchema;
use util::*;
use std::time::{Duration, SystemTime};
use util::*;
#[derive(Debug, JsonSchema)]
struct MyStruct {