Run cargo fmt

This commit is contained in:
Graham Esau 2019-12-29 22:09:54 +00:00
parent 98f981634c
commit 58cc7fac25
22 changed files with 57 additions and 74 deletions

View file

@ -16,7 +16,7 @@ pub struct MyStruct {
/// # My Amazing Enum
#[derive(JsonSchema)]
pub enum MyEnum {
pub enum MyEnum {
/// A wrapper around a `String`
StringNewType(String),
/// A struct-like enum variant which contains
@ -24,7 +24,7 @@ pub enum MyEnum {
StructVariant {
/// The floats themselves
floats: Vec<f32>,
}
},
}
fn main() {