thrifttest

package
v0.2.0 Latest Latest
Warning

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

Go to latest
Published: Sep 19, 2016 License: MIT Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var TestBinaryHelper = struct {
	IsException    func(error) bool
	Args           func(thing []byte) *TestBinaryArgs
	WrapResponse   func([]byte, error) (*TestBinaryResult, error)
	UnwrapResponse func(*TestBinaryResult) ([]byte, error)
}{}
View Source
var TestByteHelper = struct {
	IsException    func(error) bool
	Args           func(thing *int8) *TestByteArgs
	WrapResponse   func(int8, error) (*TestByteResult, error)
	UnwrapResponse func(*TestByteResult) (int8, error)
}{}
View Source
var TestDoubleHelper = struct {
	IsException    func(error) bool
	Args           func(thing *float64) *TestDoubleArgs
	WrapResponse   func(float64, error) (*TestDoubleResult, error)
	UnwrapResponse func(*TestDoubleResult) (float64, error)
}{}
View Source
var TestEnumHelper = struct {
	IsException    func(error) bool
	Args           func(thing *gauntlet.Numberz) *TestEnumArgs
	WrapResponse   func(gauntlet.Numberz, error) (*TestEnumResult, error)
	UnwrapResponse func(*TestEnumResult) (gauntlet.Numberz, error)
}{}
View Source
var TestExceptionHelper = struct {
	IsException    func(error) bool
	Args           func(arg *string) *TestExceptionArgs
	WrapResponse   func(error) (*TestExceptionResult, error)
	UnwrapResponse func(*TestExceptionResult) error
}{}
View Source
var TestI32Helper = struct {
	IsException    func(error) bool
	Args           func(thing *int32) *TestI32Args
	WrapResponse   func(int32, error) (*TestI32Result, error)
	UnwrapResponse func(*TestI32Result) (int32, error)
}{}
View Source
var TestI64Helper = struct {
	IsException    func(error) bool
	Args           func(thing *int64) *TestI64Args
	WrapResponse   func(int64, error) (*TestI64Result, error)
	UnwrapResponse func(*TestI64Result) (int64, error)
}{}
View Source
var TestInsanityHelper = struct {
	IsException    func(error) bool
	Args           func(argument *gauntlet.Insanity) *TestInsanityArgs
	WrapResponse   func(map[gauntlet.UserId]map[gauntlet.Numberz]*gauntlet.Insanity, error) (*TestInsanityResult, error)
	UnwrapResponse func(*TestInsanityResult) (map[gauntlet.UserId]map[gauntlet.Numberz]*gauntlet.Insanity, error)
}{}
View Source
var TestListHelper = struct {
	IsException    func(error) bool
	Args           func(thing []int32) *TestListArgs
	WrapResponse   func([]int32, error) (*TestListResult, error)
	UnwrapResponse func(*TestListResult) ([]int32, error)
}{}
View Source
var TestMapHelper = struct {
	IsException    func(error) bool
	Args           func(thing map[int32]int32) *TestMapArgs
	WrapResponse   func(map[int32]int32, error) (*TestMapResult, error)
	UnwrapResponse func(*TestMapResult) (map[int32]int32, error)
}{}
View Source
var TestMapMapHelper = struct {
	IsException    func(error) bool
	Args           func(hello *int32) *TestMapMapArgs
	WrapResponse   func(map[int32]map[int32]int32, error) (*TestMapMapResult, error)
	UnwrapResponse func(*TestMapMapResult) (map[int32]map[int32]int32, error)
}{}
View Source
var TestMultiExceptionHelper = struct {
	IsException    func(error) bool
	Args           func(arg0 *string, arg1 *string) *TestMultiExceptionArgs
	WrapResponse   func(*gauntlet.Xtruct, error) (*TestMultiExceptionResult, error)
	UnwrapResponse func(*TestMultiExceptionResult) (*gauntlet.Xtruct, error)
}{}
View Source
var TestMultiHelper = struct {
	IsException    func(error) bool
	Args           func(arg0 *int8, arg1 *int32, arg2 *int64, arg3 map[int16]string, arg4 *gauntlet.Numberz, arg5 *gauntlet.UserId) *TestMultiArgs
	WrapResponse   func(*gauntlet.Xtruct, error) (*TestMultiResult, error)
	UnwrapResponse func(*TestMultiResult) (*gauntlet.Xtruct, error)
}{}
View Source
var TestNestHelper = struct {
	IsException    func(error) bool
	Args           func(thing *gauntlet.Xtruct2) *TestNestArgs
	WrapResponse   func(*gauntlet.Xtruct2, error) (*TestNestResult, error)
	UnwrapResponse func(*TestNestResult) (*gauntlet.Xtruct2, error)
}{}
View Source
var TestSetHelper = struct {
	IsException    func(error) bool
	Args           func(thing map[int32]struct{}) *TestSetArgs
	WrapResponse   func(map[int32]struct{}, error) (*TestSetResult, error)
	UnwrapResponse func(*TestSetResult) (map[int32]struct{}, error)
}{}
View Source
var TestStringHelper = struct {
	IsException    func(error) bool
	Args           func(thing *string) *TestStringArgs
	WrapResponse   func(string, error) (*TestStringResult, error)
	UnwrapResponse func(*TestStringResult) (string, error)
}{}
View Source
var TestStringMapHelper = struct {
	IsException    func(error) bool
	Args           func(thing map[string]string) *TestStringMapArgs
	WrapResponse   func(map[string]string, error) (*TestStringMapResult, error)
	UnwrapResponse func(*TestStringMapResult) (map[string]string, error)
}{}
View Source
var TestStructHelper = struct {
	IsException    func(error) bool
	Args           func(thing *gauntlet.Xtruct) *TestStructArgs
	WrapResponse   func(*gauntlet.Xtruct, error) (*TestStructResult, error)
	UnwrapResponse func(*TestStructResult) (*gauntlet.Xtruct, error)
}{}
View Source
var TestTypedefHelper = struct {
	IsException    func(error) bool
	Args           func(thing *gauntlet.UserId) *TestTypedefArgs
	WrapResponse   func(gauntlet.UserId, error) (*TestTypedefResult, error)
	UnwrapResponse func(*TestTypedefResult) (gauntlet.UserId, error)
}{}
View Source
var TestVoidHelper = struct {
	IsException    func(error) bool
	Args           func() *TestVoidArgs
	WrapResponse   func(error) (*TestVoidResult, error)
	UnwrapResponse func(*TestVoidResult) error
}{}

