From 2150cb7f7aba95ae9e7e2ebe8c01e750d2099d1c Mon Sep 17 00:00:00 2001 From: OBJNULL Date: Fri, 18 Apr 2025 15:54:38 -0400 Subject: [PATCH] Made feilds public --- project/src/action.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/project/src/action.rs b/project/src/action.rs index d42b643..27af0d4 100644 --- a/project/src/action.rs +++ b/project/src/action.rs @@ -2,9 +2,9 @@ // Structures pub struct Transaction { - description: String, - date: String, - amount: f64, + pub description: String, + pub date: String, + pub amount: f64, } // Implementations