Make TagProperties fields pub

This commit is contained in:
Ottatop 2023-10-21 03:02:39 -05:00
parent 8c86ecdb47
commit 8d0598c678

View file

@ -139,11 +139,11 @@ pub struct TagHandle(pub(crate) TagId);
#[derive(Debug)] #[derive(Debug)]
pub struct TagProperties { pub struct TagProperties {
/// Whether or not the tag is active. /// Whether or not the tag is active.
active: Option<bool>, pub active: Option<bool>,
/// The tag's name. /// The tag's name.
name: Option<String>, pub name: Option<String>,
/// The output the tag is on. /// The output the tag is on.
output: Option<OutputHandle>, pub output: Option<OutputHandle>,
} }
impl TagHandle { impl TagHandle {