aircraftlib

package
v0.0.0-...-abb9fcd Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 16, 2014 License: MIT Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type A320

type A320 C.Struct

func NewA320

func NewA320(s *C.Segment) A320

func NewRootA320

func NewRootA320(s *C.Segment) A320

func ReadRootA320

func ReadRootA320(s *C.Segment) A320

func (A320) Base

func (s A320) Base() PlaneBase

func (A320) MarshalJSON

func (s A320) MarshalJSON() (bs []byte, err error)

capn.JSON_enabled == false so we stub MarshallJSON().

func (A320) SetBase

func (s A320) SetBase(v PlaneBase)

type A320_List

type A320_List C.PointerList

func NewA320List

func NewA320List(s *C.Segment, sz int) A320_List

func (A320_List) At

func (s A320_List) At(i int) A320

func (A320_List) Len

func (s A320_List) Len() int

func (A320_List) ToArray

func (s A320_List) ToArray() []A320

type Aircraft

type Aircraft C.Struct

func NewAircraft

func NewAircraft(s *C.Segment) Aircraft

func NewRootAircraft

func NewRootAircraft(s *C.Segment) Aircraft

func ReadRootAircraft

func ReadRootAircraft(s *C.Segment) Aircraft

func (Aircraft) A320

func (s Aircraft) A320() A320

func (Aircraft) B737

func (s Aircraft) B737() B737

func (Aircraft) F16

func (s Aircraft) F16() F16

func (Aircraft) MarshalJSON

func (s Aircraft) MarshalJSON() (bs []byte, err error)

capn.JSON_enabled == false so we stub MarshallJSON().

func (Aircraft) SetA320

func (s Aircraft) SetA320(v A320)

func (Aircraft) SetB737

func (s Aircraft) SetB737(v B737)

func (Aircraft) SetF16

func (s Aircraft) SetF16(v F16)

func (Aircraft) SetVoid

func (s Aircraft) SetVoid()

func (Aircraft) Which

func (s Aircraft) Which() Aircraft_Which

type Aircraft_List

type Aircraft_List C.PointerList

func NewAircraftList

func NewAircraftList(s *C.Segment, sz int) Aircraft_List

func (Aircraft_List) At

func (s Aircraft_List) At(i int) Aircraft

func (Aircraft_List) Len

func (s Aircraft_List) Len() int

func (Aircraft_List) ToArray

func (s Aircraft_List) ToArray() []Aircraft

type Aircraft_Which

type Aircraft_Which uint16
const (
	AIRCRAFT_VOID Aircraft_Which = 0
	AIRCRAFT_B737 Aircraft_Which = 1
	AIRCRAFT_A320 Aircraft_Which = 2
	AIRCRAFT_F16  Aircraft_Which = 3
)

type Airport

type Airport uint16
const (
	AIRPORT_NONE Airport = 0
	AIRPORT_JFK  Airport = 1
	AIRPORT_LAX  Airport = 2
	AIRPORT_SFO  Airport = 3
	AIRPORT_LUV  Airport = 4
	AIRPORT_DFW  Airport = 5
	AIRPORT_TEST Airport = 6
)

func (Airport) MarshalJSON

func (s Airport) MarshalJSON() (bs []byte, err error)

capn.JSON_enabled == false so we stub MarshallJSON().

func (Airport) String

func (c Airport) String() string

type Airport_List

type Airport_List C.PointerList

func NewAirportList

func NewAirportList(s *C.Segment, sz int) Airport_List

func (Airport_List) At

func (s Airport_List) At(i int) Airport

func (Airport_List) Len

func (s Airport_List) Len() int

func (Airport_List) ToArray

func (s Airport_List) ToArray() []Airport

type B737

type B737 C.Struct

func NewB737

func NewB737(s *C.Segment) B737

func NewRootB737

func NewRootB737(s *C.Segment) B737

func ReadRootB737

func ReadRootB737(s *C.Segment) B737

func (B737) Base

func (s B737) Base() PlaneBase

func (B737) MarshalJSON

func (s B737) MarshalJSON() (bs []byte, err error)

capn.JSON_enabled == false so we stub MarshallJSON().

func (B737) SetBase

func (s B737) SetBase(v PlaneBase)

type B737_List

type B737_List C.PointerList

func NewB737List

func NewB737List(s *C.Segment, sz int) B737_List

func (B737_List) At

func (s B737_List) At(i int) B737

func (B737_List) Len

func (s B737_List) Len() int

func (B737_List) ToArray

func (s B737_List) ToArray() []B737

type Bag

type Bag C.Struct

func NewBag

func NewBag(s *C.Segment) Bag

func NewRootBag

func NewRootBag(s *C.Segment) Bag

func ReadRootBag

func ReadRootBag(s *C.Segment) Bag

func (Bag) Counter

func (s Bag) Counter() Counter

func (Bag) MarshalJSON

func (s Bag) MarshalJSON() (bs []byte, err error)

capn.JSON_enabled == false so we stub MarshallJSON().

func (Bag) SetCounter

func (s Bag) SetCounter(v Counter)

type Bag_List

type Bag_List C.PointerList

func NewBagList

func NewBagList(s *C.Segment, sz int) Bag_List

func (Bag_List) At

func (s Bag_List) At(i int) Bag

func (Bag_List) Len

func (s Bag_List) Len() int

func (Bag_List) ToArray

func (s Bag_List) ToArray() []Bag

type Counter

type Counter C.Struct

func NewCounter

func NewCounter(s *C.Segment) Counter

func NewRootCounter

func NewRootCounter(s *C.Segment) Counter

func ReadRootCounter

func ReadRootCounter(s *C.Segment) Counter

func (Counter) MarshalJSON

func (s Counter) MarshalJSON() (bs []byte, err error)

capn.JSON_enabled == false so we stub MarshallJSON().

func (Counter) SetSize

func (s Counter) SetSize(v int64)

func (Counter) SetWordlist

func (s Counter) SetWordlist(v C.TextList)

func (Counter) SetWords

func (s Counter) SetWords(v string)

func (Counter) Size

func (s Counter) Size() int64

func (Counter) Wordlist

func (s Counter) Wordlist() C.TextList

func (Counter) Words

func (s Counter) Words() string

type Counter_List

type Counter_List C.PointerList

func NewCounterList

func NewCounterList(s *C.Segment, sz int) Counter_List

func (Counter_List) At

func (s Counter_List) At(i int) Counter

func (Counter_List) Len

func (s Counter_List) Len() int

func (Counter_List) ToArray

