func (o *XDRBenchStruct) decodeXDR(xr *xdr.Reader) error { o.I1 = xr.ReadUint64() o.I2 = xr.ReadUint32() o.I3 = xr.ReadUint16() o.Bs0 = xr.ReadBytesMax(128) o.Bs1 = xr.ReadBytes() o.S0 = xr.ReadStringMax(128) o.S1 = xr.ReadString() return xr.Error() }
func (o *TestStruct) decodeXDR(xr *xdr.Reader) error { o.I = int(xr.ReadUint64()) o.I16 = int16(xr.ReadUint16()) o.UI16 = xr.ReadUint16() o.I32 = int32(xr.ReadUint32()) o.UI32 = xr.ReadUint32() o.I64 = int64(xr.ReadUint64()) o.UI64 = xr.ReadUint64() o.BS = xr.ReadBytes() o.S = xr.ReadString() return xr.Error() }
func (o *ResponseMessage) decodeXDR(xr *xdr.Reader) error { o.Data = xr.ReadBytes() return xr.Error() }
func (o *fileVersion) decodeXDR(xr *xdr.Reader) error { o.version = xr.ReadUint64() o.node = xr.ReadBytes() return xr.Error() }
func (o *Block) decodeXDR(xr *xdr.Reader) error { o.Offset = int64(xr.ReadUint64()) o.Size = xr.ReadUint32() o.Hash = xr.ReadBytes() return xr.Error() }
func (o *repeatReader) decodeXDR(xr *xdr.Reader) error { o.data = xr.ReadBytes() return xr.Error() }