From 586c206e50bb8e9a1376f65975f1c9916b1cde7e Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sun, 29 Mar 2026 15:00:09 +0800 Subject: Apply clippy fixes --- mingling/src/asset/dispatcher.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'mingling/src/asset/dispatcher.rs') diff --git a/mingling/src/asset/dispatcher.rs b/mingling/src/asset/dispatcher.rs index 09bd386..13e35f7 100644 --- a/mingling/src/asset/dispatcher.rs +++ b/mingling/src/asset/dispatcher.rs @@ -188,8 +188,8 @@ impl std::ops::Deref for Dispatchers { } } -impl Into>> for Dispatchers { - fn into(self) -> Vec> { - self.dispatcher +impl From for Vec> { + fn from(val: Dispatchers) -> Self { + val.dispatcher } } -- cgit