From: Ramakrishnan Muthukrishnan Date: Sun, 8 Dec 2024 16:43:07 +0000 (+0530) Subject: make property struct public X-Git-Url: https://git.rkrishnan.org/%5B/%5D%20/file/readonly?a=commitdiff_plain;h=8f6aaf4c5cd2ae7ec1d0214730674a12703612e1;p=pihpsdr.git make property struct public --- diff --git a/rust/property/src/lib.rs b/rust/property/src/lib.rs index c7be823..f290869 100644 --- a/rust/property/src/lib.rs +++ b/rust/property/src/lib.rs @@ -1,6 +1,6 @@ use std::{collections::HashMap, io::{Read, Write}, path::Path}; -struct Property { +pub struct Property { props: HashMap, path: String, }