func (s Counter_List) ToArray() []Counter

type Endpoint

type Endpoint C.Struct

func NewEndpoint

func NewEndpoint(s *C.Segment) Endpoint

func NewRootEndpoint

func NewRootEndpoint(s *C.Segment) Endpoint

func ReadRootEndpoint

func ReadRootEndpoint(s *C.Segment) Endpoint

func (Endpoint) Hostname

func (s Endpoint) Hostname() string

func (Endpoint) Ip

func (s Endpoint) Ip() net.IP

func (Endpoint) MarshalJSON

func (s Endpoint) MarshalJSON() (bs []byte, err error)

capn.JSON_enabled == false so we stub MarshallJSON().

func (Endpoint) Port

func (s Endpoint) Port() int16

func (Endpoint) SetHostname

func (s Endpoint) SetHostname(v string)

func (Endpoint) SetIp

func (s Endpoint) SetIp(v net.IP)

func (Endpoint) SetPort

func (s Endpoint) SetPort(v int16)

type Endpoint_List

type Endpoint_List C.PointerList

func NewEndpointList

func NewEndpointList(s *C.Segment, sz int) Endpoint_List

func (Endpoint_List) At

func (s Endpoint_List) At(i int) Endpoint

func (Endpoint_List) Len

func (s Endpoint_List) Len() int

func (Endpoint_List) ToArray

func (s Endpoint_List) ToArray() []Endpoint

type F16

type F16 C.Struct

func NewF16

func NewF16(s *C.Segment) F16

func NewRootF16

func NewRootF16(s *C.Segment) F16

func ReadRootF16

func ReadRootF16(s *C.Segment) F16

func (F16) Base

func (s F16) Base() PlaneBase

func (F16) MarshalJSON

func (s F16) MarshalJSON() (bs []byte, err error)

capn.JSON_enabled == false so we stub MarshallJSON().

func (F16) SetBase

func (s F16) SetBase(v PlaneBase)

type F16_List

type F16_List C.PointerList

func NewF16List

func NewF16List(s *C.Segment, sz int) F16_List

func (F16_List) At

func (s F16_List) At(i int) F16

func (F16_List) Len

func (s F16_List) Len() int

func (F16_List) ToArray

func (s F16_List) ToArray() []F16

type HoldsText

type HoldsText C.Struct

func NewHoldsText

func NewHoldsText(s *C.Segment) HoldsText

func NewRootHoldsText

func NewRootHoldsText(s *C.Segment) HoldsText

func ReadRootHoldsText

func ReadRootHoldsText(s *C.Segment) HoldsText

func (HoldsText) Lst

func (s HoldsText) Lst() C.TextList

func (HoldsText) Lstlst

func (s HoldsText) Lstlst() C.PointerList

func (HoldsText) MarshalJSON

func (s HoldsText) MarshalJSON() (bs []byte, err error)

capn.JSON_enabled == false so we stub MarshallJSON().

func (HoldsText) SetLst

func (s HoldsText) SetLst(v C.TextList)

func (HoldsText) SetLstlst

func (s HoldsText) SetLstlst(v C.PointerList)

func (HoldsText) SetTxt

func (s HoldsText) SetTxt(v string)

func (HoldsText) Txt

func (s HoldsText) Txt() string

type HoldsText_List

type HoldsText_List C.PointerList

func NewHoldsTextList

func NewHoldsTextList(s *C.Segment, sz int) HoldsText_List

func (HoldsText_List) At

func (s HoldsText_List) At(i int) HoldsText

func (HoldsText_List) Len

func (s HoldsText_List) Len() int

func (HoldsText_List) ToArray

func (s HoldsText_List) ToArray() []HoldsText

type HoldsVerEmptyList

type HoldsVerEmptyList C.Struct

func NewHoldsVerEmptyList

func NewHoldsVerEmptyList(s *C.Segment) HoldsVerEmptyList

func NewRootHoldsVerEmptyList

func NewRootHoldsVerEmptyList(s *C.Segment) HoldsVerEmptyList

func ReadRootHoldsVerEmptyList

func ReadRootHoldsVerEmptyList(s *C.Segment) HoldsVerEmptyList

func (HoldsVerEmptyList) MarshalJSON

func (s HoldsVerEmptyList) MarshalJSON() (bs []byte, err error)

capn.JSON_enabled == false so we stub MarshallJSON().

func (HoldsVerEmptyList) Mylist

func (s HoldsVerEmptyList) Mylist() VerEmpty_List

func (HoldsVerEmptyList) SetMylist

func (s HoldsVerEmptyList) SetMylist(v VerEmpty_List)

type HoldsVerEmptyList_List

type HoldsVerEmptyList_List C.PointerList

func NewHoldsVerEmptyListList

func NewHoldsVerEmptyListList(s *C.Segment, sz int) HoldsVerEmptyList_List

func (HoldsVerEmptyList_List) At

func (HoldsVerEmptyList_List) Len

func (s HoldsVerEmptyList_List) Len() int

func (HoldsVerEmptyList_List) ToArray

type HoldsVerOneDataList

type HoldsVerOneDataList C.Struct

func NewHoldsVerOneDataList

func NewHoldsVerOneDataList(s *C.Segment) HoldsVerOneDataList

func NewRootHoldsVerOneDataList

func NewRootHoldsVerOneDataList(s *C.Segment) HoldsVerOneDataList

func ReadRootHoldsVerOneDataList

func ReadRootHoldsVerOneDataList(s *C.Segment) HoldsVerOneDataList

func (HoldsVerOneDataList) MarshalJSON

func (s HoldsVerOneDataList) MarshalJSON() (bs []byte, err error)

capn.JSON_enabled == false so we stub MarshallJSON().

func (HoldsVerOneDataList) Mylist

func (HoldsVerOneDataList) SetMylist

func (s HoldsVerOneDataList) SetMylist(v VerOneData_List)

type HoldsVerOneDataList_List

type HoldsVerOneDataList_List C.PointerList

func NewHoldsVerOneDataListList

func NewHoldsVerOneDataListList(s *C.Segment, sz int) HoldsVerOneDataList_List

func (HoldsVerOneDataList_List) At

func (HoldsVerOneDataList_List) Len

func (s HoldsVerOneDataList_List) Len() int

func (HoldsVerOneDataList_List) ToArray

type HoldsVerOnePtrList

type HoldsVerOnePtrList C.Struct

func NewHoldsVerOnePtrList

func NewHoldsVerOnePtrList(s *C.Segment) HoldsVerOnePtrList

