Skip to content

Commit 028b0df

Browse files
author
Ed Page
committed
style: Run rustfmt
1 parent 221be29 commit 028b0df

File tree

1 file changed

+15
-5
lines changed

1 file changed

+15
-5
lines changed

src/assert.rs

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,9 @@ impl predicates_core::reflection::PredicateReflection for EqCodePredicate {
555555
}
556556

557557
/// Nested `Predicate`s of the current `Predicate`.
558-
fn children<'a>(&'a self) -> Box<dyn Iterator<Item = predicates_core::reflection::Child<'a>> + 'a> {
558+
fn children<'a>(
559+
&'a self,
560+
) -> Box<dyn Iterator<Item = predicates_core::reflection::Child<'a>> + 'a> {
559561
self.0.children()
560562
}
561563
}
@@ -625,7 +627,9 @@ impl predicates_core::reflection::PredicateReflection for InCodePredicate {
625627
}
626628

627629
/// Nested `Predicate`s of the current `Predicate`.
628-
fn children<'a>(&'a self) -> Box<dyn Iterator<Item = predicates_core::reflection::Child<'a>> + 'a> {
630+
fn children<'a>(
631+
&'a self,
632+
) -> Box<dyn Iterator<Item = predicates_core::reflection::Child<'a>> + 'a> {
629633
self.0.children()
630634
}
631635
}
@@ -759,7 +763,9 @@ impl predicates_core::reflection::PredicateReflection for BytesContentOutputPred
759763
}
760764

761765
/// Nested `Predicate`s of the current `Predicate`.
762-
fn children<'a>(&'a self) -> Box<dyn Iterator<Item = predicates_core::reflection::Child<'a>> + 'a> {
766+
fn children<'a>(
767+
&'a self,
768+
) -> Box<dyn Iterator<Item = predicates_core::reflection::Child<'a>> + 'a> {
763769
self.0.children()
764770
}
765771
}
@@ -838,7 +844,9 @@ impl predicates_core::reflection::PredicateReflection for StrContentOutputPredic
838844
}
839845

840846
/// Nested `Predicate`s of the current `Predicate`.
841-
fn children<'a>(&'a self) -> Box<dyn Iterator<Item = predicates_core::reflection::Child<'a>> + 'a> {
847+
fn children<'a>(
848+
&'a self,
849+
) -> Box<dyn Iterator<Item = predicates_core::reflection::Child<'a>> + 'a> {
842850
self.0.children()
843851
}
844852
}
@@ -929,7 +937,9 @@ where
929937
}
930938

931939
/// Nested `Predicate`s of the current `Predicate`.
932-
fn children<'a>(&'a self) -> Box<dyn Iterator<Item = predicates_core::reflection::Child<'a>> + 'a> {
940+
fn children<'a>(
941+
&'a self,
942+
) -> Box<dyn Iterator<Item = predicates_core::reflection::Child<'a>> + 'a> {
933943
self.0.children()
934944
}
935945
}

0 commit comments

Comments
 (0)