From 26476f54c9108af5709116c43d93727ae0e07f53 Mon Sep 17 00:00:00 2001 From: Ryo Yamashita Date: Thu, 9 Nov 2023 07:59:04 +0900 Subject: [PATCH] =?UTF-8?q?=E7=9B=B8=E4=BA=92=E5=8F=82=E7=85=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- crates/voicevox_core/src/infer.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/voicevox_core/src/infer.rs b/crates/voicevox_core/src/infer.rs index 560306de1..deb3a994d 100644 --- a/crates/voicevox_core/src/infer.rs +++ b/crates/voicevox_core/src/infer.rs @@ -69,13 +69,13 @@ pub(crate) trait SupportsInferenceOutput: InferenceRuntime { pub(crate) trait InferenceSignature: Sized + Send + 'static { type Kind: Enum + Copy; - type Input: InferenceInputSignature; + type Input: InferenceInputSignature; type Output: Send; const KIND: Self::Kind; } pub(crate) trait InferenceInputSignature: Send + 'static { - type Signature: InferenceSignature; + type Signature: InferenceSignature; } pub(crate) struct InferenceSessionSet(