func NewRootHoldsVerOnePtrList

func NewRootHoldsVerOnePtrList(s *C.Segment) HoldsVerOnePtrList

func ReadRootHoldsVerOnePtrList

func ReadRootHoldsVerOnePtrList(s *C.Segment) HoldsVerOnePtrList

func (HoldsVerOnePtrList) MarshalJSON

func (s HoldsVerOnePtrList) MarshalJSON() (bs []byte, err error)

capn.JSON_enabled == false so we stub MarshallJSON().

func (HoldsVerOnePtrList) Mylist

func (HoldsVerOnePtrList) SetMylist

func (s HoldsVerOnePtrList) SetMylist(v VerOnePtr_List)

type HoldsVerOnePtrList_List

type HoldsVerOnePtrList_List C.PointerList

func NewHoldsVerOnePtrListList

func NewHoldsVerOnePtrListList(s *C.Segment, sz int) HoldsVerOnePtrList_List

func (HoldsVerOnePtrList_List) At

func (HoldsVerOnePtrList_List) Len

func (s HoldsVerOnePtrList_List) Len() int

func (HoldsVerOnePtrList_List) ToArray

type HoldsVerTwoDataList

type HoldsVerTwoDataList C.Struct

func NewHoldsVerTwoDataList

func NewHoldsVerTwoDataList(s *C.Segment) HoldsVerTwoDataList

func NewRootHoldsVerTwoDataList

func NewRootHoldsVerTwoDataList(s *C.Segment) HoldsVerTwoDataList

func ReadRootHoldsVerTwoDataList

func ReadRootHoldsVerTwoDataList(s *C.Segment) HoldsVerTwoDataList

func (HoldsVerTwoDataList) MarshalJSON

func (s HoldsVerTwoDataList) MarshalJSON() (bs []byte, err error)

capn.JSON_enabled == false so we stub MarshallJSON().

func (HoldsVerTwoDataList) Mylist

func (HoldsVerTwoDataList) SetMylist

func (s HoldsVerTwoDataList) SetMylist(v VerTwoData_List)

type HoldsVerTwoDataList_List

type HoldsVerTwoDataList_List C.PointerList

func NewHoldsVerTwoDataListList

func NewHoldsVerTwoDataListList(s *C.Segment, sz int) HoldsVerTwoDataList_List

func (HoldsVerTwoDataList_List) At

func (HoldsVerTwoDataList_List) Len

func (s HoldsVerTwoDataList_List) Len() int

func (HoldsVerTwoDataList_List) ToArray

type HoldsVerTwoPtrList

type HoldsVerTwoPtrList C.Struct

func NewHoldsVerTwoPtrList

func NewHoldsVerTwoPtrList(s *C.Segment) HoldsVerTwoPtrList

func NewRootHoldsVerTwoPtrList

func NewRootHoldsVerTwoPtrList(s *C.Segment) HoldsVerTwoPtrList

func ReadRootHoldsVerTwoPtrList

func ReadRootHoldsVerTwoPtrList(s *C.Segment) HoldsVerTwoPtrList

func (HoldsVerTwoPtrList) MarshalJSON

func (s HoldsVerTwoPtrList) MarshalJSON() (bs []byte, err error)

capn.JSON_enabled == false so we stub MarshallJSON().

func (HoldsVerTwoPtrList) Mylist

func (HoldsVerTwoPtrList) SetMylist

func (s HoldsVerTwoPtrList) SetMylist(v VerTwoPtr_List)

type HoldsVerTwoPtrList_List

type HoldsVerTwoPtrList_List C.PointerList

func NewHoldsVerTwoPtrListList

func NewHoldsVerTwoPtrListList(s *C.Segment, sz int) HoldsVerTwoPtrList_List

func (HoldsVerTwoPtrList_List) At

func (HoldsVerTwoPtrList_List) Len

func (s HoldsVerTwoPtrList_List) Len() int

func (HoldsVerTwoPtrList_List) ToArray

type HoldsVerTwoTwoList

type HoldsVerTwoTwoList C.Struct

func NewHoldsVerTwoTwoList

func NewHoldsVerTwoTwoList(s *C.Segment) HoldsVerTwoTwoList

func NewRootHoldsVerTwoTwoList

func NewRootHoldsVerTwoTwoList(s *C.Segment) HoldsVerTwoTwoList

func ReadRootHoldsVerTwoTwoList

func ReadRootHoldsVerTwoTwoList(s *C.Segment) HoldsVerTwoTwoList

func (HoldsVerTwoTwoList) MarshalJSON

func (s HoldsVerTwoTwoList) MarshalJSON() (bs []byte, err error)

capn.JSON_enabled == false so we stub MarshallJSON().

func (HoldsVerTwoTwoList) Mylist

func (HoldsVerTwoTwoList) SetMylist

type HoldsVerTwoTwoList_List

type HoldsVerTwoTwoList_List C.PointerList

func NewHoldsVerTwoTwoListList

func NewHoldsVerTwoTwoListList(s *C.Segment, sz int) HoldsVerTwoTwoList_List

func (HoldsVerTwoTwoList_List) At

func (HoldsVerTwoTwoList_List) Len

func (s HoldsVerTwoTwoList_List) Len() int

func (HoldsVerTwoTwoList_List) ToArray

type HoldsVerTwoTwoPlus

type HoldsVerTwoTwoPlus C.Struct

func NewHoldsVerTwoTwoPlus

func NewHoldsVerTwoTwoPlus(s *C.Segment) HoldsVerTwoTwoPlus

func NewRootHoldsVerTwoTwoPlus

func NewRootHoldsVerTwoTwoPlus(s *C.Segment) HoldsVerTwoTwoPlus

func ReadRootHoldsVerTwoTwoPlus

func ReadRootHoldsVerTwoTwoPlus(s *C.Segment) HoldsVerTwoTwoPlus

func (HoldsVerTwoTwoPlus) MarshalJSON

func (s HoldsVerTwoTwoPlus) MarshalJSON() (bs []byte, err error)

capn.JSON_enabled == false so we stub MarshallJSON().

func (HoldsVerTwoTwoPlus) Mylist

func (HoldsVerTwoTwoPlus) SetMylist

func (s HoldsVerTwoTwoPlus) SetMylist(v VerTwoTwoPlus_List)

type HoldsVerTwoTwoPlus_List

type HoldsVerTwoTwoPlus_List C.PointerList

func NewHoldsVerTwoTwoPlusList

func NewHoldsVerTwoTwoPlusList(s *C.Segment, sz int) HoldsVerTwoTwoPlus_List

