1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//! gRPC status.
/// gRPC status.
///
/// There is no constructor method. You need to set the 2 members
/// to construct yourself.
///
/// Examples:
///
/// ```rust,ignore
/// return Err(Status{
/// code: Code::NotFound,
/// message: format!("key {} is not found", &req.key),
/// });
/// ```
/// gRPC status code.
///
/// See [gRPC status codes](https://github.com/grpc/grpc/blob/master/doc/statuscodes.md#status-codes-and-their-use-in-grpc).