-
Notifications
You must be signed in to change notification settings - Fork 87
/
ip_address.go
36 lines (31 loc) · 1.29 KB
/
ip_address.go
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
27
28
29
30
31
32
33
34
35
// Code generated by github.com/actgardner/gogen-avro. DO NOT EDIT.
/*
* SOURCE:
* union.avsc
*/
package avro
import (
"io"
"github.com/actgardner/gogen-avro/vm/types"
)
func writeIp_address(r Ip_address, w io.Writer) error {
_, err := w.Write(r[:])
return err
}
type Ip_address [16]byte
func (_ *Ip_address) SetBoolean(v bool) { panic("Unsupported operation") }
func (_ *Ip_address) SetInt(v int32) { panic("Unsupported operation") }
func (_ *Ip_address) SetLong(v int64) { panic("Unsupported operation") }
func (_ *Ip_address) SetFloat(v float32) { panic("Unsupported operation") }
func (_ *Ip_address) SetDouble(v float64) { panic("Unsupported operation") }
func (r *Ip_address) SetBytes(v []byte) {
copy((*r)[:], v)
}
func (_ *Ip_address) SetString(v string) { panic("Unsupported operation") }
func (_ *Ip_address) SetUnionElem(v int64) { panic("Unsupported operation") }
func (_ *Ip_address) Get(i int) types.Field { panic("Unsupported operation") }
func (_ *Ip_address) Clear(i int) { panic("Unsupported operation") }
func (_ *Ip_address) AppendMap(key string) types.Field { panic("Unsupported operation") }
func (_ *Ip_address) AppendArray() types.Field { panic("Unsupported operation") }
func (_ *Ip_address) Finalize() { }
func (_ *Ip_address) SetDefault(i int) { panic("Unsupported operation") }