blob: 675ea4dfffa2d297b193cc7f2ff436cfc0500864 [file] [log] [blame]
// Code generated by fidlgen; DO NOT EDIT.
package name
const (
EnabledFlag bool = true
Offset int8 = -33
Answer uint16 = 42
AnswerInBinary uint16 = 42
PopulationUsa2018 uint32 = 330000000
Diamond uint64 = 1746410393481133080
Fuchsia uint64 = 4054509061583223046
Username string = "\"squeenze\""
MinTemp float32 = -273.15
ConversionFactor float64 = 1.41421
EnumVal EnumType = EnumTypeValue
EnumPrimitiveVal int32 = EnumTypeValue
EnumTrue EnumType = EnumTypeTrue
EnumPrimitiveTrue int32 = EnumTypeTrue
BitsVal BitsType = BitsTypeValue
BitsPrimitiveVal int32 = BitsTypeValue
BitsTrue BitsType = BitsTypeTrue
BitsPrimitiveTrue int32 = BitsTypeTrue
)
type EnumType int32
const (
EnumTypeValue EnumType = 1
EnumTypeTrue EnumType = 2
)
func (_ EnumType) I_EnumValues() []EnumType {
return []EnumType{
EnumTypeValue,
EnumTypeTrue,
}
}
func (x EnumType) String() string {
switch x {
case 1:
return "Value"
case 2:
return "True"
}
return "Unknown"
}
type BitsType int32
const (
BitsTypeValue BitsType = 1
BitsTypeTrue BitsType = 2
)
func (_ BitsType) I_EnumValues() []BitsType {
return []BitsType{
BitsTypeValue,
BitsTypeTrue,
}
}
func (x BitsType) String() string {
switch x {
case 1:
return "Value"
case 2:
return "True"
}
return "Unknown"
}