func (HoldsVerTwoTwoPlus_List) At

func (HoldsVerTwoTwoPlus_List) Len

func (s HoldsVerTwoTwoPlus_List) Len() int

func (HoldsVerTwoTwoPlus_List) ToArray

type PlaneBase

type PlaneBase C.Struct

func NewPlaneBase

func NewPlaneBase(s *C.Segment) PlaneBase

func NewRootPlaneBase

func NewRootPlaneBase(s *C.Segment) PlaneBase

func ReadRootPlaneBase

func ReadRootPlaneBase(s *C.Segment) PlaneBase

func (PlaneBase) CanFly

func (s PlaneBase) CanFly() bool

func (PlaneBase) Capacity

func (s PlaneBase) Capacity() int64

func (PlaneBase) Homes

func (s PlaneBase) Homes() Airport_List

func (PlaneBase) MarshalJSON

func (s PlaneBase) MarshalJSON() (bs []byte, err error)

capn.JSON_enabled == false so we stub MarshallJSON().

func (PlaneBase) MaxSpeed

func (s PlaneBase) MaxSpeed() float64

func (PlaneBase) Name

func (s PlaneBase) Name() string

func (PlaneBase) Rating

func (s PlaneBase) Rating() int64

func (PlaneBase) SetCanFly

func (s PlaneBase) SetCanFly(v bool)

func (PlaneBase) SetCapacity

func (s PlaneBase) SetCapacity(v int64)

func (PlaneBase) SetHomes

func (s PlaneBase) SetHomes(v Airport_List)

func (PlaneBase) SetMaxSpeed

func (s PlaneBase) SetMaxSpeed(v float64)

func (PlaneBase) SetName

func (s PlaneBase) SetName(v string)

func (PlaneBase) SetRating

func (s PlaneBase) SetRating(v int64)

type PlaneBase_List

type PlaneBase_List C.PointerList

func NewPlaneBaseList

func NewPlaneBaseList(s *C.Segment, sz int) PlaneBase_List

func (PlaneBase_List) At

func (s PlaneBase_List) At(i int) PlaneBase

func (PlaneBase_List) Len

func (s PlaneBase_List) Len() int

func (PlaneBase_List) ToArray

func (s PlaneBase_List) ToArray() []PlaneBase

type Regression

type Regression C.Struct

func NewRegression

func NewRegression(s *C.Segment) Regression

func NewRootRegression

func NewRootRegression(s *C.Segment) Regression

func ReadRootRegression

func ReadRootRegression(s *C.Segment) Regression

func (Regression) B0

func (s Regression) B0() float64

func (Regression) Base

func (s Regression) Base() PlaneBase

func (Regression) Beta

func (s Regression) Beta() C.Float64List

func (Regression) MarshalJSON

func (s Regression) MarshalJSON() (bs []byte, err error)

capn.JSON_enabled == false so we stub MarshallJSON().

func (Regression) Planes

func (s Regression) Planes() Aircraft_List

func (Regression) SetB0

func (s Regression) SetB0(v float64)

func (Regression) SetBase

func (s Regression) SetBase(v PlaneBase)

func (Regression) SetBeta

func (s Regression) SetBeta(v C.Float64List)

func (Regression) SetPlanes

func (s Regression) SetPlanes(v Aircraft_List)

func (Regression) SetYmu

func (s Regression) SetYmu(v float64)

func (Regression) SetYsd

func (s Regression) SetYsd(v float64)

func (Regression) Ymu

func (s Regression) Ymu() float64

func (Regression) Ysd

func (s Regression) Ysd() float64

type Regression_List

type Regression_List C.PointerList

func NewRegressionList

func NewRegressionList(s *C.Segment, sz int) Regression_List

func (Regression_List) At

func (s Regression_List) At(i int) Regression

func (Regression_List) Len

func (s Regression_List) Len() int

func (Regression_List) ToArray

func (s Regression_List) ToArray() []Regression

type VerEmpty

type VerEmpty C.Struct

func NewRootVerEmpty

func NewRootVerEmpty(s *C.Segment) VerEmpty

func NewVerEmpty

func NewVerEmpty(s *C.Segment) VerEmpty

func ReadRootVerEmpty

func ReadRootVerEmpty(s *C.Segment) VerEmpty

func (VerEmpty) MarshalJSON

func (s VerEmpty) MarshalJSON() (bs []byte, err error)

capn.JSON_enabled == false so we stub MarshallJSON().

type VerEmpty_List

type VerEmpty_List C.PointerList

func NewVerEmptyList

func NewVerEmptyList(s *C.Segment, sz int) VerEmpty_List

func (VerEmpty_List) At

func (s VerEmpty_List) At(i int) VerEmpty

func (VerEmpty_List) Len

func (s VerEmpty_List) Len() int

func (VerEmpty_List) ToArray

func (s VerEmpty_List) ToArray() []VerEmpty

type VerOneData

type VerOneData C.Struct

func NewRootVerOneData

func NewRootVerOneData(s *C.Segment) VerOneData

func NewVerOneData

func NewVerOneData(s *C.Segment) VerOneData

func ReadRootVerOneData

func ReadRootVerOneData(s *C.Segment) VerOneData

func (VerOneData) MarshalJSON

func (s VerOneData) MarshalJSON() (bs []byte, err error)

capn.JSON_enabled == false so we stub MarshallJSON().

func (VerOneData) SetVal

func (s VerOneData) SetVal(v int16)

func (VerOneData) Val

func (s VerOneData) Val() int16

type VerOneData_List

type VerOneData_List C.PointerList

func NewVerOneDataList

func NewVerOneDataList(s *C.Segment, sz int) VerOneData_List

func (VerOneData_List) At

func (s VerOneData_List) At(i int) VerOneData

func (VerOneData_List) Len

func (s VerOneData_List) Len() int

func (VerOneData_List) ToArray

func (s VerOneData_List) ToArray() []VerOneData

type VerOnePtr

type VerOnePtr C.Struct

func NewRootVerOnePtr

func NewRootVerOnePtr(s *C.Segment) VerOnePtr

func NewVerOnePtr

func NewVerOnePtr(s *C.Segment) VerOnePtr

func ReadRootVerOnePtr

func ReadRootVerOnePtr(s *C.Segment) VerOnePtr

func (VerOnePtr) MarshalJSON

func (s VerOnePtr) MarshalJSON() (bs []byte, err error)

capn.JSON_enabled == false so we stub MarshallJSON().

