package example
import "git.sr.ht/~sircmpwn/go-bare/example"
Index ¶
- type Address
- type Customer
- func (t *Customer) Decode(data []byte) error
- func (t *Customer) Encode() ([]byte, error)
- func (_ Customer) IsUnion()
- type Department
- type Employee
- func (t *Employee) Decode(data []byte) error
- func (t *Employee) Encode() ([]byte, error)
- func (_ Employee) IsUnion()
- type Person
- type PublicKey
- type TerminatedEmployee
- func (t *TerminatedEmployee) Decode(data []byte) error
- func (t *TerminatedEmployee) Encode() ([]byte, error)
- func (_ TerminatedEmployee) IsUnion()
- type Time
Types ¶
type Address ¶
type Address struct { Address [4]string `bare:"address"` City string `bare:"city"` State string `bare:"state"` Country string `bare:"country"` }
func (*Address) Decode ¶
func (*Address) Encode ¶
type Customer ¶
type Customer struct { Name string `bare:"name"` Email string `bare:"email"` Address Address `bare:"address"` Orders []struct { OrderId int64 `bare:"orderId"` Quantity int32 `bare:"quantity"` } `bare:"orders"` Metadata map[string][]byte `bare:"metadata"` }
func (*Customer) Decode ¶
func (*Customer) Encode ¶
func (Customer) IsUnion ¶
func (_ Customer) IsUnion()
type Department ¶
type Department uint
const ( ACCOUNTING Department = 0 ADMINISTRATION Department = 1 CUSTOMER_SERVICE Department = 2 DEVELOPMENT Department = 3 JSMITH Department = 99 )
func (Department) String ¶
func (t Department) String() string
type Employee ¶
type Employee struct { Name string `bare:"name"` Email string `bare:"email"` Address Address `bare:"address"` Department Department `bare:"department"` HireDate Time `bare:"hireDate"` PublicKey *PublicKey `bare:"publicKey"` Metadata map[string][]byte `bare:"metadata"` }
func (*Employee) Decode ¶
func (*Employee) Encode ¶
func (Employee) IsUnion ¶
func (_ Employee) IsUnion()
type Person ¶
type Person interface { bare.Union }
type PublicKey ¶
type PublicKey [128]byte
func (*PublicKey) Decode ¶
func (*PublicKey) Encode ¶
type TerminatedEmployee ¶
type TerminatedEmployee struct{}
func (*TerminatedEmployee) Decode ¶
func (t *TerminatedEmployee) Decode(data []byte) error
func (*TerminatedEmployee) Encode ¶
func (t *TerminatedEmployee) Encode() ([]byte, error)
func (TerminatedEmployee) IsUnion ¶
func (_ TerminatedEmployee) IsUnion()
type Time ¶
func (*Time) Unmarshal ¶
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
example/basic | |
example/stream |
- Version
- v0.0.0-20210406120253-ab86bc2846d9 (latest)
- Published
- Apr 6, 2021
- Platform
- linux/amd64
- Imports
- 4 packages
- Last checked
- 1 month ago –
Tools for package owners.