From d5402134ba6a2e87607766ca26f1fd3a23b056e3 Mon Sep 17 00:00:00 2001 From: koalp Date: Mon, 21 Sep 2020 00:35:27 +0200 Subject: [PATCH] fix: apply rustfmt --- src/grammar.rs | 13 ++++++------- src/nested_type.rs | 5 ++--- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/src/grammar.rs b/src/grammar.rs index 7d1b246..224d3bc 100644 --- a/src/grammar.rs +++ b/src/grammar.rs @@ -9,20 +9,19 @@ pub struct TypeParser; fn parse_type_array(pair: Pair) -> Result>> { let mut inner_rules = pair.into_inner(); - let types = inner_rules.map( |pair| parse_type_object(pair).unwrap_or_default().into()).collect(); + let types = inner_rules + .map(|pair| parse_type_object(pair).unwrap_or_default().into()) + .collect(); Ok(types) } fn parse_type_object(pair: Pair) -> Result { // verify that it's a type object ? let mut inner_rules = pair.into_inner(); - let repr = inner_rules - .next() - .expect("Malformed parsing") - .as_str(); + let repr = inner_rules.next().expect("Malformed parsing").as_str(); let subtypes = match inner_rules.next() { Some(a) => parse_type_array(a)?, - None => vec![] + None => vec![], }; Ok(Type { repr: repr.into(), @@ -30,7 +29,7 @@ fn parse_type_object(pair: Pair) -> Result { }) } -fn parse_nested_type(pair: Pair) -> Result{ +fn parse_nested_type(pair: Pair) -> Result { match pair.as_rule() { Rule::type_object => parse_type_object(pair), _ => unreachable!(), diff --git a/src/nested_type.rs b/src/nested_type.rs index b59deea..5fc9417 100644 --- a/src/nested_type.rs +++ b/src/nested_type.rs @@ -5,10 +5,9 @@ pub struct Type { } impl Type { - /// A function to print a Type struct as a python String /// - /// # Examples + /// # Examples /// /// Creating a simple type and converting it into a python type String /// ``` @@ -30,7 +29,7 @@ impl Type { ), } } - + pub fn to_cpp(&self) -> String { match self.subtypes.len() { 0 => format!("{}", self.repr),