From 8d0598c678ead85f3e78e57ee0c7f3e5c868fda3 Mon Sep 17 00:00:00 2001 From: Ottatop Date: Sat, 21 Oct 2023 03:02:39 -0500 Subject: [PATCH] Make TagProperties fields pub --- api/rust/src/tag.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/api/rust/src/tag.rs b/api/rust/src/tag.rs index 1aa1546..45714d9 100644 --- a/api/rust/src/tag.rs +++ b/api/rust/src/tag.rs @@ -139,11 +139,11 @@ pub struct TagHandle(pub(crate) TagId); #[derive(Debug)] pub struct TagProperties { /// Whether or not the tag is active. - active: Option, + pub active: Option, /// The tag's name. - name: Option, + pub name: Option, /// The output the tag is on. - output: Option, + pub output: Option, } impl TagHandle {