blob: 2951a64652948b0c8416698790cfdbb51b8fbb89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// Code generated by "stringer -linecomment -type=V3PrivilegesRequired"; DO NOT EDIT.
package feed
import "strconv"
func _() {
// An "invalid array index" compiler error signifies that the constant values have changed.
// Re-run the stringer command to generate them again.
var x [1]struct{}
_ = x[V3PRNone-0]
_ = x[V3PRLow-1]
_ = x[V3PRMedium-2]
_ = x[V3PRHigh-3]
}
const _V3PrivilegesRequired_name = "NONELOWMEDIUMHIGH"
var _V3PrivilegesRequired_index = [...]uint8{0, 4, 7, 13, 17}
func (i V3PrivilegesRequired) String() string {
if i >= V3PrivilegesRequired(len(_V3PrivilegesRequired_index)-1) {
return "V3PrivilegesRequired(" + strconv.FormatInt(int64(i), 10) + ")"
}
return _V3PrivilegesRequired_name[_V3PrivilegesRequired_index[i]:_V3PrivilegesRequired_index[i+1]]
}
|