module1

package
v0.0.0-...-7428086 Latest Latest
Warning

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

Go to latest
Published: Nov 23, 2023 License: Apache-2.0 Imports: 6 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var GoUnusedProtection__ int

Functions

This section is empty.

Types

type Accessory

type Accessory = module00.Accessory

func AccessoryPtr

func AccessoryPtr(v Accessory) *Accessory

func NewAccessory

func NewAccessory() *Accessory

type Automobile

type Automobile struct {
	Plate         Plate               `thrift:"plate,1" db:"plate" json:"plate"`
	PreviousPlate *Plate              `thrift:"previous_plate,2,optional" db:"previous_plate" json:"previous_plate,omitempty"`
	FirstPlate    Plate               `thrift:"first_plate,3,optional" db:"first_plate" json:"first_plate,omitempty"`
	Year          Year                `thrift:"year,4" db:"year" json:"year"`
	Drivers       Drivers             `thrift:"drivers,5" db:"drivers" json:"drivers"`
	Accessories   []*Accessory        `thrift:"Accessories,6" db:"Accessories" json:"Accessories"`
	PartNames     map[int32]*PartName `thrift:"PartNames,7" db:"PartNames" json:"PartNames"`
}

Attributes:

  • Plate
  • PreviousPlate
  • FirstPlate
  • Year
  • Drivers
  • Accessories
  • PartNames
var FinderByPlateResult_Success_DEFAULT *Automobile
var Pair_Automobile_DEFAULT *Automobile

func NewAutomobile

func NewAutomobile() *Automobile

func (*Automobile) GetAccessories

func (p *Automobile) GetAccessories() []*Accessory

func (*Automobile) GetDrivers

func (p *Automobile) GetDrivers() Drivers

func (*Automobile) GetFirstPlate

func (p *Automobile) GetFirstPlate() Plate

func (*Automobile) GetPartNames

func (p *Automobile) GetPartNames() map[int32]*PartName

func (*Automobile) GetPlate

func (p *Automobile) GetPlate() Plate

func (*Automobile) GetPreviousPlate

func (p *Automobile) GetPreviousPlate() Plate

func (*Automobile) GetYear

func (p *Automobile) GetYear() Year

func (*Automobile) IsSetFirstPlate

func (p *Automobile) IsSetFirstPlate() bool

func (*Automobile) IsSetPreviousPlate

func (p *Automobile) IsSetPreviousPlate() bool

func (*Automobile) Read

func (p *Automobile) Read(iprot thrift.Protocol) error

func (*Automobile) ReadField1

func (p *Automobile) ReadField1(iprot thrift.Protocol) error

func (*Automobile) ReadField2

func (p *Automobile) ReadField2(iprot thrift.Protocol) error

func (*Automobile) ReadField3

func (p *Automobile) ReadField3(iprot thrift.Protocol) error

func (*Automobile) ReadField4

func (p *Automobile) ReadField4(iprot thrift.Protocol) error

func (*Automobile) ReadField5

func (p *Automobile) ReadField5(iprot thrift.Protocol) error

func (*Automobile) ReadField6

func (p *Automobile) ReadField6(iprot thrift.Protocol) error

func (*Automobile) ReadField7

func (p *Automobile) ReadField7(iprot thrift.Protocol) error

func (*Automobile) SetAccessories

func (a *Automobile) SetAccessories(accessories []*Accessory) *Automobile

func (*Automobile) SetDrivers

func (a *Automobile) SetDrivers(drivers Drivers) *Automobile

func (*Automobile) SetFirstPlate

func (a *Automobile) SetFirstPlate(firstPlate Plate) *Automobile

func (*Automobile) SetPartNames

func (a *Automobile) SetPartNames(partNames map[int32]*PartName) *Automobile

func (*Automobile) SetPlate

func (a *Automobile) SetPlate(plate Plate) *Automobile

func (*Automobile) SetPreviousPlate

func (a *Automobile) SetPreviousPlate(previousPlate *Plate) *Automobile

func (*Automobile) SetYear

func (a *Automobile) SetYear(year Year) *Automobile

func (*Automobile) String

func (p *Automobile) String() string

func (*Automobile) Write

func (p *Automobile) Write(oprot thrift.Protocol) error

type AutomobileBuilder

type AutomobileBuilder struct {
	// contains filtered or unexported fields
}

func NewAutomobileBuilder

func NewAutomobileBuilder() *AutomobileBuilder

func (*AutomobileBuilder) Accessories

