File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
rs-matter/src/data_model/objects Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -40,9 +40,12 @@ bitflags! {
40
40
const READ_PRIVILEGE_MASK = Self :: NEED_VIEW . bits | Self :: NEED_MANAGE . bits | Self :: NEED_OPERATE . bits | Self :: NEED_ADMIN . bits;
41
41
const WRITE_PRIVILEGE_MASK = Self :: NEED_MANAGE . bits | Self :: NEED_OPERATE . bits | Self :: NEED_ADMIN . bits;
42
42
const RV = Self :: READ . bits | Self :: NEED_VIEW . bits;
43
+ const RF = Self :: READ . bits | Self :: FAB_SCOPED . bits;
44
+ const RA = Self :: READ . bits | Self :: NEED_ADMIN . bits;
43
45
const RWVA = Self :: READ . bits | Self :: WRITE . bits | Self :: NEED_VIEW . bits | Self :: NEED_ADMIN . bits;
44
46
const RWFA = Self :: READ . bits | Self :: WRITE . bits | Self :: FAB_SCOPED . bits | Self :: NEED_ADMIN . bits;
45
47
const RWVM = Self :: READ . bits | Self :: WRITE . bits | Self :: NEED_VIEW . bits | Self :: NEED_MANAGE . bits;
48
+ const RWFVM = Self :: READ . bits | Self :: WRITE . bits | Self :: FAB_SCOPED . bits |Self :: NEED_VIEW . bits | Self :: NEED_MANAGE . bits;
46
49
}
47
50
}
48
51
@@ -79,6 +82,10 @@ bitflags! {
79
82
const NULLABLE = 0x08 ; // Short: X
80
83
81
84
const SN = Self :: SCENE . bits | Self :: PERSISTENT . bits;
85
+ const S = Self :: SCENE . bits;
86
+ const N = Self :: PERSISTENT . bits;
87
+ const F = Self :: FIXED . bits;
88
+ const X = Self :: NULLABLE . bits;
82
89
}
83
90
}
84
91
You can’t perform that action at this time.
0 commit comments