func (VerOnePtr) Ptr

func (s VerOnePtr) Ptr() VerOneData

func (VerOnePtr) SetPtr

func (s VerOnePtr) SetPtr(v VerOneData)

type VerOnePtr_List

type VerOnePtr_List C.PointerList

func NewVerOnePtrList

func NewVerOnePtrList(s *C.Segment, sz int) VerOnePtr_List

func (VerOnePtr_List) At

func (s VerOnePtr_List) At(i int) VerOnePtr

func (VerOnePtr_List) Len

func (s VerOnePtr_List) Len() int

func (VerOnePtr_List) ToArray

func (s VerOnePtr_List) ToArray() []VerOnePtr

type VerTwoData

type VerTwoData C.Struct

func NewRootVerTwoData

func NewRootVerTwoData(s *C.Segment) VerTwoData

func NewVerTwoData

func NewVerTwoData(s *C.Segment) VerTwoData

func ReadRootVerTwoData

func ReadRootVerTwoData(s *C.Segment) VerTwoData

func (VerTwoData) Duo

func (s VerTwoData) Duo() int64

func (VerTwoData) MarshalJSON

func (s VerTwoData) MarshalJSON() (bs []byte, err error)

capn.JSON_enabled == false so we stub MarshallJSON().

func (VerTwoData) SetDuo

func (s VerTwoData) SetDuo(v int64)

func (VerTwoData) SetVal

func (s VerTwoData) SetVal(v int16)

func (VerTwoData) Val

func (s VerTwoData) Val() int16

type VerTwoDataTwoPtr

type VerTwoDataTwoPtr C.Struct

func NewRootVerTwoDataTwoPtr

func NewRootVerTwoDataTwoPtr(s *C.Segment) VerTwoDataTwoPtr

func NewVerTwoDataTwoPtr

func NewVerTwoDataTwoPtr(s *C.Segment) VerTwoDataTwoPtr

func ReadRootVerTwoDataTwoPtr

func ReadRootVerTwoDataTwoPtr(s *C.Segment) VerTwoDataTwoPtr

func (VerTwoDataTwoPtr) Duo

func (s VerTwoDataTwoPtr) Duo() int64

func (VerTwoDataTwoPtr) MarshalJSON

func (s VerTwoDataTwoPtr) MarshalJSON() (bs []byte, err error)

capn.JSON_enabled == false so we stub MarshallJSON().

func (VerTwoDataTwoPtr) Ptr1

func (s VerTwoDataTwoPtr) Ptr1() VerOneData

func (VerTwoDataTwoPtr) Ptr2

func (s VerTwoDataTwoPtr) Ptr2() VerOneData

func (VerTwoDataTwoPtr) SetDuo

func (s VerTwoDataTwoPtr) SetDuo(v int64)

func (VerTwoDataTwoPtr) SetPtr1

func (s VerTwoDataTwoPtr) SetPtr1(v VerOneData)

func (VerTwoDataTwoPtr) SetPtr2

func (s VerTwoDataTwoPtr) SetPtr2(v VerOneData)

func (VerTwoDataTwoPtr) SetVal

func (s VerTwoDataTwoPtr) SetVal(v int16)

func (VerTwoDataTwoPtr) Val

func (s VerTwoDataTwoPtr) Val() int16

type VerTwoDataTwoPtr_List

type VerTwoDataTwoPtr_List C.PointerList

func NewVerTwoDataTwoPtrList

func NewVerTwoDataTwoPtrList(s *C.Segment, sz int) VerTwoDataTwoPtr_List

func (VerTwoDataTwoPtr_List) At

func (VerTwoDataTwoPtr_List) Len

func (s VerTwoDataTwoPtr_List) Len() int

func (VerTwoDataTwoPtr_List) ToArray

type VerTwoData_List

type VerTwoData_List C.PointerList

func NewVerTwoDataList

func NewVerTwoDataList(s *C.Segment, sz int) VerTwoData_List

func (VerTwoData_List) At

func (s VerTwoData_List) At(i int) VerTwoData

func (VerTwoData_List) Len

func (s VerTwoData_List) Len() int

func (VerTwoData_List) ToArray

func (s VerTwoData_List) ToArray() []VerTwoData

type VerTwoPtr

type VerTwoPtr C.Struct

func NewRootVerTwoPtr

func NewRootVerTwoPtr(s *C.Segment) VerTwoPtr

func NewVerTwoPtr

func NewVerTwoPtr(s *C.Segment) VerTwoPtr

func ReadRootVerTwoPtr

func ReadRootVerTwoPtr(s *C.Segment) VerTwoPtr

func (VerTwoPtr) MarshalJSON

func (s VerTwoPtr) MarshalJSON() (bs []byte, err error)

capn.JSON_enabled == false so we stub MarshallJSON().

func (VerTwoPtr) Ptr1

func (s VerTwoPtr) Ptr1() VerOneData

func (VerTwoPtr) Ptr2

func (s VerTwoPtr) Ptr2() VerOneData

func (VerTwoPtr) SetPtr1

func (s VerTwoPtr) SetPtr1(v VerOneData)

func (VerTwoPtr) SetPtr2

func (s VerTwoPtr) SetPtr2(v VerOneData)

type VerTwoPtr_List

type VerTwoPtr_List C.PointerList

func NewVerTwoPtrList

func NewVerTwoPtrList(s *C.Segment, sz int) VerTwoPtr_List

func (VerTwoPtr_List) At

func (s VerTwoPtr_List) At(i int) VerTwoPtr

func (VerTwoPtr_List) Len

func (s VerTwoPtr_List) Len() int

func (VerTwoPtr_List) ToArray

func (s VerTwoPtr_List) ToArray() []VerTwoPtr

type VerTwoTwoPlus

type VerTwoTwoPlus C.Struct

func NewRootVerTwoTwoPlus

func NewRootVerTwoTwoPlus(s *C.Segment) VerTwoTwoPlus

func NewVerTwoTwoPlus

func NewVerTwoTwoPlus(s *C.Segment) VerTwoTwoPlus

func ReadRootVerTwoTwoPlus

func ReadRootVerTwoTwoPlus(s *C.Segment) VerTwoTwoPlus

func (VerTwoTwoPlus) Duo

func (s VerTwoTwoPlus) Duo() int64

func (VerTwoTwoPlus) Lst3

func (s VerTwoTwoPlus) Lst3() C.Int64List

func (VerTwoTwoPlus) MarshalJSON

func (s VerTwoTwoPlus) MarshalJSON() (bs []byte, err error)

