From 0eb6de377ce3d814c23001be35a7e98ec941c716 Mon Sep 17 00:00:00 2001 From: mykola2312 <49044616+mykola2312@users.noreply.github.com> Date: Tue, 29 Aug 2023 07:56:52 +0300 Subject: [PATCH] make FString pub --- src/fot/fstring.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/fot/fstring.rs b/src/fot/fstring.rs index 97ad53c..0cf67b8 100644 --- a/src/fot/fstring.rs +++ b/src/fot/fstring.rs @@ -16,9 +16,9 @@ pub enum FStringEncoding { #[derive(Debug)] pub struct FString { - encoding: FStringEncoding, - enc_len: usize, - str: String + pub encoding: FStringEncoding, + pub enc_len: usize, + pub str: String } impl Decoder for FString {