Functions

This section is empty.

Types

type TestBinaryArgs

type TestBinaryArgs struct {
	Thing []byte `json:"thing"`
}

func (*TestBinaryArgs) EnvelopeType

func (v *TestBinaryArgs) EnvelopeType() wire.EnvelopeType

func (*TestBinaryArgs) FromWire

func (v *TestBinaryArgs) FromWire(w wire.Value) error

func (*TestBinaryArgs) MethodName

func (v *TestBinaryArgs) MethodName() string

func (*TestBinaryArgs) String

func (v *TestBinaryArgs) String() string

func (*TestBinaryArgs) ToWire

func (v *TestBinaryArgs) ToWire() (wire.Value, error)

type TestBinaryResult

type TestBinaryResult struct {
	Success []byte `json:"success"`
}

func (*TestBinaryResult) EnvelopeType

func (v *TestBinaryResult) EnvelopeType() wire.EnvelopeType

func (*TestBinaryResult) FromWire

func (v *TestBinaryResult) FromWire(w wire.Value) error

func (*TestBinaryResult) MethodName

func (v *TestBinaryResult) MethodName() string

func (*TestBinaryResult) String

func (v *TestBinaryResult) String() string

func (*TestBinaryResult) ToWire

func (v *TestBinaryResult) ToWire() (wire.Value, error)

type TestByteArgs

type TestByteArgs struct {
	Thing *int8 `json:"thing,omitempty"`
}

func (*TestByteArgs) EnvelopeType

func (v *TestByteArgs) EnvelopeType() wire.EnvelopeType

