From f71b6b8c925280ee361d99107c3d00b7407b90d7 Mon Sep 17 00:00:00 2001 From: stelzo Date: Thu, 22 Jun 2023 09:37:07 +0200 Subject: [PATCH] fmt --- tests/e2e_test.rs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tests/e2e_test.rs b/tests/e2e_test.rs index 97d4bfa..f04c926 100644 --- a/tests/e2e_test.rs +++ b/tests/e2e_test.rs @@ -7,16 +7,16 @@ use std::fmt::Debug; use std::{cmp, fmt}; fn convert_from_into(cloud: Vec

) - where - C: FallibleIterator +where + C: FallibleIterator + TryFrom + TryFrom> + TryInto, - ::Error: Debug, - >::Error: Debug, - >::Error: Debug, - >>::Error: Debug, - P: Clone + fmt::Debug + cmp::PartialEq, + ::Error: Debug, + >::Error: Debug, + >::Error: Debug, + >>::Error: Debug, + P: Clone + fmt::Debug + cmp::PartialEq, { let copy = cloud.clone(); let msg: Result = C::try_from(cloud).unwrap().try_into();