From 140be111c6c9615ef57cf2574f28c119e23053bf Mon Sep 17 00:00:00 2001 From: phoenix Date: Sat, 21 Jun 2025 16:34:46 -0400 Subject: [PATCH] Warning fixes --- src/types.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types.rs b/src/types.rs index c78713f..a43d92e 100644 --- a/src/types.rs +++ b/src/types.rs @@ -19,7 +19,7 @@ pub enum MetadataType { } impl MetadataType { - pub fn from_str(s: &str) -> Self { + pub fn from_std_str(s: &str) -> Self { MetadataType::String(s.to_string()) }