func (*TestByteArgs) FromWire

func (v *TestByteArgs) FromWire(w wire.Value) error

func (*TestByteArgs) MethodName

func (v *TestByteArgs) MethodName() string

func (*TestByteArgs) String

func (v *TestByteArgs) String() string

func (*TestByteArgs) ToWire

func (v *TestByteArgs) ToWire() (wire.Value, error)

type TestByteResult

type TestByteResult struct {
	Success *int8 `json:"success,omitempty"`
}

func (*TestByteResult) EnvelopeType

func (v *TestByteResult) EnvelopeType() wire.EnvelopeType

func (*TestByteResult) FromWire

func (v *TestByteResult) FromWire(w wire.Value) error

func (*TestByteResult) MethodName

func (v *TestByteResult) MethodName() string

func (*TestByteResult) String

func (v *TestByteResult) String() string

func (*TestByteResult) ToWire

func (v *TestByteResult) ToWire() (wire.Value, error)

type TestDoubleArgs

type TestDoubleArgs struct {
	Thing *float64 `json:"thing,omitempty"`
}

func (*TestDoubleArgs) EnvelopeType

func (v *TestDoubleArgs) EnvelopeType() wire.EnvelopeType

func (*TestDoubleArgs) FromWire

func (v *TestDoubleArgs) FromWire(w wire.Value) error

func (*TestDoubleArgs) MethodName

func (v *TestDoubleArgs) MethodName() string

func (*TestDoubleArgs) String

func (v *TestDoubleArgs) String() string

func (*TestDoubleArgs) ToWire

func (v *TestDoubleArgs) ToWire() (wire.Value, error)

type TestDoubleResult

type TestDoubleResult struct {
	Success *float64 `json:"success,omitempty"`
}

func (*TestDoubleResult) EnvelopeType

func (v *TestDoubleResult) EnvelopeType() wire.EnvelopeType

func (*TestDoubleResult) FromWire

func (v *TestDoubleResult) FromWire(w wire.Value) error

func (*TestDoubleResult) MethodName

func (v *TestDoubleResult) MethodName() string

func (*TestDoubleResult) String

func (v *TestDoubleResult) String() string

func (*TestDoubleResult) ToWire

func (v *TestDoubleResult) ToWire() (wire.Value, error)

type TestEnumArgs

type TestEnumArgs struct {
	Thing *gauntlet.Numberz `json:"thing,omitempty"`
}

func (*TestEnumArgs) EnvelopeType

func (v *TestEnumArgs) EnvelopeType() wire.EnvelopeType

func (*TestEnumArgs) FromWire

func (v *TestEnumArgs) FromWire(w wire.Value) error

func (*TestEnumArgs) MethodName

func (v *TestEnumArgs) MethodName() string

func (*TestEnumArgs) String

func (v *TestEnumArgs) String() string

func (*TestEnumArgs) ToWire

func (v *TestEnumArgs) ToWire() (wire.Value, error)

type TestEnumResult

type TestEnumResult struct {
	Success *gauntlet.Numberz `json:"success,omitempty"`
}

func (*TestEnumResult) EnvelopeType

func (v *TestEnumResult) EnvelopeType() wire.EnvelopeType

func (*TestEnumResult) FromWire

func (v *TestEnumResult) FromWire(w wire.Value) error

func (*TestEnumResult) MethodName

func (v *TestEnumResult) MethodName() string

func (*TestEnumResult) String

func (v *TestEnumResult) String() string

func (*TestEnumResult) ToWire

func (v *TestEnumResult) ToWire() (wire.Value, error)

type TestExceptionArgs

type TestExceptionArgs struct {
	Arg *string `json:"arg,omitempty"`
}

func (*TestExceptionArgs) EnvelopeType

func (v *TestExceptionArgs) EnvelopeType() wire.EnvelopeType

func (*TestExceptionArgs) FromWire

func (v *TestExceptionArgs) FromWire(w wire.Value) error

func (*TestExceptionArgs) MethodName

func (v *TestExceptionArgs) MethodName() string

