func _KeyserverStep_OneofMarshaler(msg proto1.Message, b *proto1.Buffer) error { m := msg.(*KeyserverStep) // type switch x := m.Type.(type) { case *KeyserverStep_Update: _ = b.EncodeVarint(2<<3 | proto1.WireBytes) if err := b.EncodeMessage(x.Update); err != nil { return err } case *KeyserverStep_EpochDelimiter: _ = b.EncodeVarint(3<<3 | proto1.WireBytes) if err := b.EncodeMessage(x.EpochDelimiter); err != nil { return err } case *KeyserverStep_ReplicaSigned: _ = b.EncodeVarint(4<<3 | proto1.WireBytes) if err := b.EncodeMessage(x.ReplicaSigned); err != nil { return err } case *KeyserverStep_VerifierSigned: _ = b.EncodeVarint(5<<3 | proto1.WireBytes) if err := b.EncodeMessage(x.VerifierSigned); err != nil { return err } case nil: default: return fmt.Errorf("KeyserverStep.Type has unexpected type %T", x) } return nil }
func _Communique_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { m := msg.(*Communique) // union switch x := m.Union.(type) { case *Communique_Number: _ = b.EncodeVarint(5<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Number)) case *Communique_Name: _ = b.EncodeVarint(6<<3 | proto.WireBytes) _ = b.EncodeStringBytes(x.Name) case *Communique_Data: _ = b.EncodeVarint(7<<3 | proto.WireBytes) _ = b.EncodeRawBytes(x.Data) case *Communique_TempC: _ = b.EncodeVarint(8<<3 | proto.WireFixed64) _ = b.EncodeFixed64(math.Float64bits(x.TempC)) case *Communique_Height: _ = b.EncodeVarint(9<<3 | proto.WireFixed32) _ = b.EncodeFixed32(uint64(math.Float32bits(x.Height))) case *Communique_Today: _ = b.EncodeVarint(10<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Today)) case *Communique_Maybe: t := uint64(0) if x.Maybe { t = 1 } _ = b.EncodeVarint(11<<3 | proto.WireVarint) _ = b.EncodeVarint(t) case *Communique_Delta_: _ = b.EncodeVarint(12<<3 | proto.WireVarint) _ = b.EncodeZigzag32(uint64(x.Delta)) case *Communique_Msg: _ = b.EncodeVarint(13<<3 | proto.WireBytes) if err := b.EncodeMessage(x.Msg); err != nil { return err } case *Communique_Somegroup: _ = b.EncodeVarint(14<<3 | proto.WireStartGroup) if err := b.Marshal(x.Somegroup); err != nil { return err } _ = b.EncodeVarint(14<<3 | proto.WireEndGroup) case nil: default: return fmt.Errorf("Communique.Union has unexpected type %T", x) } return nil }
func _VerifierStep_OneofMarshaler(msg proto1.Message, b *proto1.Buffer) error { m := msg.(*VerifierStep) // type switch x := m.Type.(type) { case *VerifierStep_Update: _ = b.EncodeVarint(1<<3 | proto1.WireBytes) if err := b.EncodeMessage(x.Update); err != nil { return err } case *VerifierStep_Epoch: _ = b.EncodeVarint(2<<3 | proto1.WireBytes) if err := b.EncodeMessage(x.Epoch); err != nil { return err } case nil: default: return fmt.Errorf("VerifierStep.Type has unexpected type %T", x) } return nil }
func _Value_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { m := msg.(*Value) // kind switch x := m.Kind.(type) { case *Value_NullValue: _ = b.EncodeVarint(1<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.NullValue)) case *Value_NumberValue: _ = b.EncodeVarint(2<<3 | proto.WireFixed64) _ = b.EncodeFixed64(math.Float64bits(x.NumberValue)) case *Value_StringValue: _ = b.EncodeVarint(3<<3 | proto.WireBytes) _ = b.EncodeStringBytes(x.StringValue) case *Value_BoolValue: t := uint64(0) if x.BoolValue { t = 1 } _ = b.EncodeVarint(4<<3 | proto.WireVarint) _ = b.EncodeVarint(t) case *Value_StructValue: _ = b.EncodeVarint(5<<3 | proto.WireBytes) if err := b.EncodeMessage(x.StructValue); err != nil { return err } case *Value_ListValue: _ = b.EncodeVarint(6<<3 | proto.WireBytes) if err := b.EncodeMessage(x.ListValue); err != nil { return err } case nil: default: return fmt.Errorf("Value.Kind has unexpected type %T", x) } return nil }