Status describes a general status response. code: 0 = success, 0 != failure.
| 4281 | // Status describes a general status response. |
| 4282 | // code: 0 = success, 0 != failure. |
| 4283 | type Status struct { |
| 4284 | Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"` |
| 4285 | Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"` |
| 4286 | } |
| 4287 | |
| 4288 | func (m *Status) Reset() { *m = Status{} } |
| 4289 | func (m *Status) String() string { return proto.CompactTextString(m) } |
nothing calls this directly
no outgoing calls
no test coverage detected