func (*TestExceptionArgs) String

func (v *TestExceptionArgs) String() string

func (*TestExceptionArgs) ToWire

func (v *TestExceptionArgs) ToWire() (wire.Value, error)

type TestExceptionResult

type TestExceptionResult struct {
	Err1 *gauntlet.Xception `json:"err1,omitempty"`
}

func (*TestExceptionResult) EnvelopeType

func (v *TestExceptionResult) EnvelopeType() wire.EnvelopeType

func (*TestExceptionResult) FromWire

func (v *TestExceptionResult) FromWire(w wire.Value) error

func (*TestExceptionResult) MethodName

func (v *TestExceptionResult) MethodName() string

func (*TestExceptionResult) String

func (v *TestExceptionResult) String() string

func (*TestExceptionResult) ToWire

func (v *TestExceptionResult) ToWire() (wire.Value, error)

type TestI32Args

type TestI32Args struct {
	Thing *int32 `json:"thing,omitempty"`
}

func (*TestI32Args) EnvelopeType

func (v *TestI32Args) EnvelopeType() wire.EnvelopeType

func (*TestI32Args) FromWire

func (v *TestI32Args) FromWire(w wire.Value) error

func (*TestI32Args) MethodName

func (v *TestI32Args) MethodName() string

func (*TestI32Args) String

func (v *TestI32Args) String() string

func (*TestI32Args) ToWire

func (v *TestI32Args) ToWire() (wire.Value, error)

type TestI32Result

type TestI32Result struct {
	Success *int32 `json:"success,omitempty"`
}

func (*TestI32Result) EnvelopeType

func (v *TestI32Result) EnvelopeType() wire.EnvelopeType

func (*TestI32Result) FromWire

func (v *TestI32Result) FromWire(w wire.Value) error

func (*TestI32Result) MethodName

func (v *TestI32Result) MethodName() string

func (*TestI32Result) String

func (v *TestI32Result) String() string

func (*TestI32Result) ToWire

func (v *TestI32Result) ToWire() (wire.Value, error)

type TestI64Args

type TestI64Args struct {
	Thing *int64 `json:"thing,omitempty"`
}

func (*TestI64Args) EnvelopeType

func (v *TestI64Args) EnvelopeType() wire.EnvelopeType

func (*TestI64Args) FromWire

func (v *TestI64Args) FromWire(w wire.Value) error

func (*TestI64Args) MethodName

func (v *TestI64Args) MethodName() string

func (*TestI64Args) String

func (v *TestI64Args) String() string

func (*TestI64Args) ToWire

func (v *TestI64Args) ToWire() (wire.Value, error)

type TestI64Result

type TestI64Result struct {
	Success *int64 `json:"success,omitempty"`
}

func (*TestI64Result) EnvelopeType

func (v *TestI64Result) EnvelopeType() wire.EnvelopeType

func (*TestI64Result) FromWire

func (v *TestI64Result) FromWire(w wire.Value) error

func (*TestI64Result) MethodName

func (v *TestI64Result) MethodName() string

func (*TestI64Result) String

func (v *TestI64Result) String() string

func (*TestI64Result) ToWire

func (v *TestI64Result) ToWire() (wire.Value, error)

type TestInsanityArgs

type TestInsanityArgs struct {
	Argument *gauntlet.Insanity `json:"argument,omitempty"`
}

func (*TestInsanityArgs) EnvelopeType

func (v *TestInsanityArgs) EnvelopeType() wire.EnvelopeType

func (*TestInsanityArgs) FromWire

func (v *TestInsanityArgs) FromWire(w wire.Value) error

func (*TestInsanityArgs) MethodName

func (v *TestInsanityArgs) MethodName() string

func (*TestInsanityArgs) String

func (v *TestInsanityArgs) String() string

func (*TestInsanityArgs) ToWire

func (v *TestInsanityArgs) ToWire() (wire.Value, error)

type TestInsanityResult

type TestInsanityResult struct {
	Success map[gauntlet.UserId]map[gauntlet.Numberz]*gauntlet.Insanity `json:"success"`
}

