コード例 #1
0
ファイル: enumstringer.pb.go プロジェクト: stevvooe/protobuf
func (x TheTestEnum) MarshalJSON() ([]byte, error) {
	return proto.MarshalJSONEnum(TheTestEnum_name, int32(x))
}
コード例 #2
0
ファイル: error.pb.go プロジェクト: emc-xchallenge/bbs
func (x Error_Type) MarshalJSON() ([]byte, error) {
	return proto.MarshalJSONEnum(Error_Type_name, int32(x))
}
コード例 #3
0
ファイル: task.pb.go プロジェクト: Gerg/bbs
func (x Task_State) MarshalJSON() ([]byte, error) {
	return proto.MarshalJSONEnum(Task_State_name, int32(x))
}
コード例 #4
0
ファイル: volume_mount.pb.go プロジェクト: timani/bbs
func (x BindMountMode) MarshalJSON() ([]byte, error) {
	return proto.MarshalJSONEnum(BindMountMode_name, int32(x))
}
コード例 #5
0
ファイル: enumcustomname.pb.go プロジェクト: otsimo/otsimoctl
func (x MyCustomUnprefixedEnum) MarshalJSON() ([]byte, error) {
	return proto.MarshalJSONEnum(MyCustomUnprefixedEnum_name, int32(x))
}
コード例 #6
0
ファイル: enumcustomname.pb.go プロジェクト: otsimo/otsimoctl
func (x MyEnumWithEnumStringer) MarshalJSON() ([]byte, error) {
	return proto.MarshalJSONEnum(MyEnumWithEnumStringer_name, int32(x))
}