Home
last modified time | relevance | path

Searched refs:NotFound (Results 1 – 2 of 2) sorted by relevance

/tonic/tonic/src/
H A Dstatus.rs76 NotFound = 5, enumerator
132 Code::NotFound => "Some requested entity was not found", in description()
209 Status::new(Code::NotFound, message) in not_found()
702 ErrorKind::NotFound => Code::NotFound, in from()
797 b'5' => Code::NotFound, in from_bytes()
825 Code::NotFound => HeaderValue::from_static("5"), in to_header_value()
854 5 => Code::NotFound, in from()
975 assert_eq!(Status::not_found("").code(), Code::NotFound); in constructors()
/tonic/tonic-health/src/
H A Dserver.rs242 assert_grpc_status(resp.err(), Code::NotFound); in test_service_check()
294 assert_grpc_status(resp.err(), Code::NotFound); in test_service_watch()