func (*TestInsanityResult) EnvelopeType

func (v *TestInsanityResult) EnvelopeType() wire.EnvelopeType

func (*TestInsanityResult) FromWire

func (v *TestInsanityResult) FromWire(w wire.Value) error

func (*TestInsanityResult) MethodName

func (v *TestInsanityResult) MethodName() string

func (*TestInsanityResult) String

func (v *TestInsanityResult) String() string

func (*TestInsanityResult) ToWire

func (v *TestInsanityResult) ToWire() (wire.Value, error)

type TestListArgs

type TestListArgs struct {
	Thing []int32 `json:"thing"`
}

func (*TestListArgs) EnvelopeType

func (v *TestListArgs) EnvelopeType() wire.EnvelopeType

func (*TestListArgs) FromWire

func (v *TestListArgs) FromWire(w wire.Value) error

func (*TestListArgs) MethodName

func (v *TestListArgs) MethodName() string

func (*TestListArgs) String

func (v *TestListArgs) String() string

func (*TestListArgs) ToWire

func (v *TestListArgs) ToWire() (wire.Value, error)

type TestListResult

type TestListResult struct {
	Success []int32 `json:"success"`
}

func (*TestListResult) EnvelopeType

func (v *TestListResult) EnvelopeType() wire.EnvelopeType

func (*TestListResult) FromWire

func (v *TestListResult) FromWire(w wire.Value) error

func (*TestListResult) MethodName

func (v *TestListResult) MethodName() string

func (*TestListResult) String

func (v *TestListResult) String() string

func (*TestListResult) ToWire

func (v *TestListResult) ToWire() (wire.Value, error)

type TestMapArgs

type TestMapArgs struct {
	Thing map[int32]int32 `json:"thing"`
}

func (*TestMapArgs) EnvelopeType

func (v *TestMapArgs) EnvelopeType() wire.EnvelopeType

func (*TestMapArgs) FromWire

func (v *TestMapArgs) FromWire(w wire.Value) error

func (*TestMapArgs) MethodName

func (v *TestMapArgs) MethodName() string

func (*TestMapArgs) String

func (v *TestMapArgs) String() string

func (*TestMapArgs) ToWire

func (v *TestMapArgs) ToWire() (wire.Value, error)

type TestMapMapArgs

type TestMapMapArgs struct {
	Hello *int32 `json:"hello,omitempty"`
}

func (*TestMapMapArgs) EnvelopeType

func (v *TestMapMapArgs) EnvelopeType() wire.EnvelopeType

func (*TestMapMapArgs) FromWire

func (v *TestMapMapArgs) FromWire(w wire.Value) error

func (*TestMapMapArgs) MethodName

func (v *TestMapMapArgs) MethodName() string

func (*TestMapMapArgs) String

func (v *TestMapMapArgs) String() string

func (*TestMapMapArgs) ToWire

func (v *TestMapMapArgs) ToWire() (wire.Value, error)

type TestMapMapResult

type TestMapMapResult struct {
	Success map[int32]map[int32]int32 `json:"success"`
}

func (*TestMapMapResult) EnvelopeType

func (v *TestMapMapResult) EnvelopeType() wire.EnvelopeType

func (*TestMapMapResult) FromWire

func (v *TestMapMapResult) FromWire(w wire.Value) error

func (*TestMapMapResult) MethodName

func (v *TestMapMapResult) MethodName() string

func (*TestMapMapResult) String

func (v *TestMapMapResult) String() string

func (*TestMapMapResult) ToWire

func (v *TestMapMapResult) ToWire() (wire.Value, error)

type TestMapResult

type TestMapResult struct {
	Success map[int32]int32 `json:"success"`
}

func (*TestMapResult) EnvelopeType

func (v *TestMapResult) EnvelopeType() wire.EnvelopeType

func (*TestMapResult) FromWire

func (v *TestMapResult) FromWire(w wire.Value) error

func (*TestMapResult) MethodName

func (v *TestMapResult) MethodName() string

func (*TestMapResult) String

func (v *TestMapResult) String() string