capn.JSON_enabled == false so we stub MarshallJSON().

func (VerTwoTwoPlus) Ptr1

func (VerTwoTwoPlus) Ptr2

func (VerTwoTwoPlus) SetDuo

func (s VerTwoTwoPlus) SetDuo(v int64)

func (VerTwoTwoPlus) SetLst3

func (s VerTwoTwoPlus) SetLst3(v C.Int64List)

func (VerTwoTwoPlus) SetPtr1

func (s VerTwoTwoPlus) SetPtr1(v VerTwoDataTwoPtr)

func (VerTwoTwoPlus) SetPtr2

func (s VerTwoTwoPlus) SetPtr2(v VerTwoDataTwoPtr)

func (VerTwoTwoPlus) SetTre

func (s VerTwoTwoPlus) SetTre(v int64)

func (VerTwoTwoPlus) SetVal

func (s VerTwoTwoPlus) SetVal(v int16)

func (VerTwoTwoPlus) Tre

func (s VerTwoTwoPlus) Tre() int64

func (VerTwoTwoPlus) Val

func (s VerTwoTwoPlus) Val() int16

type VerTwoTwoPlus_List

type VerTwoTwoPlus_List C.PointerList

func NewVerTwoTwoPlusList

func NewVerTwoTwoPlusList(s *C.Segment, sz int) VerTwoTwoPlus_List

func (VerTwoTwoPlus_List) At

func (VerTwoTwoPlus_List) Len

func (s VerTwoTwoPlus_List) Len() int

func (VerTwoTwoPlus_List) ToArray

func (s VerTwoTwoPlus_List) ToArray() []VerTwoTwoPlus

type VoidUnion

type VoidUnion C.Struct

func NewRootVoidUnion

func NewRootVoidUnion(s *C.Segment) VoidUnion

func NewVoidUnion

func NewVoidUnion(s *C.Segment) VoidUnion

func ReadRootVoidUnion

func ReadRootVoidUnion(s *C.Segment) VoidUnion

func (VoidUnion) MarshalJSON

func (s VoidUnion) MarshalJSON() (bs []byte, err error)

capn.JSON_enabled == false so we stub MarshallJSON().

func (VoidUnion) SetA

func (s VoidUnion) SetA()

func (VoidUnion) SetB

func (s VoidUnion) SetB()

func (VoidUnion) Which

func (s VoidUnion) Which() VoidUnion_Which

type VoidUnion_List

type VoidUnion_List C.PointerList

func NewVoidUnionList

func NewVoidUnionList(s *C.Segment, sz int) VoidUnion_List

func (VoidUnion_List) At

func (s VoidUnion_List) At(i int) VoidUnion

func (VoidUnion_List) Len

func (s VoidUnion_List) Len() int

func (VoidUnion_List) ToArray

func (s VoidUnion_List) ToArray() []VoidUnion

type VoidUnion_Which

type VoidUnion_Which uint16
const (
	VOIDUNION_A VoidUnion_Which = 0
	VOIDUNION_B VoidUnion_Which = 1
)

type Wrap2x2

type Wrap2x2 C.Struct

func NewRootWrap2x2

func NewRootWrap2x2(s *C.Segment) Wrap2x2

func NewWrap2x2

func NewWrap2x2(s *C.Segment) Wrap2x2

func ReadRootWrap2x2

func ReadRootWrap2x2(s *C.Segment) Wrap2x2

func (Wrap2x2) MarshalJSON

func (s Wrap2x2) MarshalJSON() (bs []byte, err error)

capn.JSON_enabled == false so we stub MarshallJSON().

func (Wrap2x2) MightNotBeReallyEmpty

func (s Wrap2x2) MightNotBeReallyEmpty() VerTwoDataTwoPtr

func (Wrap2x2) SetMightNotBeReallyEmpty

func (s Wrap2x2) SetMightNotBeReallyEmpty(v VerTwoDataTwoPtr)

type Wrap2x2_List

type Wrap2x2_List C.PointerList

func NewWrap2x2List

func NewWrap2x2List(s *C.Segment, sz int) Wrap2x2_List

func (Wrap2x2_List) At

func (s Wrap2x2_List) At(i int) Wrap2x2

func (Wrap2x2_List) Len

func (s Wrap2x2_List) Len() int

func (Wrap2x2_List) ToArray

func (s Wrap2x2_List) ToArray() []Wrap2x2

type Wrap2x2plus

type Wrap2x2plus C.Struct

func NewRootWrap2x2plus

func NewRootWrap2x2plus(s *C.Segment) Wrap2x2plus

func NewWrap2x2plus

func NewWrap2x2plus(s *C.Segment) Wrap2x2plus

func ReadRootWrap2x2plus

func ReadRootWrap2x2plus(s *C.Segment) Wrap2x2plus

func (Wrap2x2plus) MarshalJSON

func (s Wrap2x2plus) MarshalJSON() (bs []byte, err error)

capn.JSON_enabled == false so we stub MarshallJSON().

func (Wrap2x2plus) MightNotBeReallyEmpty

func (s Wrap2x2plus) MightNotBeReallyEmpty() VerTwoTwoPlus

func (Wrap2x2plus) SetMightNotBeReallyEmpty

func (s Wrap2x2plus) SetMightNotBeReallyEmpty(v VerTwoTwoPlus)

type Wrap2x2plus_List

type Wrap2x2plus_List C.PointerList

func NewWrap2x2plusList

func NewWrap2x2plusList(s *C.Segment, sz int) Wrap2x2plus_List

func (Wrap2x2plus_List) At

func (Wrap2x2plus_List) Len

func (s Wrap2x2plus_List) Len() int

func (Wrap2x2plus_List) ToArray

func (s Wrap2x2plus_List) ToArray() []Wrap2x2plus

type WrapEmpty

type WrapEmpty C.Struct

func NewRootWrapEmpty

func NewRootWrapEmpty(s *C.Segment) WrapEmpty

func NewWrapEmpty

func NewWrapEmpty(s *C.Segment) WrapEmpty

func ReadRootWrapEmpty

func ReadRootWrapEmpty(s *C.Segment) WrapEmpty

func (WrapEmpty) MarshalJSON

func (s WrapEmpty) MarshalJSON() (bs []byte, err error)

capn.JSON_enabled == false so we stub MarshallJSON().

func (WrapEmpty) MightNotBeReallyEmpty

func (s WrapEmpty) MightNotBeReallyEmpty() VerEmpty

func (WrapEmpty) SetMightNotBeReallyEmpty

