We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b73c65d commit 5a25904Copy full SHA for 5a25904
rs-matter/src/data_model/objects/attribute.rs
@@ -72,10 +72,10 @@ bitflags! {
72
#[derive(Default)]
73
pub struct Quality: u8 {
74
const NONE = 0x00;
75
- const SCENE = 0x01;
76
- const PERSISTENT = 0x02;
77
- const FIXED = 0x03;
78
- const NULLABLE = 0x04;
+ const SCENE = 0x01; // Short: S
+ const PERSISTENT = 0x02; // Short: N
+ const FIXED = 0x04; // Short: F
+ const NULLABLE = 0x08; // Short: X
79
}
80
81
0 commit comments