func (*TestMapResult) ToWire

func (v *TestMapResult) ToWire() (wire.Value, error)

type TestMultiArgs

type TestMultiArgs struct {
	Arg0 *int8             `json:"arg0,omitempty"`
	Arg1 *int32            `json:"arg1,omitempty"`
	Arg2 *int64            `json:"arg2,omitempty"`
	Arg3 map[int16]string  `json:"arg3"`
	Arg4 *gauntlet.Numberz `json:"arg4,omitempty"`
	Arg5 *gauntlet.UserId  `json:"arg5,omitempty"`
}

func (*TestMultiArgs) EnvelopeType

func (v *TestMultiArgs) EnvelopeType() wire.EnvelopeType

func (*TestMultiArgs) FromWire

func (v *TestMultiArgs) FromWire(w wire.Value) error

func (*TestMultiArgs) MethodName

func (v *TestMultiArgs) MethodName() string

func (*TestMultiArgs) String

func (v *TestMultiArgs) String() string

func (*TestMultiArgs) ToWire

func (v *TestMultiArgs) ToWire() (wire.Value, error)

type TestMultiExceptionArgs

type TestMultiExceptionArgs struct {
	Arg0 *string `json:"arg0,omitempty"`
	Arg1 *string `json:"arg1,omitempty"`
}

func (*TestMultiExceptionArgs) EnvelopeType

func (v *TestMultiExceptionArgs) EnvelopeType() wire.EnvelopeType

func (*TestMultiExceptionArgs) FromWire

func (v *TestMultiExceptionArgs) FromWire(w wire.Value) error

func (*TestMultiExceptionArgs) MethodName

func (v *TestMultiExceptionArgs) MethodName() string

func (*TestMultiExceptionArgs) String

func (v *TestMultiExceptionArgs) String() string

func (*TestMultiExceptionArgs) ToWire

func (v *TestMultiExceptionArgs) ToWire() (wire.Value, error)

type TestMultiExceptionResult

type TestMultiExceptionResult struct {
	Success *gauntlet.Xtruct    `json:"success,omitempty"`
	Err1    *gauntlet.Xception  `json:"err1,omitempty"`
	Err2    *gauntlet.Xception2 `json:"err2,omitempty"`
}

func (*TestMultiExceptionResult) EnvelopeType

func (v *TestMultiExceptionResult) EnvelopeType() wire.EnvelopeType

func (*TestMultiExceptionResult) FromWire

func (v *TestMultiExceptionResult) FromWire(w wire.Value) error

func (*TestMultiExceptionResult) MethodName

func (v *TestMultiExceptionResult) MethodName() string

func (*TestMultiExceptionResult) String

func (v *TestMultiExceptionResult) String() string

func (*TestMultiExceptionResult) ToWire

func (v *TestMultiExceptionResult) ToWire() (wire.Value, error)

type TestMultiResult

type TestMultiResult struct {
	Success *gauntlet.Xtruct `json:"success,omitempty"`
}

func (*TestMultiResult) EnvelopeType

func (v *TestMultiResult) EnvelopeType() wire.EnvelopeType

func (*TestMultiResult) FromWire

func (v *TestMultiResult) FromWire(w wire.Value) error

func (*TestMultiResult) MethodName

func (v *TestMultiResult) MethodName() string

func (*TestMultiResult) String

func (v *TestMultiResult) String() string

func (*TestMultiResult) ToWire

func (v *TestMultiResult) ToWire() (wire.Value, error)

type TestNestArgs

type TestNestArgs struct {
	Thing *gauntlet.Xtruct2 `json:"thing,omitempty"`
}

func (*TestNestArgs) EnvelopeType

func (v *TestNestArgs) EnvelopeType() wire.EnvelopeType

func (*TestNestArgs) FromWire

func (v *TestNestArgs) FromWire(w wire.Value) error

func (*TestNestArgs) MethodName

func (v *TestNestArgs) MethodName() string

func (*TestNestArgs) String

func (v *TestNestArgs) String() string

func (*TestNestArgs) ToWire