func (s WrapEmpty) SetMightNotBeReallyEmpty(v VerEmpty)

type WrapEmpty_List

type WrapEmpty_List C.PointerList

func NewWrapEmptyList

func NewWrapEmptyList(s *C.Segment, sz int) WrapEmpty_List

func (WrapEmpty_List) At

func (s WrapEmpty_List) At(i int) WrapEmpty

func (WrapEmpty_List) Len

func (s WrapEmpty_List) Len() int

func (WrapEmpty_List) ToArray

func (s WrapEmpty_List) ToArray() []WrapEmpty

type Z

type Z C.Struct

func NewRootZ

func NewRootZ(s *C.Segment) Z

func NewZ

func NewZ(s *C.Segment) Z

func ReadRootZ

func ReadRootZ(s *C.Segment) Z

func (Z) A320

func (s Z) A320() A320

func (Z) Aircraft

func (s Z) Aircraft() Aircraft

func (Z) Aircraftvec

func (s Z) Aircraftvec() Aircraft_List

func (Z) Airport

func (s Z) Airport() Airport

func (Z) B737

func (s Z) B737() B737

func (Z) Blob

func (s Z) Blob() []byte

func (Z) Bool

func (s Z) Bool() bool

func (Z) Boolvec

func (s Z) Boolvec() C.BitList

func (Z) F16

func (s Z) F16() F16

func (Z) F32

func (s Z) F32() float32

func (Z) F32vec

func (s Z) F32vec() C.Float32List

func (Z) F64

func (s Z) F64() float64

func (Z) F64vec

func (s Z) F64vec() C.Float64List

func (Z) I16

func (s Z) I16() int16

func (Z) I16vec

func (s Z) I16vec() C.Int16List

func (Z) I32

func (s Z) I32() int32

func (Z) I32vec

func (s Z) I32vec() C.Int32List

func (Z) I64

func (s Z) I64() int64

func (Z) I64vec

func (s Z) I64vec() C.Int64List

func (Z) I8

func (s Z) I8() int8

func (Z) I8vec

func (s Z) I8vec() C.Int8List

func (Z) MarshalJSON

func (s Z) MarshalJSON() (bs []byte, err error)

capn.JSON_enabled == false so we stub MarshallJSON().

func (Z) Planebase

func (s Z) Planebase() PlaneBase

func (Z) Regression

func (s Z) Regression() Regression

func (Z) SetA320

func (s Z) SetA320(v A320)

func (Z) SetAircraft

func (s Z) SetAircraft(v Aircraft)

func (Z) SetAircraftvec

func (s Z) SetAircraftvec(v Aircraft_List)

func (Z) SetAirport

func (s Z) SetAirport(v Airport)

func (Z) SetB737

func (s Z) SetB737(v B737)

func (Z) SetBlob

func (s Z) SetBlob(v []byte)

func (Z) SetBool

func (s Z) SetBool(v bool)

func (Z) SetBoolvec

func (s Z) SetBoolvec(v C.BitList)

func (Z) SetF16

func (s Z) SetF16(v F16)

func (Z) SetF32

func (s Z) SetF32(v float32)

func (Z) SetF32vec

func (s Z) SetF32vec(v C.Float32List)

func (Z) SetF64

func (s Z) SetF64(v float64)

func (Z) SetF64vec

func (s Z) SetF64vec(v C.Float64List)

func (Z) SetI16

func (s Z) SetI16(v int16)

func (Z) SetI16vec

func (s Z) SetI16vec(v C.Int16List)

func (Z) SetI32

func (s Z) SetI32(v int32)

func (Z) SetI32vec

func (s Z) SetI32vec(v C.Int32List)

func (Z) SetI64

func (s Z) SetI64(v int64)

func (Z) SetI64vec

func (s Z) SetI64vec(v C.Int64List)

func (Z) SetI8

func (s Z) SetI8(v int8)

func (Z) SetI8vec

func (s Z) SetI8vec(v C.Int8List)

func (Z) SetPlanebase

func (s Z) SetPlanebase(v PlaneBase)

func (Z) SetRegression

func (s Z) SetRegression(v Regression)

func (Z) SetText

func (s Z) SetText(v string)

func (Z) SetU16

func (s Z) SetU16(v uint16)

func (Z) SetU16vec

func (s Z) SetU16vec(v C.UInt16List)

func (Z) SetU32

func (s Z) SetU32(v uint32)

func (Z) SetU32vec

func (s Z) SetU32vec(v C.UInt32List)

func (Z) SetU64

func (s Z) SetU64(v uint64)

func (Z) SetU64vec

func (s Z) SetU64vec(v C.UInt64List)

func (Z) SetU8

func (s Z) SetU8(v uint8)

func (Z) SetU8vec

func (s Z) SetU8vec(v C.UInt8List)

func (Z) SetVoid

func (s Z) SetVoid()

func (Z) SetZdata

func (s Z) SetZdata(v Zdata)

func (Z) SetZdatavec

func (s Z) SetZdatavec(v Zdata_List)

func (Z) SetZdate

func (s Z) SetZdate(v Zdate)

func (Z) SetZdatevec

func (s Z) SetZdatevec(v Zdate_List)

func (Z) SetZvec

func (s Z) SetZvec(v Z_List)

func (Z) SetZvecvec

func (s Z) SetZvecvec(v C.PointerList)

func (Z) SetZz

func (s Z) SetZz(v Z)

func (Z) Text

func (s Z) Text() string

func (Z) U16

func (s Z) U16() uint16

func (Z) U16vec

func (s Z) U16vec() C.UInt16List

func (Z) U32

func (s Z) U32() uint32

func (Z) U32vec

func (s Z) U32vec() C.UInt32List

func (Z) U64

func (s Z) U64() uint64

func (Z) U64vec

func (s Z) U64vec() C.UInt64List

func (Z) U8

func (s Z) U8() uint8

func (Z) U8vec

func (s Z) U8vec() C.UInt8List

func (Z) Which

func (s Z) Which() Z_Which

func (Z) Zdata

func (s Z) Zdata() Zdata

func (Z) Zdatavec

func (s Z) Zdatavec() Zdata_List

func (Z) Zdate

func (s Z) Zdate() Zdate

func (Z) Zdatevec

func (s Z) Zdatevec() Zdate_List

func (Z) Zvec

func (s Z) Zvec() Z_List

func (Z) Zvecvec

func (s Z) Zvecvec() C.PointerList

func (Z) Zz

func (s Z) Zz() Z

type Z_List