func (a *AutomobileBuilder) Accessories(accessories []*Accessory) *AutomobileBuilder

func (*AutomobileBuilder) Drivers

func (a *AutomobileBuilder) Drivers(drivers Drivers) *AutomobileBuilder

func (AutomobileBuilder) Emit

func (p AutomobileBuilder) Emit() *Automobile

func (*AutomobileBuilder) FirstPlate

func (a *AutomobileBuilder) FirstPlate(firstPlate Plate) *AutomobileBuilder

func (*AutomobileBuilder) PartNames

func (a *AutomobileBuilder) PartNames(partNames map[int32]*PartName) *AutomobileBuilder

func (*AutomobileBuilder) Plate

func (a *AutomobileBuilder) Plate(plate Plate) *AutomobileBuilder

func (*AutomobileBuilder) PreviousPlate

func (a *AutomobileBuilder) PreviousPlate(previousPlate *Plate) *AutomobileBuilder

func (*AutomobileBuilder) Year

func (a *AutomobileBuilder) Year(year Year) *AutomobileBuilder

type Car

type Car = Automobile
var FinderAliasByPlateResult_Success_DEFAULT *Car
var Pair_Car_DEFAULT *Car

func CarPtr

func CarPtr(v Car) *Car

func NewCar

func NewCar() *Car

type Collection

type Collection struct {
	Automobiles []*Automobile `thrift:"automobiles,1" db:"automobiles" json:"automobiles"`
	Cars        []*Car        `thrift:"cars,2" db:"cars" json:"cars"`
}

Attributes:

  • Automobiles
  • Cars

func NewCollection

func NewCollection() *Collection

func (*Collection) GetAutomobiles

func (p *Collection) GetAutomobiles() []*Automobile

func (*Collection) GetCars

func (p *Collection) GetCars() []*Car

func (*Collection) Read

func (p *Collection) Read(iprot thrift.Protocol) error

func (*Collection) ReadField1

func (p *Collection) ReadField1(iprot thrift.Protocol) error

func (*Collection) ReadField2

func (p *Collection) ReadField2(iprot thrift.Protocol) error

func (*Collection) SetAutomobiles

func (c *Collection) SetAutomobiles(automobiles []*Automobile) *Collection

func (*Collection) SetCars

func (c *Collection) SetCars(cars []*Car) *Collection

func (*Collection) String

func (p *Collection) String() string

func (*Collection) Write

func (p *Collection) Write(oprot thrift.Protocol) error

type CollectionBuilder

type CollectionBuilder struct {
	// contains filtered or unexported fields
}

func NewCollectionBuilder

func NewCollectionBuilder() *CollectionBuilder

func (*CollectionBuilder) Automobiles

func (c *CollectionBuilder) Automobiles(automobiles []*Automobile) *CollectionBuilder

func (*CollectionBuilder) Cars

func (c *CollectionBuilder) Cars(cars []*Car) *CollectionBuilder

func (CollectionBuilder) Emit

func (p CollectionBuilder) Emit() *Collection

type Drivers

type Drivers = []string

func DriversPtr

func DriversPtr(v Drivers) *Drivers

type Finder

type Finder interface {
	// Parameters:
	//  - Plate
	ByPlate(plate Plate) (_r *Automobile, err error)
	// Parameters:
	//  - Plate
	AliasByPlate(plate Plate) (_r *Car, err error)
	// Parameters:
	//  - Plate
	PreviousPlate(plate Plate) (_r Plate, err error)
}

type FinderAliasByPlateArgs

type FinderAliasByPlateArgs struct {
	thrift.IRequest
	Plate Plate `thrift:"plate,1" db:"plate" json:"plate"`
}

Attributes:

  • Plate

func NewFinderAliasByPlateArgs

func NewFinderAliasByPlateArgs() *FinderAliasByPlateArgs

func (*FinderAliasByPlateArgs) GetPlate

func (p *FinderAliasByPlateArgs) GetPlate() Plate

func (*FinderAliasByPlateArgs) Read

func (*FinderAliasByPlateArgs) ReadField1

func (p *FinderAliasByPlateArgs) ReadField1(iprot thrift.Protocol) error

func (*FinderAliasByPlateArgs) SetPlate

func (*FinderAliasByPlateArgs) String

func (p *FinderAliasByPlateArgs) String() string

func (*FinderAliasByPlateArgs) Write

func (p *FinderAliasByPlateArgs) Write(oprot thrift.Protocol) error

type FinderAliasByPlateArgsBuilder