func (v *TestNestArgs) ToWire() (wire.Value, error)

type TestNestResult

type TestNestResult struct {
	Success *gauntlet.Xtruct2 `json:"success,omitempty"`
}

func (*TestNestResult) EnvelopeType

func (v *TestNestResult) EnvelopeType() wire.EnvelopeType

func (*TestNestResult) FromWire

func (v *TestNestResult) FromWire(w wire.Value) error

func (*TestNestResult) MethodName

func (v *TestNestResult) MethodName() string

func (*TestNestResult) String

func (v *TestNestResult) String() string

func (*TestNestResult) ToWire

func (v *TestNestResult) ToWire() (wire.Value, error)

type TestSetArgs

type TestSetArgs struct {
	Thing map[int32]struct{} `json:"thing"`
}

func (*TestSetArgs) EnvelopeType

func (v *TestSetArgs) EnvelopeType() wire.EnvelopeType

func (*TestSetArgs) FromWire

func (v *TestSetArgs) FromWire(w wire.Value) error

func (*TestSetArgs) MethodName

func (v *TestSetArgs) MethodName() string

func (*TestSetArgs) String

func (v *TestSetArgs) String() string

func (*TestSetArgs) ToWire

func (v *TestSetArgs) ToWire() (wire.Value, error)

type TestSetResult

type TestSetResult struct {
	Success map[int32]struct{} `json:"success"`
}

func (*TestSetResult) EnvelopeType

func (v *TestSetResult) EnvelopeType() wire.EnvelopeType

func (*TestSetResult) FromWire

func (v *TestSetResult) FromWire(w wire.Value) error

func (*TestSetResult) MethodName

func (v *TestSetResult) MethodName() string

func (*TestSetResult) String

func (v *TestSetResult) String() string

func (*TestSetResult) ToWire

func (v *TestSetResult) ToWire() (wire.Value, error)

type TestStringArgs

type TestStringArgs struct {
	Thing *string `json:"thing,omitempty"`
}

func (*TestStringArgs) EnvelopeType

func (v *TestStringArgs) EnvelopeType() wire.EnvelopeType

func (*TestStringArgs) FromWire

func (v *TestStringArgs) FromWire(w wire.Value) error

func (*TestStringArgs) MethodName

func (v *TestStringArgs) MethodName() string

func (*TestStringArgs) String

func (v *TestStringArgs) String() string

func (*TestStringArgs) ToWire

func (v *TestStringArgs) ToWire() (wire.Value, error)

type TestStringMapArgs

type TestStringMapArgs struct {
	Thing map[string]string `json:"thing"`
}

func (*TestStringMapArgs) EnvelopeType

func (v *TestStringMapArgs) EnvelopeType() wire.EnvelopeType

func (*TestStringMapArgs) FromWire

func (v *TestStringMapArgs) FromWire(w wire.Value) error

func (*TestStringMapArgs) MethodName

func (v *TestStringMapArgs) MethodName() string

func (*TestStringMapArgs) String

func (v *TestStringMapArgs) String() string

func (*TestStringMapArgs) ToWire

func (v *TestStringMapArgs) ToWire() (wire.Value, error)

type TestStringMapResult

type TestStringMapResult struct {
	Success map[string]string `json:"success"`
}

func (*TestStringMapResult) EnvelopeType

func (v *TestStringMapResult) EnvelopeType() wire.EnvelopeType

func (*TestStringMapResult) FromWire

func (v *TestStringMapResult) FromWire(w wire.Value) error

func (*TestStringMapResult) MethodName

func (v *TestStringMapResult) MethodName() string

func (*TestStringMapResult) String

func (v *TestStringMapResult) String() string

func (*TestStringMapResult) ToWire

func (v *TestStringMapResult) ToWire() (wire.Value, error)

type TestStringResult

type TestStringResult struct {
	Success *string `json:"success,omitempty"`
}

func (*TestStringResult) EnvelopeType

func (v *TestStringResult) EnvelopeType() wire.EnvelopeType

func (*TestStringResult) FromWire

func (v *TestStringResult) FromWire(w wire.Value) error

