diff --git a/viz-core/src/handler/either.rs b/viz-core/src/handler/either.rs index 5a3ad828..7acbee8f 100644 --- a/viz-core/src/handler/either.rs +++ b/viz-core/src/handler/either.rs @@ -19,7 +19,7 @@ where type Output = O; async fn call(&self, i: I) -> Self::Output { - match &self { + match self { Self::Left(l) => l.call(i), Self::Right(r) => r.call(i), }