(ctx context.Context, oprot thrift.TProtocol)
| 29072 | } |
| 29073 | |
| 29074 | func (p *IClientRPCServiceExecuteStatementResult) writeField0(ctx context.Context, oprot thrift.TProtocol) (err error) { |
| 29075 | if p.IsSetSuccess() { |
| 29076 | if err := oprot.WriteFieldBegin(ctx, "success", thrift.STRUCT, 0); err != nil { |
| 29077 | return thrift.PrependError(fmt.Sprintf("%T write field begin error 0:success: ", p), err) } |
| 29078 | if err := p.Success.Write(ctx, oprot); err != nil { |
| 29079 | return thrift.PrependError(fmt.Sprintf("%T error writing struct: ", p.Success), err) |
| 29080 | } |
| 29081 | if err := oprot.WriteFieldEnd(ctx); err != nil { |
| 29082 | return thrift.PrependError(fmt.Sprintf("%T write field end error 0:success: ", p), err) } |
| 29083 | } |
| 29084 | return err |
| 29085 | } |
| 29086 | |
| 29087 | func (p *IClientRPCServiceExecuteStatementResult) String() string { |
| 29088 | if p == nil { |
no test coverage detected