func (*TestStringResult) MethodName

func (v *TestStringResult) MethodName() string

func (*TestStringResult) String

func (v *TestStringResult) String() string

func (*TestStringResult) ToWire

func (v *TestStringResult) ToWire() (wire.Value, error)

type TestStructArgs

type TestStructArgs struct {
	Thing *gauntlet.Xtruct `json:"thing,omitempty"`
}

func (*TestStructArgs) EnvelopeType

func (v *TestStructArgs) EnvelopeType() wire.EnvelopeType

func (*TestStructArgs) FromWire

func (v *TestStructArgs) FromWire(w wire.Value) error

func (*TestStructArgs) MethodName

func (v *TestStructArgs) MethodName() string

func (*TestStructArgs) String

func (v *TestStructArgs) String() string

func (*TestStructArgs) ToWire

func (v *TestStructArgs) ToWire() (wire.Value, error)

type TestStructResult

type TestStructResult struct {
	Success *gauntlet.Xtruct `json:"success,omitempty"`
}

func (*TestStructResult) EnvelopeType

func (v *TestStructResult) EnvelopeType() wire.EnvelopeType

func (*TestStructResult) FromWire

func (v *TestStructResult) FromWire(w wire.Value) error

func (*TestStructResult) MethodName

func (v *TestStructResult) MethodName() string

func (*TestStructResult) String

func (v *TestStructResult) String() string

func (*TestStructResult) ToWire

func (v *TestStructResult) ToWire() (wire.Value, error)

type TestTypedefArgs

type TestTypedefArgs struct {
	Thing *gauntlet.UserId `json:"thing,omitempty"`
}

func (*TestTypedefArgs) EnvelopeType

func (v *TestTypedefArgs) EnvelopeType() wire.EnvelopeType

func (*TestTypedefArgs) FromWire

func (v *TestTypedefArgs) FromWire(w wire.Value) error

func (*TestTypedefArgs) MethodName

func (v *TestTypedefArgs) MethodName() string

func (*TestTypedefArgs) String

func (v *TestTypedefArgs) String() string

func (*TestTypedefArgs) ToWire

func (v *TestTypedefArgs) ToWire() (wire.Value, error)

type TestTypedefResult

type TestTypedefResult struct {
	Success *gauntlet.UserId `json:"success,omitempty"`
}

func (*TestTypedefResult) EnvelopeType

func (v *TestTypedefResult) EnvelopeType() wire.EnvelopeType

func (*TestTypedefResult) FromWire

func (v *TestTypedefResult) FromWire(w wire.Value) error

func (*TestTypedefResult) MethodName

func (v *TestTypedefResult) MethodName() string

func (*TestTypedefResult) String

func (v *TestTypedefResult) String() string

func (*TestTypedefResult) ToWire

func (v *TestTypedefResult) ToWire() (wire.Value, error)

type TestVoidArgs

type TestVoidArgs struct{}

func (*TestVoidArgs) EnvelopeType

func (v *TestVoidArgs) EnvelopeType() wire.EnvelopeType

func (*TestVoidArgs) FromWire

func (v *TestVoidArgs) FromWire(w wire.Value) error

func (*TestVoidArgs) MethodName

func (v *TestVoidArgs) MethodName() string

func (*TestVoidArgs) String

func (v *TestVoidArgs) String() string

func (*TestVoidArgs) ToWire

func (v *TestVoidArgs) ToWire() (wire.Value, error)

type TestVoidResult

type TestVoidResult struct{}

func (*TestVoidResult) EnvelopeType

func (v *TestVoidResult) EnvelopeType() wire.EnvelopeType

func (*TestVoidResult) FromWire

func (v *TestVoidResult) FromWire(w wire.Value) error

func (*TestVoidResult) MethodName

func (v *TestVoidResult) MethodName() string

func (*TestVoidResult) String

func (v *TestVoidResult) String() string

func (*TestVoidResult) ToWire

func (v *TestVoidResult) ToWire() (wire.Value, error)

Jump to

Keyboard shortcuts

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