type Z_List C.PointerList

func NewZList

func NewZList(s *C.Segment, sz int) Z_List

func (Z_List) At

func (s Z_List) At(i int) Z

func (Z_List) Len

func (s Z_List) Len() int

func (Z_List) ToArray

func (s Z_List) ToArray() []Z

type Z_Which

type Z_Which uint16
const (
	Z_VOID        Z_Which = 0
	Z_ZZ          Z_Which = 1
	Z_F64         Z_Which = 2
	Z_F32         Z_Which = 3
	Z_I64         Z_Which = 4
	Z_I32         Z_Which = 5
	Z_I16         Z_Which = 6
	Z_I8          Z_Which = 7
	Z_U64         Z_Which = 8
	Z_U32         Z_Which = 9
	Z_U16         Z_Which = 10
	Z_U8          Z_Which = 11
	Z_BOOL        Z_Which = 12
	Z_TEXT        Z_Which = 13
	Z_BLOB        Z_Which = 14
	Z_F64VEC      Z_Which = 15
	Z_F32VEC      Z_Which = 16
	Z_I64VEC      Z_Which = 17
	Z_I32VEC      Z_Which = 18
	Z_I16VEC      Z_Which = 19
	Z_I8VEC       Z_Which = 20
	Z_U64VEC      Z_Which = 21
	Z_U32VEC      Z_Which = 22
	Z_U16VEC      Z_Which = 23
	Z_U8VEC       Z_Which = 24
	Z_ZVEC        Z_Which = 25
	Z_ZVECVEC     Z_Which = 26
	Z_ZDATE       Z_Which = 27
	Z_ZDATA       Z_Which = 28
	Z_AIRCRAFTVEC Z_Which = 29
	Z_AIRCRAFT    Z_Which = 30
	Z_REGRESSION  Z_Which = 31
	Z_PLANEBASE   Z_Which = 32
	Z_AIRPORT     Z_Which = 33
	Z_B737        Z_Which = 34
	Z_A320        Z_Which = 35
	Z_F16         Z_Which = 36
	Z_ZDATEVEC    Z_Which = 37
	Z_ZDATAVEC    Z_Which = 38
	Z_BOOLVEC     Z_Which = 39
)

type Zdata

type Zdata C.Struct

func NewRootZdata

func NewRootZdata(s *C.Segment) Zdata

func NewZdata

func NewZdata(s *C.Segment) Zdata

func ReadRootZdata

func ReadRootZdata(s *C.Segment) Zdata

func (Zdata) Data

func (s Zdata) Data() []byte

func (Zdata) MarshalJSON

func (s Zdata) MarshalJSON() (bs []byte, err error)

capn.JSON_enabled == false so we stub MarshallJSON().

func (Zdata) SetData

func (s Zdata) SetData(v []byte)

type Zdata_List

type Zdata_List C.PointerList

func NewZdataList

func NewZdataList(s *C.Segment, sz int) Zdata_List

func (Zdata_List) At

func (s Zdata_List) At(i int) Zdata

func (Zdata_List) Len

func (s Zdata_List) Len() int

func (Zdata_List) ToArray

func (s Zdata_List) ToArray() []Zdata

type Zdate

type Zdate C.Struct

func NewRootZdate

func NewRootZdate(s *C.Segment) Zdate

func NewZdate

func NewZdate(s *C.Segment) Zdate

func ReadRootZdate

func ReadRootZdate(s *C.Segment) Zdate

func (Zdate) Day

func (s Zdate) Day() uint8

func (Zdate) MarshalJSON

func (s Zdate) MarshalJSON() (bs []byte, err error)

capn.JSON_enabled == false so we stub MarshallJSON().

func (Zdate) Month

func (s Zdate) Month() uint8

func (Zdate) SetDay

func (s Zdate) SetDay(v uint8)

func (Zdate) SetMonth

func (s Zdate) SetMonth(v uint8)

func (Zdate) SetYear

func (s Zdate) SetYear(v int16)

func (Zdate) Year

func (s Zdate) Year() int16

type Zdate_List

type Zdate_List C.PointerList

func NewZdateList

func NewZdateList(s *C.Segment, sz int) Zdate_List

func (Zdate_List) At

func (s Zdate_List) At(i int) Zdate

func (Zdate_List) Len

func (s Zdate_List) Len() int

func (Zdate_List) ToArray

func (s Zdate_List) ToArray() []Zdate

type Zjob

type Zjob C.Struct

func NewRootZjob

func NewRootZjob(s *C.Segment) Zjob

func NewZjob

func NewZjob(s *C.Segment) Zjob

func ReadRootZjob

func ReadRootZjob(s *C.Segment) Zjob

func (Zjob) Args

func (s Zjob) Args() C.TextList

func (Zjob) Cmd

func (s Zjob) Cmd() string

func (Zjob) MarshalJSON

func (s Zjob) MarshalJSON() (bs []byte, err error)

capn.JSON_enabled == false so we stub MarshallJSON().

func (Zjob) SetArgs

func (s Zjob) SetArgs(v C.TextList)

func (Zjob) SetCmd

func (s Zjob) SetCmd(v string)

type Zjob_List

type Zjob_List C.PointerList

func NewZjobList

func NewZjobList(s *C.Segment, sz int) Zjob_List

func (Zjob_List) At

func (s Zjob_List) At(i int) Zjob

func (Zjob_List) Len

func (s Zjob_List) Len() int

func (Zjob_List) ToArray

func (s Zjob_List) ToArray() []Zjob

type Zserver

type Zserver C.Struct

func NewRootZserver

func NewRootZserver(s *C.Segment) Zserver

func NewZserver

func NewZserver(s *C.Segment) Zserver

func ReadRootZserver

func ReadRootZserver(s *C.Segment) Zserver

func (Zserver) MarshalJSON

func (s Zserver) MarshalJSON() (bs []byte, err error)

capn.JSON_enabled == false so we stub MarshallJSON().

func (Zserver) SetWaitingjobs

func (s Zserver) SetWaitingjobs(v Zjob_List)

func (Zserver) Waitingjobs

func (s Zserver) Waitingjobs() Zjob_List

type Zserver_List

type Zserver_List C.PointerList

func NewZserverList

func NewZserverList(s *C.Segment, sz int) Zserver_List

func (Zserver_List) At

func (s Zserver_List) At(i int) Zserver

func (Zserver_List) Len

func (s Zserver_List) Len() int

func (Zserver_List) ToArray

func (s Zserver_List) ToArray() []Zserver

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL