From f929c7052d1d4648feb3c2a5bffa7d47b58cc829 Mon Sep 17 00:00:00 2001 From: wizard <112275929+famouswizard@users.noreply.github.com> Date: Sat, 21 Dec 2024 16:53:29 +0300 Subject: [PATCH] fix: trait methods without implementations must end with a semicolon --- common/src/serializable.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/serializable.rs b/common/src/serializable.rs index cafae6ffb..76eaecc58 100644 --- a/common/src/serializable.rs +++ b/common/src/serializable.rs @@ -29,7 +29,7 @@ where fn deserialize_from_file(path: &Path) -> Result where - Self: Sized, + Self: Sized; { let mut file = File::open(path)?; let mut contents = String::new();