mirror of
https://github.com/pinnacle-comp/pinnacle.git
synced 2025-01-17 18:11:30 +01:00
Make TagProperties fields pub
This commit is contained in:
parent
8c86ecdb47
commit
8d0598c678
1 changed files with 3 additions and 3 deletions
|
@ -139,11 +139,11 @@ pub struct TagHandle(pub(crate) TagId);
|
|||
#[derive(Debug)]
|
||||
pub struct TagProperties {
|
||||
/// Whether or not the tag is active.
|
||||
active: Option<bool>,
|
||||
pub active: Option<bool>,
|
||||
/// The tag's name.
|
||||
name: Option<String>,
|
||||
pub name: Option<String>,
|
||||
/// The output the tag is on.
|
||||
output: Option<OutputHandle>,
|
||||
pub output: Option<OutputHandle>,
|
||||
}
|
||||
|
||||
impl TagHandle {
|
||||
|
|
Loading…
Reference in a new issue