type FinderAliasByPlateArgsBuilder struct {
	// contains filtered or unexported fields
}

func NewFinderAliasByPlateArgsBuilder

func NewFinderAliasByPlateArgsBuilder() *FinderAliasByPlateArgsBuilder

func (FinderAliasByPlateArgsBuilder) Emit

func (*FinderAliasByPlateArgsBuilder) Plate

type FinderAliasByPlateResult

type FinderAliasByPlateResult struct {
	thrift.IResponse
	Success *Car `thrift:"success,0,optional" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewFinderAliasByPlateResult

func NewFinderAliasByPlateResult() *FinderAliasByPlateResult

func (*FinderAliasByPlateResult) Exception

func (*FinderAliasByPlateResult) GetSuccess

func (p *FinderAliasByPlateResult) GetSuccess() *Car

func (*FinderAliasByPlateResult) IsSetSuccess

func (p *FinderAliasByPlateResult) IsSetSuccess() bool

func (*FinderAliasByPlateResult) Read

func (*FinderAliasByPlateResult) ReadField0

func (p *FinderAliasByPlateResult) ReadField0(iprot thrift.Protocol) error

func (*FinderAliasByPlateResult) SetSuccess

func (f *FinderAliasByPlateResult) SetSuccess(success *Car) *FinderAliasByPlateResult

func (*FinderAliasByPlateResult) String

func (p *FinderAliasByPlateResult) String() string

func (*FinderAliasByPlateResult) Write

type FinderAliasByPlateResultBuilder

type FinderAliasByPlateResultBuilder struct {
	// contains filtered or unexported fields
}

func NewFinderAliasByPlateResultBuilder

func NewFinderAliasByPlateResultBuilder() *FinderAliasByPlateResultBuilder

func (FinderAliasByPlateResultBuilder) Emit

func (*FinderAliasByPlateResultBuilder) Success

type FinderByPlateArgs

type FinderByPlateArgs struct {
	thrift.IRequest
	Plate Plate `thrift:"plate,1" db:"plate" json:"plate"`
}

Attributes:

  • Plate

func NewFinderByPlateArgs

func NewFinderByPlateArgs() *FinderByPlateArgs

func (*FinderByPlateArgs) GetPlate

func (p *FinderByPlateArgs) GetPlate() Plate

func (*FinderByPlateArgs) Read

func (p *FinderByPlateArgs) Read(iprot thrift.Protocol) error

func (*FinderByPlateArgs) ReadField1

func (p *FinderByPlateArgs) ReadField1(iprot thrift.Protocol) error

func (*FinderByPlateArgs) SetPlate

func (f *FinderByPlateArgs) SetPlate(plate Plate) *FinderByPlateArgs

func (*FinderByPlateArgs) String

func (p *FinderByPlateArgs) String() string

func (*FinderByPlateArgs) Write

func (p *FinderByPlateArgs) Write(oprot thrift.Protocol) error

type FinderByPlateArgsBuilder

type FinderByPlateArgsBuilder struct {
	// contains filtered or unexported fields
}

func NewFinderByPlateArgsBuilder

func NewFinderByPlateArgsBuilder() *FinderByPlateArgsBuilder

func (FinderByPlateArgsBuilder) Emit

func (*FinderByPlateArgsBuilder) Plate

type FinderByPlateResult

type FinderByPlateResult struct {
	thrift.IResponse
	Success *Automobile `thrift:"success,0,optional" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewFinderByPlateResult

func NewFinderByPlateResult() *FinderByPlateResult

func (*FinderByPlateResult) DefaultGetSuccess

func (p *FinderByPlateResult) DefaultGetSuccess() *Automobile

func (*FinderByPlateResult) Exception

func (*FinderByPlateResult) GetSuccess

func (p *FinderByPlateResult) GetSuccess() *Automobile

func (*FinderByPlateResult) IsSetSuccess

func (p *FinderByPlateResult) IsSetSuccess() bool

func (*FinderByPlateResult) Read

func (p *FinderByPlateResult) Read(iprot thrift.Protocol) error

func (*FinderByPlateResult) ReadField0

func (p *FinderByPlateResult) ReadField0(iprot thrift.Protocol) error

func (*FinderByPlateResult) SetSuccess

func (f *FinderByPlateResult) SetSuccess(success *Automobile) *FinderByPlateResult

func (*FinderByPlateResult) String

func (p *FinderByPlateResult) String() string

func (*FinderByPlateResult) Write

func (p *FinderByPlateResult) Write(oprot thrift.Protocol) error

type FinderByPlateResultBuilder

type FinderByPlateResultBuilder struct {
	// contains filtered or unexported fields
}

func NewFinderByPlateResultBuilder

func NewFinderByPlateResultBuilder() *FinderByPlateResultBuilder

func (FinderByPlateResultBuilder) Emit

func (*FinderByPlateResultBuilder) Success

type FinderChannelClient

type FinderChannelClient struct {
	RequestChannel thrift.RequestChannel
}

func NewFinderChannelClient

func NewFinderChannelClient(channel thrift.RequestChannel) *FinderChannelClient

func (*FinderChannelClient) AliasByPlate

func (p *FinderChannelClient) AliasByPlate(ctx context.Context, plate Plate) (_r *Car, err error)

Parameters:

  • Plate

func (*FinderChannelClient) ByPlate

func (p *FinderChannelClient) ByPlate(ctx context.Context, plate Plate) (_r *Automobile, err error)

Parameters:

  • Plate

func (*FinderChannelClient) Close

func (c *FinderChannelClient) Close() error

func (*FinderChannelClient) IsOpen

func (c *FinderChannelClient) IsOpen() bool

func (*FinderChannelClient) Open

func (c *FinderChannelClient) Open() error

func (*FinderChannelClient) PreviousPlate

func (p *FinderChannelClient) PreviousPlate(ctx context.Context, plate Plate) (_r Plate, err error)

Parameters:

  • Plate

type FinderClient

type FinderClient struct {
	FinderClientInterface
	CC thrift.ClientConn
}

func NewFinderClient

func NewFinderClient(t thrift.Transport, iprot thrift.Protocol, oprot thrift.Protocol) *FinderClient

func NewFinderClientFactory

func NewFinderClientFactory(t thrift.Transport, f thrift.ProtocolFactory) *FinderClient

func NewFinderClientProtocol

func NewFinderClientProtocol(prot thrift.Protocol) *FinderClient

func (*FinderClient) AliasByPlate

func (p *FinderClient) AliasByPlate(plate Plate) (_r *Car, err error)

Parameters:

  • Plate

func (*FinderClient) ByPlate

func (p *FinderClient) ByPlate(plate Plate) (_r *Automobile, err error)

Parameters:

  • Plate

func (*FinderClient) Close

func (client *FinderClient) Close() error

func (*FinderClient) IsOpen

func (client *FinderClient) IsOpen() bool

func (*FinderClient) Open

func (client *FinderClient) Open() error

func (*FinderClient) PreviousPlate

func (p *FinderClient) PreviousPlate(plate Plate) (_r Plate, err error)

Parameters:

  • Plate

type FinderClientInterface

type FinderClientInterface interface {
	thrift.ClientInterface
	// Parameters:
	//  - Plate
	ByPlate(plate Plate) (_r *Automobile, err error)
	// Parameters:
	//  - Plate
	AliasByPlate(plate Plate) (_r *Car, err error)
	// Parameters:
	//  - Plate
	PreviousPlate(plate Plate) (_r Plate, err error)
}

type FinderPreviousPlateArgs

type FinderPreviousPlateArgs struct {
	thrift.IRequest
	Plate Plate `thrift:"plate,1" db:"plate" json:"plate"`
}

Attributes:

  • Plate

func NewFinderPreviousPlateArgs

func NewFinderPreviousPlateArgs() *FinderPreviousPlateArgs

func (*FinderPreviousPlateArgs) GetPlate

func (p *FinderPreviousPlateArgs) GetPlate() Plate

func (*FinderPreviousPlateArgs) Read

func (*FinderPreviousPlateArgs) ReadField1

func (p *FinderPreviousPlateArgs) ReadField1(iprot thrift.Protocol) error

func (*FinderPreviousPlateArgs) SetPlate

func (*FinderPreviousPlateArgs) String

func (p *FinderPreviousPlateArgs) String() string

func (*FinderPreviousPlateArgs) Write

func (p *FinderPreviousPlateArgs) Write(oprot thrift.Protocol) error

type FinderPreviousPlateArgsBuilder

type FinderPreviousPlateArgsBuilder struct {
	// contains filtered or unexported fields
}

func NewFinderPreviousPlateArgsBuilder

func NewFinderPreviousPlateArgsBuilder() *FinderPreviousPlateArgsBuilder

func (FinderPreviousPlateArgsBuilder) Emit

func (*FinderPreviousPlateArgsBuilder) Plate

type FinderPreviousPlateResult

type FinderPreviousPlateResult struct {
	thrift.IResponse
	Success *Plate `thrift:"success,0,optional" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewFinderPreviousPlateResult

func NewFinderPreviousPlateResult() *FinderPreviousPlateResult

func (*FinderPreviousPlateResult) Exception

func (*FinderPreviousPlateResult) GetSuccess

func (p *FinderPreviousPlateResult) GetSuccess() Plate

func (*FinderPreviousPlateResult) IsSetSuccess

func (p *FinderPreviousPlateResult) IsSetSuccess() bool

func (*FinderPreviousPlateResult) Read

func (*FinderPreviousPlateResult) ReadField0

func (p *FinderPreviousPlateResult) ReadField0(iprot thrift.Protocol) error

func (*FinderPreviousPlateResult) SetSuccess

func (*FinderPreviousPlateResult) String

func (p *FinderPreviousPlateResult) String() string

func (*FinderPreviousPlateResult) Write

type FinderPreviousPlateResultBuilder

type FinderPreviousPlateResultBuilder struct {
	// contains filtered or unexported fields
}

func NewFinderPreviousPlateResultBuilder

func NewFinderPreviousPlateResultBuilder() *FinderPreviousPlateResultBuilder

func (FinderPreviousPlateResultBuilder) Emit

func (*FinderPreviousPlateResultBuilder) Success

type FinderProcessor

type FinderProcessor struct {
	// contains filtered or unexported fields
}

func NewFinderProcessor

func NewFinderProcessor(handler Finder) *FinderProcessor

func (*FinderProcessor) AddToFunctionServiceMap

func (p *FinderProcessor) AddToFunctionServiceMap(key, service string)

func (*FinderProcessor) AddToProcessorMap

func (p *FinderProcessor) AddToProcessorMap(key string, processor thrift.ProcessorFunction)

func (*FinderProcessor) FunctionServiceMap

func (p *FinderProcessor) FunctionServiceMap() map[string]string

func (*FinderProcessor) GetProcessorFunction

func (p *FinderProcessor) GetProcessorFunction(key string) (processor thrift.ProcessorFunction, err error)

func (*FinderProcessor) ProcessorMap

func (p *FinderProcessor) ProcessorMap() map[string]thrift.ProcessorFunction

type FinderThreadsafeClient

type FinderThreadsafeClient struct {
	FinderClientInterface
	CC thrift.ClientConn
	Mu sync.Mutex
}

func NewFinderThreadsafeClient

func NewFinderThreadsafeClient(t thrift.Transport, iprot thrift.Protocol, oprot thrift.Protocol) *FinderThreadsafeClient

func NewFinderThreadsafeClientProtocol

func NewFinderThreadsafeClientProtocol(prot thrift.Protocol) *FinderThreadsafeClient

func (*FinderThreadsafeClient) AliasByPlate

func (p *FinderThreadsafeClient) AliasByPlate(plate Plate) (_r *Car, err error)

Parameters:

  • Plate

func (*FinderThreadsafeClient) ByPlate

func (p *FinderThreadsafeClient) ByPlate(plate Plate) (_r *Automobile, err error)

Parameters:

  • Plate

func (*FinderThreadsafeClient) Close

func (client *FinderThreadsafeClient) Close() error

func (*FinderThreadsafeClient) IsOpen

func (client *FinderThreadsafeClient) IsOpen() bool

func (*FinderThreadsafeClient) Open

func (client *FinderThreadsafeClient) Open() error

func (*FinderThreadsafeClient) PreviousPlate

func (p *FinderThreadsafeClient) PreviousPlate(plate Plate) (_r Plate, err error)

Parameters:

  • Plate

type MapContainer

type MapContainer struct {
	Mapval map[MapKey]string `thrift:"mapval,1" db:"mapval" json:"mapval"`
}

Attributes:

  • Mapval

func NewMapContainer

func NewMapContainer() *MapContainer

func (*MapContainer) GetMapval

func (p *MapContainer) GetMapval() map[MapKey]string

func (*MapContainer) Read

func (p *MapContainer) Read(iprot thrift.Protocol) error

func (*MapContainer) ReadField1

func (p *MapContainer) ReadField1(iprot thrift.Protocol) error

func (*MapContainer) SetMapval

func (m *MapContainer) SetMapval(mapval map[MapKey]string) *MapContainer

func (*MapContainer) String

func (p *MapContainer) String() string

func (*MapContainer) Write

func (p *MapContainer) Write(oprot thrift.Protocol) error

type MapContainerBuilder

type MapContainerBuilder struct {
	// contains filtered or unexported fields
}

func NewMapContainerBuilder

func NewMapContainerBuilder() *MapContainerBuilder

func (MapContainerBuilder) Emit

func (*MapContainerBuilder) Mapval

func (m *MapContainerBuilder) Mapval(mapval map[MapKey]string) *MapContainerBuilder

type MapKey

type MapKey struct {
	Num    int64  `thrift:"num,1" db:"num" json:"num"`
	Strval string `thrift:"strval,2" db:"strval" json:"strval"`
}

Attributes:

  • Num
  • Strval

func NewMapKey

func NewMapKey() *MapKey

func (*MapKey) GetNum

func (p *MapKey) GetNum() int64

func (*MapKey) GetStrval

func (p *MapKey) GetStrval() string

func (*MapKey) Read

func (p *MapKey) Read(iprot thrift.Protocol) error

func (*MapKey) ReadField1

func (p *MapKey) ReadField1(iprot thrift.Protocol) error

func (*MapKey) ReadField2

func (p *MapKey) ReadField2(iprot thrift.Protocol) error

func (*MapKey) SetNum

func (m *MapKey) SetNum(num int64) *MapKey

func (*MapKey) SetStrval

func (m *MapKey) SetStrval(strval string) *MapKey

func (*MapKey) String

func (p *MapKey) String() string

func (*MapKey) Write

func (p *MapKey) Write(oprot thrift.Protocol) error

type MapKeyBuilder

type MapKeyBuilder struct {
	// contains filtered or unexported fields
}

func NewMapKeyBuilder

func NewMapKeyBuilder() *MapKeyBuilder

func (MapKeyBuilder) Emit

func (p MapKeyBuilder) Emit() *MapKey

func (*MapKeyBuilder) Num

func (m *MapKeyBuilder) Num(num int64) *MapKeyBuilder

func (*MapKeyBuilder) Strval

func (m *MapKeyBuilder) Strval(strval string) *MapKeyBuilder

type Pair

type Pair struct {
	Automobile *Automobile `thrift:"automobile,1" db:"automobile" json:"automobile"`
	Car        *Car        `thrift:"car,2" db:"car" json:"car"`
}

Attributes:

  • Automobile
  • Car

func NewPair

func NewPair() *Pair

func (*Pair) DefaultGetAutomobile

func (p *Pair) DefaultGetAutomobile() *Automobile

func (*Pair) GetAutomobile

func (p *Pair) GetAutomobile() *Automobile

func (*Pair) GetCar

func (p *Pair) GetCar() *Car

func (*Pair) IsSetAutomobile

func (p *Pair) IsSetAutomobile() bool

func (*Pair) IsSetCar

func (p *Pair) IsSetCar() bool

func (*Pair) Read

func (p *Pair) Read(iprot thrift.Protocol) error

func (*Pair) ReadField1

func (p *Pair) ReadField1(iprot thrift.Protocol) error

func (*Pair) ReadField2

func (p *Pair) ReadField2(iprot thrift.Protocol) error

func (*Pair) SetAutomobile

func (p *Pair) SetAutomobile(automobile *Automobile) *Pair

func (*Pair) SetCar

func (p *Pair) SetCar(car *Car) *Pair

func (*Pair) String

func (p *Pair) String() string

func (*Pair) Write

func (p *Pair) Write(oprot thrift.Protocol) error

type PairBuilder

type PairBuilder struct {
	// contains filtered or unexported fields
}

func NewPairBuilder

func NewPairBuilder() *PairBuilder

func (*PairBuilder) Automobile

func (p *PairBuilder) Automobile(automobile *Automobile) *PairBuilder

func (*PairBuilder) Car

func (p *PairBuilder) Car(car *Car) *PairBuilder

func (PairBuilder) Emit

func (p PairBuilder) Emit() *Pair

type PartName

type PartName = module00.PartName

func NewPartName

func NewPartName() *PartName

func PartNamePtr

func PartNamePtr(v PartName) *PartName

type Plate

type Plate = string
var Automobile_FirstPlate_DEFAULT Plate = "0000"
var Automobile_PreviousPlate_DEFAULT Plate
var FinderPreviousPlateResult_Success_DEFAULT Plate

func PlatePtr

func PlatePtr(v Plate) *Plate

type State

type State = string

func StatePtr

func StatePtr(v State) *State

type Year

type Year = int32

func YearPtr

func YearPtr(v Year) *Year

Jump to

Keyboard shortcuts

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